About Make2D

 From:  Michael Gibson
8368.13 In reply to 8368.12 
Hi Carlos, please try this version. Run it just after you use Make2D and it should move just the visible lines that were generated onto a style named "Visible lines". Thanks Hep for sharing your script to get started.

script: /* Move Make2D visible lines to their own layer */ var gd = moi.geometryDatabase; var hdn = gd.findStyle( 'Hidden lines', true ); var vis = gd.findStyle( 'Visible lines', true ); while ( vis.index > hdn.index ) vis.moveUp(); var objs = gd.getSelectedObjects(); for ( var i = 0; i < objs.length; ++i ) { var obj = objs.item(i); if ( obj.styleIndex != hdn.index ) { obj.styleIndex = vis.index; } }

- Michael