高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】is it possible to perform a transformby operation on proxy e
is it possible to perform a transformby operation on proxy e
is it possible to perform a transformby operation on proxy entity?
hi !
is it possible to perform a transformby operation on proxy
entity without beeing exploded? i've a dwg file generated
at archi-cad, and one of the objects directdwg
recognize as a proxy object. the odamfcapp version
14.01 open correctly the drawing, but when i try to
translate or copy that object, i failed.my question is :
does directdwg supports that kind of operations on
proxy objects and if not, is it planned to add such a
functionality?
thanks.
proxy entity has flag transformallowed().
if transformallowed() returns true for some proxy entity, dd function oddbproxyentity::transformby will work for this entity. in other case error code will be returned.
sincerely yours,
george udov
in my case the transformallowed() function returns false. is there a way to set proxy entity flags,so that the transformallowed() to returns always true?
there can't be such way.
transformallowed() exists especially to prevent transforming.
sincerely yours,
george udov
but george, where these flags are actually set to on or off? is it in the arx/drx application that originally created the custom entities?
best regards
chudomir
yes, chudomir, you're right. these flags originally comes from arx/drx application, that created the custom entity.
these flags are 6th argument of macro "odrx_dxf_define_members"
(for example see excustentity.cpp).
or 5th argument of macro "acrx_dxf_define_members" in objectarx.
ramzyone, if application, that created this custom entity, disabled transforming, then it is assumed that it did it because transformby can't be applied properly to original entity by some reason. so dwgdirect doesn't allow to transformby() such proxy entities.
sincerely yours,
george udov
|