| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Graphics.Curves.SVG.Path
Documentation
Path commands can use absolute or relative coordinates.
The path commands specified by http://www.w3.org/TR/SVG/paths.html#PathData.
Constructors
| MoveTo CoordType Point | |
| LineTo CoordType Point | |
| HorLineTo CoordType Scalar | |
| VerLineTo CoordType Scalar | |
| BezierTo CoordType [Point] | number of points = degree of the Bézier curve |
| SmoothBezierTo CoordType [Point] | first control point is the mirror of the previous control point |
| ArcTo CoordType Vec Scalar Bool Bool Point | |
| ClosePath |