Various RENDER Examples

From ZCubes Wiki
Revision as of 05:23, 3 November 2020 by Swapna (talk | contribs) (Created page with "=Rectangle= <pre> RENDER( [ ["type","x","y","width","height","fill","stroke"], ["rect",50,20,150,150,"blue","red"], ] ); "" </pre> =Rounded Rectangle= <pre> REND...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Rectangle

RENDER(
	[
		["type","x","y","width","height","fill","stroke"],
		["rect",50,20,150,150,"blue","red"],
		
		]
	
	);
""

Rounded Rectangle

RENDER(
	[
		["type","x","y","rx","ry","width","height","fill","stroke","stroke-width"],
		["rect",50,20,20,20,150,150,"purple","green",5],
		
		]
	
	);
""


Line

RENDER( [ ["type","x1","y1","x2","y2","stroke","stroke-width"], ["line",0,0,200,200,"blue",5],

]

); ""

Circle

RENDER( [ ["type","cx","cy","r","stroke","stroke-width",”fill”], ["circle",250,250,50,"green",5,”blue”],

]

); ""


Gradient Polygon

RENDER( [ ["type","points","stroke","stroke-width","fill"], ["polygon",[220,10 300,210 170,250 123,234,100,200,140],"red",5,["green","blue","lime"]], ] ) ""

Evenodd fill Star

RENDER( [ ["type","points","stroke","stroke-width","fill","fill-rule"], ["polygon",[100,10 40,198 190,78 10,78 160,198],"orange",5,["lime"],"evenodd"], ] ) ""

Nonzero fill Star

RENDER( [ ["type","points","stroke","stroke-width","fill","fill-rule"], ["polygon",[100,10 40,198 190,78 10,78 160,198],"orange",5,["lime"],"nonzero"], ] ) ""

Combined ellipses with dash lined stroke

RENDER( [ ["type","cx","cy", "rx", "ry","fill","stroke","stroke-dasharray"],

["ellipse",200,50,180,20,"yellow","black","5,5"], ["ellipse",180,50,140,15,"white"],

] ); ""

Path

1. RENDER( [

  ["type"   ,   "size"      ,   "coordinates"                  , "stroke"      , "stroke-width" , "label"],

["path",,"M 100 350 l 150 -300","red",5,"TEST PATH"], ["path",,"M 250 50 l 150 300","red",5,], ["path",,"M 175 200 l 150 0","red",5,] ] ); ""

2. RENDER( [

  ["type"   ,   "size"      ,   "coordinates"                  , "stroke"      , "stroke-width" , "label"],

["path",,"M 100 350 l 150 -300","red",5,"TEST PATH"], ["path",,"M 250 50 l 150 300","red",5,], ["path",,"M 175 200 l 150 0","red",5,], ["path",,"M 100 350 q 150 -300 300 0","blue",5,] ] ); ""

Left Indent Image

RENDER ( [ ["type","coordinates","stroke","stroke-width"],

   ["line",[3,3,48,3],"blue",5],

["line",[3,19,65,19],"green",5], ["line",[3,35,48,35],"blue",5], ["line",[3,51,65,51],"green",5]


] ); ""

Alert icon

RENDER ( [ ["type","cx","cy","rx","ry","coordinates","fill","stroke","stroke-width"],

   ["ellipse",43,43,40,40,,"yellow","black",5],

["ellipse",43,65,5,5,,"black","black",5], ["line",,,,,[43,19,43,48],"black","black",8]

] ); ""

Play icon

RENDER ( [ ["type","cx","cy","rx","ry","coordinates","points","fill","stroke","stroke-width"],

   ["ellipse",43,43,40,40,,,"black","black",5],

["polygon",,,,,,[35 23, 60 43, 35 63],"red","white",2]

] ); ""