Elephant Repository

 From:  wayne hill (WAYNEHILL5202)
9476.86 In reply to 9476.85 
Hi Pilou,

Look at the curves.js file for the geometry definitions.

...
// Curve
function Curve()
{
this.addInput("In","pointarray");
this.addOutput("Out","objectlist");
this.properties = { mode:["Curve", "Curve", "Interpcurve"], closed:["No", "No", "Yes"]};
}
...


// Polyline
function Polyline()
{
this.addInput("In","pointarray");
this.addOutput("Out","objectlist");
this.properties = {closed:["No", "No", "Yes"]};
}
...


Wayne

EDITED: 4 Sep 2019 by WAYNEHILL5202