06-13-2016
05:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
06-13-2016
05:34 AM
Sketch 3d remove lines
Hello to all,
I'm writting a macro to remove entities (lines arcs..) in a 3D sketch that are not used in a sweep path, to clean the sketch3d up.
I was trying something like:
for each sketch3dEnt in sketch3dentities
if sketch3dent not in oSweep.path then
delete sketch3dEnt
but I can't like in Autocad use the handle to compare entities in a sketch3d.
How can I compare the entities in the sweep path against the 3D sketch to remove the un-used entities?
Thanks for any comments