Explode 3D solid

Explode 3D solid

Anonymous
Not applicable
2,059 Views
2 Replies
Message 1 of 3

Explode 3D solid

Anonymous
Not applicable

Hello,


I need to convert in VBA a 3D solid object in polylines.
My first idea was to use the "explode" command but this command is not implemented for an object AcDb3dSolid.

 

Does anyone have an idea to find a way to get around.

 

Thanks a lot

0 Likes
2,060 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable

you can use "SectionSolid" method to obtain a region, and then explode it

Message 3 of 3

jeremye86
Advocate
Advocate

 

thanks for this, instead of exploding, i was able to use getboundingbox  to get the values i needed.

 Set sectionObj = solidObjextrus_1.SectionSolid(pnt7, pnt8, sectionPt1)
sectionObj.GetBoundingBox minExt, maxExt
sectioncoor(6) = maxExt(2)
0 Likes