diff --git a/examples/SVG Export/Rotated Primitives.html b/examples/SVG Export/Rotated Primitives.html index fbf358ef..ca7af1dd 100644 --- a/examples/SVG Export/Rotated Primitives.html +++ b/examples/SVG Export/Rotated Primitives.html @@ -62,6 +62,13 @@ } } }; + + var parallelogram = new Path({ + closed: true, + segments: [[50, 0], [50, 100], [90, 120], [90, 20]], + fillColor: '#99c' + }); + document.getElementById('svg').appendChild(project.exportSVG());