Difference between revisions of "More RENDER Examples"

From ZCubes Wiki
Jump to navigation Jump to search
Line 4: Line 4:
 
Segmented Arrays with empty element. Each Segment can have its own heading
 
Segmented Arrays with empty element. Each Segment can have its own heading
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 16: Line 16:
 
   ]
 
   ]
 
)
 
)
</pre>
+
<syntaxhighlight>
 
[[File:Segmented_Render_Arrays.png]]
 
[[File:Segmented_Render_Arrays.png]]
  
 
=Timeline of Draw=
 
=Timeline of Draw=
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 33: Line 33:
 
   ]
 
   ]
 
)
 
)
</pre>
+
<syntaxhighlight>
 
[[File:Render_Timeline_of_Draw.png]]
 
[[File:Render_Timeline_of_Draw.png]]
  
 
=Drawing Strokes Simulation=
 
=Drawing Strokes Simulation=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 49: Line 49:
 
   ]
 
   ]
 
)
 
)
</pre>
+
<syntaxhighlight>
 
[[File:Render_Drawing_Strokes_Simulation.png]]
 
[[File:Render_Drawing_Strokes_Simulation.png]]
  
Line 59: Line 59:
 
// edit: make name and info only below onto a table as Line Modes
 
// edit: make name and info only below onto a table as Line Modes
  
<pre>
+
<syntaxhighlight lang="javascript">
  
 
{name: 'curveLinear', curve: d3.curveLinear, active: true, lineString: '', clear: false, info: 'Interpolates the points using linear segments.'},
 
{name: 'curveLinear', curve: d3.curveLinear, active: true, lineString: '', clear: false, info: 'Interpolates the points using linear segments.'},
Line 79: Line 79:
 
{name: 'curveStepAfter', curve: d3.curveStepAfter, active: false, lineString: '', clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes after the x value.'},
 
{name: 'curveStepAfter', curve: d3.curveStepAfter, active: false, lineString: '', clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes after the x value.'},
 
{name: 'curveStepBefore', curve: d3.curveStepBefore, active: false, lineString: '', clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes before the x value.'}
 
{name: 'curveStepBefore', curve: d3.curveStepBefore, active: false, lineString: '', clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes before the x value.'}
</pre>
+
<syntaxhighlight>
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 91: Line 91:
  
  
</pre>
+
<syntaxhighlight>
  
 
[[File:Render_Line_Modes.png]]
 
[[File:Render_Line_Modes.png]]
Line 99: Line 99:
 
marker-start marker-end marker-mid
 
marker-start marker-end marker-mid
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 107: Line 107:
 
);
 
);
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Arrow_Heads_on_Lines.png]]
 
[[File:Render_Arrow_Heads_on_Lines.png]]
  
 
=Arrow Heads on Lines and Line Modes=
 
=Arrow Heads on Lines and Line Modes=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 119: Line 119:
 
);
 
);
 
""
 
""
</pre>
+
<syntaxhighlight>
  
 
=Arrow Heads at Start, End and Middle of Line=
 
=Arrow Heads at Start, End and Middle of Line=
Line 125: Line 125:
 
-arrows  mid start and end
 
-arrows  mid start and end
  
<pre>
+
<syntaxhighlight lang="javascript">
  
 
RENDER(
 
RENDER(
Line 135: Line 135:
 
""
 
""
  
</pre>
+
<syntaxhighlight>
 
 
  
 
=Timelines of Draw=
 
=Timelines of Draw=
Line 142: Line 141:
 
Click the first circle, triggers the Section :1  
 
Click the first circle, triggers the Section :1  
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 161: Line 160:
 
""
 
""
  
</pre>
+
<syntaxhighlight>
  
  
Line 170: Line 169:
 
Note the use of [] empty cell to separate the sections. Use of :1 as section tags.  
 
Note the use of [] empty cell to separate the sections. Use of :1 as section tags.  
  
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 185: Line 184:
 
""
 
""
  
</pre>
+
<syntaxhighlight>
  
 
=Flag of Vietnam=
 
=Flag of Vietnam=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 204: Line 203:
  
  
</pre>
+
<syntaxhighlight>
 
[[File:Render_Flag_of_Vietnam.png]]
 
[[File:Render_Flag_of_Vietnam.png]]
  
 
=Gradient Colors=
 
=Gradient Colors=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 216: Line 215:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Gradient_Colors4.png]]
 
[[File:Render_Gradient_Colors4.png]]
  
 
=7 circles surrounded by 12 circles =
 
=7 circles surrounded by 12 circles =
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 232: Line 231:
 
)
 
)
 
""  
 
""  
</pre>
+
<syntaxhighlight>
 
[[File:Render_7_Circles_by_12_Circles.png]]
 
[[File:Render_7_Circles_by_12_Circles.png]]
  
 
=Triangle Star=
 
=Triangle Star=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 246: Line 245:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Triangle_Star.png]]
 
[[File:Render_Triangle_Star.png]]
  
 
=Circle Inside a Triangle=
 
=Circle Inside a Triangle=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 260: Line 259:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Circle_Inside_a_Triangle.png]]
 
[[File:Render_Circle_Inside_a_Triangle.png]]
  
 
=Rotating Star=
 
=Rotating Star=
<pre>
+
<syntaxhighlight lang="javascript">
 
starx= RENDER(
 
starx= RENDER(
 
   [
 
   [
Line 282: Line 281:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Rotating_Star.png]]
 
[[File:Render_Rotating_Star.png]]
  
 
=Circle and Rectangle with Gradiant=
 
=Circle and Rectangle with Gradiant=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 298: Line 297:
 
 
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Circle_and_Recrangle_with_Gradiant.png]]
 
[[File:Render_Circle_and_Recrangle_with_Gradiant.png]]
  
 
=Circle with Radial=
 
=Circle with Radial=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 310: Line 309:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Circle_with_Radial.png]]
 
[[File:Render_Circle_with_Radial.png]]
  
 
=Circles with Gradiant=
 
=Circles with Gradiant=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 322: Line 321:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Circles_with_Radial.png]]
 
[[File:Render_Circles_with_Radial.png]]
  
 
=Triangle with Gradiant=
 
=Triangle with Gradiant=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 334: Line 333:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Triangle_with_Gradiant.png]]
 
[[File:Render_Triangle_with_Gradiant.png]]
  
 
=Bar Diagram=
 
=Bar Diagram=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 356: Line 355:
 
);
 
);
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Bar_Diagram.png]]
 
[[File:Render_Bar_Diagram.png]]
  
 
=Triangle Inside the Circle with Gradiant=
 
=Triangle Inside the Circle with Gradiant=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
[
 
[
Line 369: Line 368:
 
)
 
)
 
""
 
""
</pre>
+
<syntaxhighlight>
  
 
[[File:Render_Triangle_Inside_the_Circle_with_Gradiant.png]]
 
[[File:Render_Triangle_Inside_the_Circle_with_Gradiant.png]]
  
 
=Star Inside Circle with Gradiant=
 
=Star Inside Circle with Gradiant=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 387: Line 386:
 
);
 
);
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Star_Inside_Circle_with_Gradiant.png]]
 
[[File:Render_Star_Inside_Circle_with_Gradiant.png]]
  
 
=Lines with Coloured Circles=
 
=Lines with Coloured Circles=
<pre>
+
<syntaxhighlight lang="javascript">
 
RENDER(
 
RENDER(
 
   [
 
   [
Line 402: Line 401:
 
);
 
);
 
""
 
""
</pre>
+
<syntaxhighlight>
 
[[File:Render_Lines_with_Coloured_Circles.png]]
 
[[File:Render_Lines_with_Coloured_Circles.png]]
  

Revision as of 02:48, 3 December 2020

Segmented Render Arrays

Segmented Arrays with empty element. Each Segment can have its own heading

<syntaxhighlight lang="javascript"> RENDER(

  [

["type","size"], ["circle",100], ["circle",200], [], ["type","size"], ["circle",400], ["circle",600]

  ]

) <syntaxhighlight> Segmented Render Arrays.png

Timeline of Draw

<syntaxhighlight lang="javascript"> RENDER(

  [

["timeline","type","size"], [,"circle",100], [10000,"circle",200], [], ["type","size"], ["circle",400], ["circle",600]

  ]

) <syntaxhighlight> Render Timeline of Draw.png

Drawing Strokes Simulation

<syntaxhighlight lang="javascript"> RENDER(

  [

["timeline","type","size","draw"], [,"circle",100,true], [4000,"circle",200,true], [], ["type","size","draw"], ["circle",400,true], ["circle",600,true]

  ]

) <syntaxhighlight> Render Drawing Strokes Simulation.png

Line Modes

Line modes. Get modes from CURVEMODES() part of the string gives the mode like stepbefore


// edit: make name and info only below onto a table as Line Modes

<syntaxhighlight lang="javascript">

{name: 'curveLinear', curve: d3.curveLinear, active: true, lineString: , clear: false, info: 'Interpolates the points using linear segments.'}, {name: 'curveBasis', curve: d3.curveBasis, active: true, lineString: , clear: true, info: 'Interpolates the start and end points and approximates the inner points using a B-spline.'}, {name: 'curveBasisClosed', curve: d3.curveBasisClosed, active: false, lineString: , clear: false, info: 'Uses a closed B-Spline to approximate the points.'}, {name: 'curveBundle (ß=0)', curve: d3.curveBundle.beta(0), active: false, lineString: , clear: true, info: 'Same as curveBasis with the addition of a paramter ß which determines how close to a straight line the curve is. If ß=0 the curve is straight.'}, {name: 'curveBundle (ß=0.5)', curve: d3.curveBundle.beta(0.5), active: false, lineString: , clear: false, info: 'Same as curveBasis with the addition of a paramter ß which determines how close to a straight line the curve is.'}, {name: 'curveBundle (ß=1)', curve: d3.curveBundle.beta(1), active: false, lineString: , clear: false, info: 'Same as curveBasis with the addition of a paramter ß which determines how close to a straight line the curve is. If ß=1 the curve is the same as curveBasis.'}, {name: 'curveCardinal (tension=0)', curve: d3.curveCardinal.tension(0), active: false, lineString: , clear: true, info: "Interpolates the points using a cubic B-spline. A tension parameter determines how 'taut' the curve is. As tension approaches 1 the segments become linear."}, {name: 'curveCardinal (tension=0.5)', curve: d3.curveCardinal.tension(0.5), active: false, lineString: , clear: false, info: "Interpolates the points using a cubic B-spline. A tension parameter determines how 'taut' the curve is. As tension approaches 1 the segments become linear."}, {name: 'curveCardinal (tension=1)', curve: d3.curveCardinal.tension(1), active: false, lineString: , clear: false, info: "Interpolates the points using a cubic B-spline. A tension parameter determines how 'taut' the curve is. As tension approaches 1 the segments become linear."}, {name: 'curveCatmullRom (α=0)', curve: d3.curveCatmullRom.alpha(0), active: false, lineString: , clear: true, info: 'Similar to curveCardinal (tension=0) but with a parameter α that determines the parameterisation used to interpolate the points. If α=0 the parameterisation is uniform.'}, {name: 'curveCatmullRom (α=0.5)', curve: d3.curveCatmullRom.alpha(0.5), active: false, lineString: , clear: false, info: 'Similar to curveCardinal (tension=0) but with a parameter α that determines the parameterisation used to interpolate the points. If α=0.5 the parameterisation is centripetal and self intersecting loops are avoided.'}, {name: 'curveCatmullRom (α=1)', curve: d3.curveCatmullRom.alpha(1), active: false, lineString: , clear: false, info: 'Similar to curveCardinal (tension=0) but with a parameter α that determines the parameterisation used to interpolate the points. If α=1 the parameterisation is chordal.'}, {name: 'curveMonotoneX', curve: d3.curveMonotoneX, active: false, lineString: , clear: true, info: 'Interpolates the points with a cubic spline which are monotonic (i.e. always increasing or always decreasing) in y.'}, {name: 'curveMonotoneY', curve: d3.curveMonotoneY, active: false, lineString: , clear: false, info: 'Interpolates the points with a cubic spline which are monotonic (i.e. always increasing or always decreasing) in x.'}, {name: 'curveNatural', curve: d3.curveNatural, active: false, lineString: , clear: true, info: 'Interpolates the points with a cubic spline with zero 2nd derivatives at the endpoints.'}, {name: 'curveStep', curve: d3.curveStep, active: false, lineString: , clear: true, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The vertical segments lie midway between points.'}, {name: 'curveStepAfter', curve: d3.curveStepAfter, active: false, lineString: , clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes after the x value.'}, {name: 'curveStepBefore', curve: d3.curveStepBefore, active: false, lineString: , clear: false, info: 'Interpolates the points with alternating horizontal and vertical linear segments. The y value changes before the x value.'} <syntaxhighlight>

<syntaxhighlight lang="javascript"> RENDER( [ ["type" , "size" , "coordinates" , "stroke" , "fill" ,"linemode" ], ["line" , null , [100,10,200,100,300,299,200,300] , "red" , "blue" , "catmull"] ] ); ""


<syntaxhighlight>

Render Line Modes.png

Arrow Heads on Lines

marker-start marker-end marker-mid

<syntaxhighlight lang="javascript"> RENDER( [ ["type" , "size" , "coordinates" , "stroke" , "fill" , "marker-start"], ["line" , null , [100,10,200,100,300,299,200,300] , "red" , "blue" , "#arrow"] ] ); "" <syntaxhighlight> Render Arrow Heads on Lines.png

Arrow Heads on Lines and Line Modes

<syntaxhighlight lang="javascript"> RENDER( [ ["type" , "size" , "coordinates" , "stroke" , "fill" ,"linemode" ,"marker-end" ], ["line" , null , [100,10,200,100,300,299,200,300] , "red" , "blue" , "stepbefore","arrow"] ] ); "" <syntaxhighlight>

Arrow Heads at Start, End and Middle of Line

-arrows mid start and end

<syntaxhighlight lang="javascript">

RENDER( [ ["type" , "size" , "coordinates" , "stroke" , "fill" ,"linemode" ,"marker-end","marker-mid","marker-start" ], ["line" , null , [100,10,200,100,300,299,200,300] , "red" , "blue" , "stepbefore","arrow","arrow","arrow"] ] ); ""

<syntaxhighlight>

Timelines of Draw

Click the first circle, triggers the Section :1

<syntaxhighlight lang="javascript"> RENDER( [

 ["type","size","id"],
 ["circle",100,"d1"],
 ["circle",200],
 [],
 ["type"	,"trigger"	,"condition","goto"	, "target"	,"once"],
 ["event" 	,"onclick",(e)=>true	,":1" 	, "#d1"		,true], // click
 ["event" 	,"onkeydown",(e)=>e.keyCode=='K'	,":1" 	, ], // keydown or onkeydown
 ["done"], // ["."]
 [":1"],
 ["type","size"],
 ["circle",400],
 ["circle",600]

] ); ""

<syntaxhighlight>


Controls

Click the input control, triggers the Section :1

Note the use of [] empty cell to separate the sections. Use of :1 as section tags.

<syntaxhighlight lang="javascript"> RENDER( [

 ["type","size","id","value","trigger","goto"],
 ["input:button",100,"d1",343,"click",":1"],
 ["circle",200],
 ["."],
 [":1"],
 ["type","size"],
 ["circle",400],
 ["circle",600]

] ) ""

<syntaxhighlight>

Flag of Vietnam

<syntaxhighlight lang="javascript"> RENDER(

  [
     ["type","x","y", "width","height","fill", "count","shape","id","href","sides","size"],
     
     ["rect",0, 0,  300,   150,   "red"  ,1,,,,,],
     ["star",0, 0,0, 0, "yellow",1,true,"star1","","10",40],
  
     ["use",150,80,300,140, "yellow",1,false,"","star1","",300],
  
     ]

)

""


<syntaxhighlight> Render Flag of Vietnam.png

Gradient Colors

<syntaxhighlight lang="javascript"> RENDER( [ ["type","x","y","width","height","fill"], ["rect",100,70,200,140,["white","red","black","radial"]] ] ) "" <syntaxhighlight> Render Gradient Colors4.png

7 circles surrounded by 12 circles

<syntaxhighlight lang="javascript"> RENDER( [ ["id","type","coordinates","r","fill","count","transform-origin","stroke-width","stroke"], ["","circle",POLYPOINTS(12,120,200,-90+360/12),30,,12,[100,100],4,"red"], ["","circle",POLYPOINTS(6,60,201,-90+360/6),30,,6,[100,100],3,"blue"], ["","circle",POLYPOINTS(1,1,202,-90+360/1),30,,1,[100,100],2,"blue"]

]

) "" <syntaxhighlight> Render 7 Circles by 12 Circles.png

Triangle Star

<syntaxhighlight lang="javascript"> RENDER(

  [

["type","points","stroke","stroke-width","fill"], ["polygon",[150,100,200,200,100,200],"red","5",], ["polygon",[200,150,100,150,150,240],"red","5",]

  ]

) "" <syntaxhighlight> Render Triangle Star.png

Circle Inside a Triangle

<syntaxhighlight lang="javascript"> RENDER(

  [

["type","r","cx","cy","count","points","stroke","stroke-width","fill"], ["polygon",,,,,[150,100,200,200,100,200],"blue","5",], ["circle",28,150,170,1,,,,"lightgreen"]

  ]

) "" <syntaxhighlight> Render Circle Inside a Triangle.png

Rotating Star

<syntaxhighlight lang="javascript"> starx= RENDER(

  [
     ["type","x","y", "width","height","fill", "count","shape","id","href","sides","size"],
      ["star",0, 0,0, 0, "red",1,true,"star1","","10",40],
      ["use",150,80,300,140, "red",1,false,"","star1","",300],
  ]

); RENDER( [ ["id", "animate","animationsettings"], ["star1", "animate",[["loop","rotate","duration","easing"],[true,360,5*1000,"linear"]]],

] , starx ) "" <syntaxhighlight> Render Rotating Star.png

Circle and Rectangle with Gradiant

<syntaxhighlight lang="javascript"> RENDER( [ ["type","x","y","cx","cy","r","width","height","fill"], ["circle",,,100,100,50,200,140,["red","green"]], ["rect",200,200,,,,200,140,["blue","green","yellow"]]


] )

"" <syntaxhighlight> Render Circle and Recrangle with Gradiant.png

Circle with Radial

<syntaxhighlight lang="javascript"> RENDER( [ ["type","cx","cy","r","width","height","fill"], ["circle",100,100,100,200,140,["blue","green","red","radial"]] ] ) "" <syntaxhighlight> Render Circle with Radial.png

Circles with Gradiant

<syntaxhighlight lang="javascript"> RENDER( [ ["type","cx","cy","r","width","height","fill","count"], ["circle",i=>i*50, i=>i*50,50 , 200,140,i=>["red","yellow","red"],12], ] ) "" <syntaxhighlight> Render Circles with Radial.png

Triangle with Gradiant

<syntaxhighlight lang="javascript"> RENDER( [ ["type","points","stroke","stroke-width","fill"], ["polygon",[150,100 200,200 100,200],"red",5,["green","blue","lime"]], ] ) "" <syntaxhighlight> Render Triangle with Gradiant.png

Bar Diagram

<syntaxhighlight lang="javascript"> RENDER(

  	[
         ["type","x","y","width","height","fill","sides","size","cx","cy","r"],
         ["rect", 50,200,   30,   150,    ["white","orange"]  , , , , ,],

["rect",100,200, 30, 250, ["white","orange"] , , , , ,],

  	  ["rect",150,200,   30,   240,   ["white","orange"]   , , , , ,],

["rect",200,200, 30, 280, ["white","orange"] , , , , ,], ["rect",250,200, 30, 325, ["white","orange"] , , , , ,], ["rect",300,200, 30, 380, ["white","orange"] , , , , ,], ["rect",350,200, 30, 350, ["white","orange"] , , , , ,], ["rect",400,200, 30, 700, ["white","orange"] , 40, 80,90 , 50,],


]

); "" <syntaxhighlight> Render Bar Diagram.png

Triangle Inside the Circle with Gradiant

<syntaxhighlight lang="javascript"> RENDER( [ ["type","x","y","width","height","fill","cx","cy","r","points","stroke","stroke-width"], ["circle", , , ,,["red","blue"] ,150,160,70, , ,], ["polygon", , , , , "red", , , ,[150,100 200,200 100,200], ,5], ] ) "" <syntaxhighlight>

Render Triangle Inside the Circle with Gradiant.png

Star Inside Circle with Gradiant

<syntaxhighlight lang="javascript"> RENDER(

  	 [
          ["type","x","y","width","height","fill","count","shape","id","href","sides","size","cx","cy","r","stroke","stroke-width","points"],
      	   ["circle", , , , ,"red", , , , , , ,100,150,40],   

["star",0,0,0,0,"yellow", 1,true , "star13", "","12",40], ["use",100,150,300,140,"yellow",1,false,"","star13","",300]


]

); "" <syntaxhighlight> Render Star Inside Circle with Gradiant.png

Lines with Coloured Circles

<syntaxhighlight lang="javascript"> RENDER(

  	[
     	["type","x","y","width","height","fill","count","shape","id","href","sides","size","cx","cy","r","stroke","stroke-width","points","transform"],
     	["circle",,,,,,1,,,,,,100,135,40,"red",10,],
     	["circle",,,,,,1,,,,,,100,135,5,"yellow",30,],
     	["polyline",,,,,"green",30,,,,,,,,,"blue",1,i=>[100,135,199,120, 200,95,201,120,200,135],(i=>({"rotation":(i+1)/24*360,"cx":100,"cy":135})) ],
  	]

); "" <syntaxhighlight> Render Lines with Coloured Circles.png


Related

Basic Examples