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

Thomas DAGES (Dec 6, 2018, 3:42 PM +0100) 5d50763e 17a5b867

+6 -5
+6 -5
README.md
··· 20 20 `svg.min.lua` generated with [Lua Minifier from Mothereff.in](https://mothereff.in/lua-minifier) 21 21 22 22 # Documentation 23 - **svg:create()** *create the svg object* 23 + **svg:create(width, height, stroke, fill)** *create the svg object* 24 + 24 25 Params: 25 - - width: number => width of the drawing 26 - - height: number => height of the drawing 27 - - stroke: string => lines color 28 - - fill: string => fill color 26 + - width: number => width of the drawing, default to 100 27 + - height: number => height of the drawing, default to 100 28 + - stroke: string => lines color, default to '#000000' 29 + - fill: string => fill color, default to 'transparent'