[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:04 PM +0100) 7fd1c1d0 42a66eed

+7
+7
README.md
··· 7 7 mon_dessin = svg:create() 8 8 mon_dessin:add(mon_dessin:Rect()) 9 9 mon_dessin:draw() 10 + ``` 11 + 12 + result : 13 + ```svg 14 + <svg width="100" height="100" fill="transparent" stroke="#000000" version="1.1" xmlns="http://www.w3.org/2000/svg"> 15 + <rect y="10" x="10" stroke-width="1" height="10" width="10" rx="0" ry="0" /> 16 + </svg> 10 17 ```