Show messages:
1-7
8-27
28-47
48-67
68-87
88-107
108-127
128-147
…
488-503
From: bemfarmer
These selection modes must be known by computer programmers:
...Looping Through Multiple Lists
...descends through lists combining all elements into one ... dim=c(3,4,2); elements of x recycle if x is not long enough...
Google: "combining multiple lists Long, short, cross" yields Lacing type (short, long, cross), in programming.
Then Lacing becomes how to tie shoes...:-)
- Brian
From: Frenchy Pilou (PILOU)
Ok that is that for the Array of values that you input inside the Panel info (and i suppose also for multiple selection)
Now rest to have the little animations for cross, average, repeat !
The funny of that is you have these same modes ( or less) for the Points of the lines itselves! (not only for the lines)
So many combinaisons possible! :)
From: Frenchy Pilou (PILOU)
I begin to understand! :) here for cross...each start line point go to each end line point (if Points itselves are all "Long" ! )
From: Frenchy Pilou (PILOU)
Ok I have nailed it! :)
All points are "Long"
From: Frenchy Pilou (PILOU)
Ok all is mastered! (my headache also! :)
And of course that change if you modify the Points modes itselves! :)
So 2 (modes start pts) * 2 (modes end pts) * 5 (modes lines) = 20 possible combinaisons of modes! (for the moment)
here only the "Pts" so 4 variants with "Long Lines"
From: Frenchy Pilou (PILOU)
Added Node Line (English) + paradigmatic Modes :)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Node Circle (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Node Rectangle (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Polygon (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Star (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
I have some troubles with the Nodes Curve, Polyline! :)
From: Frenchy Pilou (PILOU)
Node Arc 3Pts (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Arc Center (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Circle Dia (English)
Curiously there is not Input inside the Info Panel!
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Circle 3 Pts (English) Input datas only by Nodes ! Not Possible by Info Panel !
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Ellipse Center (English)
http://moiscript.weebly.com/curves.html
From: Frenchy Pilou (PILOU)
Added Ellipse 3 Pts (English)
http://moiscript.weebly.com/curves.html
Maybe a little glitch on the "Z" Point drawing? (not on the ellipse perimeter! )
From: Frenchy Pilou (PILOU)
I am blocked with the Nodes Curves & Polylines for Input datas ! ???
If you have some lights about that! :)
From: wayne hill (WAYNEHILL5202)
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
From: James (JFH)
Pilou,
The 3 colours of wires and connectors (inputs & outputs) represents the 3 data types:
GREEN = number data (numbers or numArrays)
PINK = point data (points or pointArrays)
YELLOW = objects (curves, surfaces or bReps)
So Curve & polyline nodes inputs are PINK and hence point arrays (minimum length of 2)
Hope this makes sense.
James
https://www.instagram.com/nodeology/
PS Keep up the good work.
Show messages:
1-7
8-27
28-47
48-67
68-87
88-107
108-127
128-147
…
488-503