Linear array + scale array

 From:  Michael Gibson
5595.10 In reply to 5595.7 
Hi Pilou,

> And a shift 'Fibonnacci" or logarithm one ?

It's not set up to do that currently, but it should be possible to modify it to do such things.

If you want to tweak it, look inside ShiftArray.js for line number 67 which has the specific code for applying the scale factor to the distance between the base and target points for shifting each item:

code:
		Shift += i;
		Dir.scale( Shift );


If you modify that it will modify the size of the shift of each item.

- Michael