How to smooth curves or lines?

 From:  Michael Gibson
10790.9 In reply to 10790.8 
Hi Zooen,

re:
> Would it be possible to modify the "Rebuild" script so that the reconstructed curve automatically
> takes the default active color or another color than that of the original curve?

Yes it's possible to modify the Rebuild script to do that.

You would need to edit the Rebuild.js script inside of MoI's commands folder.

Near the end of the script there is a call to factory.commit(); , you would need to add in this line right before the call to factory.commit() :

code:
	factory.getCreatedObjects().setProperty( 'styleIndex', moi.geometryDatabase.activeStyle );
	
	factory.commit();

- Michael