NACA Airfoil script

 From:  Max Smirnov (SMIRNOV)
7265.13 In reply to 7265.12 
Hi Hamish,

>>objectstojoin.addObject( FactoryAirfoil.update().getCreatedObjects() );
You are trying to use ObjectList instead of Object.

var objects = FactoryAirfoil.update().getCreatedObjects();
for (var i=0; i<objects.length; i++) objectstojoin.addObject(objects.item(i));