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

Thomas DAGES (Dec 6, 2018, 4:46 PM +0100) 0b75d16b 89e26ab6

+10
+10
README.md
··· 57 57 - cy: number => Vertical position of the center, default to 30 58 58 - stroke: string => lines color, default to svg:create() parameter ("#000000" by default) 59 59 - strokeWidth: string => lines width, default to 1 60 + - fill: string => fill color, default to svg:create() parameter ("transparent" by default) 61 + 62 + **svg:Ellipse(cx, cy, rx, ry, stroke, strokeWidth, fill)** *add an ellipse* 63 + 64 + - cx: number => Horizontal position of the center, default to 30 65 + - cy: number => Vertical position of the center, default to 30 66 + - rx: number => Horizontal radius of the ellipse, default to 25 67 + - ry: number => Vertical radius of the ellipse, default to 15 68 + - stroke: string => lines color, default to svg:create() parameter ("#000000" by default) 69 + - strokeWidth: string => lines width, default to 1 60 70 - fill: string => fill color, default to svg:create() parameter ("transparent" by default)