| My latest project uses a (reduction) factor of 1/1.325, which divides out to 0.7547169811320... 
In the scale command, it would be convenient to have a division factor input, in addition to the 
scale factor input, to get MoI to do the division.
 
Rather than mess with MoI's stock Scale command, a modified ScaleIndividual command was done.
 
Added to the .js: 
	var scalefactor = moi.ui.commandUI.factor.value; 
	var scaledivisor = moi.ui.commandUI.divisor.value; 
	scalefactor /= scaledivisor;
 
Added to the .htm:	    code: 
				<tr>
					<td>Scale divisor:</td>
					<td><moi:NumericInput id="divisor"/></td>
				</tr>	
					    
Now to add two default values of 1.0, and add back in "make copies." 
...then disable bounding box, and add some rotations...  or not  :-)
 
- Brian |