This is a plugin for the svg.js library to draw various shape types based on the built-in polygon method.
Svg.shapes.js is licensed under the terms of the MIT License.
Include this plugin after including svg.js in your html document.
Three parameters are required to draw a star, inner
radius, outer
radius and spikes
:
var star = draw.polygon().star({
inner: 50
, outer: 100
, spikes: 7
})
This method is also animatable:
star.animate().star({ spikes: 10 })
Finally, if you only want to get the point data, the star builder is directly available at:
SVG.shapes.star({ spikes: 10 })
Note that this will return an instance of SVG.PointArray
.
The ngon()
method only requires two parameters, radius
and edges
:
var ngon = draw.polygon().ngon({
radius: 150
, edges: 5
})
This method is also animatable:
star.animate().ngon({ edges: 7, radius: 200 })
Finally, if you only want to get the point data, the ngon builder is directly available at:
SVG.shapes.ngon({ edges: 10 })
Note that this will return an instance of SVG.PointArray
.
- Cog wheel
- Wedge
- Arc
- Cross