Multiple symmetry update

 From:  Michael Gibson
7888.31 In reply to 7888.30 
Hi Tom, thanks for the example, sorry I didn't quite understand what you were trying to do before.

The script will need to be modified to work on things other than curves, it currently only collects curves to replicate just because that's what you originally described as what you were trying to do.

To make it work on any kind of object, edit line 13 of the file MirrorRotateHistoryArray.js which currently has this:

code:
	var curves = moi.geometryDatabase.getSelectedObjects().getCurves();


Change it to remove the ".getCurves()" part, so that line should look like this instead:

code:
	var curves = moi.geometryDatabase.getSelectedObjects();


With that line changed, it should then work to replicate any kind of objects.

- Michael