The script for chain

 From:  Michael Gibson
6087.49 In reply to 6087.48 
Hi Brian, yeah really the whole current system is tuned more for a combination of some script more for "control flow" plus some C++ backend that does the actual geometry creation. It's not really specifically tuned for someone who's doing all script for everything as you've been doing.

I had been originally hoping that just one "factory" mechanism would work for everything but I think it's getting fairly clear that it would be better for larger scripts to have their own methods to call like createLine( start, end ) and stuff like that rather than running everything through the factory mechanism. The factory mechanism has some complexity to it since it's tuned for generating each thing in an interactive way like how the line command runs rather than just creating a specific line for example.

- Michael