Adding points to Both ends of an Interpcurve factory?

 From:  Michael Gibson
6924.2 In reply to 6924.1 
Hi Brian, the only method for adding to a factory's input list is the factory.createInput() method which creates a new input slot at the end of the list. There isn't any way to insert an input to the front of the list in just one call.

But you could do something like create a new input at the end, copy all inputs up one slot starting at the end going down, then call factory.setInput( 0, value ) to set your new value to the first one in the list...

But it may be easier though to just use a new factory and fill it all in at once when you have new things to put in the front.

- Michael