Alternative to Block Editor

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
rtec
Posts: 12
Joined: 12 Sep 2016, 23:48

Alternative to Block Editor

Post by rtec » 14 Sep 2016, 20:46

HI,
Since CADEditorControl do not have block editing capabilities, I want to convert all inserts in cadimage into appropriate cadentities and create a new cad image from these entities so that
user can select individual entities instead of selected whole insert.

Is there any way to convert all inserts in the cad image to individual entities instead of calling
CADConst.DoScale2D(ref cadItirate) on each cadEntity and manually converting each vertex
cadItirate.matrix.PtXMat(cadPoint.Point);



Thanks
Ravi

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Alternative to Block Editor

Post by support » 14 Sep 2016, 21:18

Hello Ravi,

If you are looking for a ready-to-use method such as "CADImage.ExplodeAllInserts", let me disappoint you - there is no such method. As a CAD developer, you are entrusted with the task of implementing similar routines.


Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

rtec
Posts: 12
Joined: 12 Sep 2016, 23:48

Re: Alternative to Block Editor

Post by rtec » 14 Sep 2016, 22:04

Hello Mikhail,
Thanks for your reply.
So you mean I need to follow your import example to iterate through each entity and convert each vertex of the entity manually.
Just curious since you have to do all these calculations during drawing anyway, why not expose those routines so that developers don't need to do it manually.

Thanks
Ravi

Post Reply