[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.

update documentation for lines

Thomas (Dec 10, 2018, 3:08 PM +0100) 8f665127 d5b68fe3

+11 -1
+11 -1
README.md
··· 101 101 - stroke: string => lines color, default to svg:create() parameter ("#000000" by default) 102 102 - strokeWidth: string => lines width, default to 1 103 103 - fill: string => fill color, default to svg:create() parameter ("transparent" by default) 104 - - tranform: string => transformation options (eg: rotation) 104 + - tranform: string => transformation options (eg: rotation) 105 + 106 + **svg:Line(x1, y1, x2, y2, stroke, strokeWidth, fill)** *add a line* 107 + 108 + - x1: number => Horizontal position of the center, default to 30 109 + - y1: number => Vertical position of the center, default to 30 110 + - x2: number => Horizontal radius of the ellipse, default to 25 111 + - y2: number => Vertical radius of the ellipse, default to 15 112 + - stroke: string => lines color, default to svg:create() parameter ("#000000" by default) 113 + - strokeWidth: string => lines width, default to 1 114 + - fill: string => fill color, default to svg:create() parameter ("transparent" by default)