[READ-ONLY] Mirror of https://github.com/thoda-dev/svg-lua. svg lua library
0

Configure Feed

Select the types of activity you want to include in your feed.

path and polyline transform support documentation

Thomas (Jan 8, 2019, 1:55 PM +0100) 1eddf62e 09046685

+2 -2
+2 -2
README.md
··· 122 122 - strokeWidth: string => lines width, default to 1 123 123 - fill: string => fill color, default to svg:create() parameter ("transparent" by default) 124 124 125 - **svg:Polyline(points, stroke, strokeWidth, fill)** *add a polyline* 125 + **svg:Polyline(points, stroke, strokeWidth, fill, transform)** *add a polyline* 126 126 127 127 - points: string => all the points of the polyline with the standard svg format "x1,y1 x2,y2 x3,y3 ..." 128 128 - stroke: string => lines color 129 129 - strokeWidth: string => lines width 130 130 - fill: string => fill color 131 131 132 - **svg:Path(d, stroke, strokeWidth, fill)** *add a path* 132 + **svg:Path(d, stroke, strokeWidth, fill, transform)** *add a path* 133 133 134 134 - d: string => standard svg parameters 135 135 - stroke: string => lines color