paper.js/examples/SVG Export/Symbols.html

28 lines
839 B
HTML
Raw Normal View History

2013-02-10 13:23:49 -05:00
<!DOCTYPE html>
<html>
<head>
2014-08-16 13:24:54 -04:00
<meta charset="UTF-8">
<title>Symbols</title>
<link rel="stylesheet" href="../css/style.css">
<!-- IE 9: display inline SVG -->
<meta http-equiv="X-UA-Compatible" content="IE=9">
2014-08-16 13:24:54 -04:00
<script type="text/javascript" src="../../dist/paper-full.js"></script>
<script type="text/paperscript" canvas="canvas">
var ellipse = new Path.Ellipse({
from: [0, 0],
to: [200, 100],
fillColor: 'red'
});
var symbol = new SymbolDefinition(ellipse);
2014-08-16 13:24:54 -04:00
var p1 = symbol.place([100, 100]);
p1.rotate(45);
var p2 = symbol.place([300, 200]);
p2.rotate(-30);
document.body.appendChild(project.exportSVG());
</script>
</head>
2013-02-12 18:08:48 -05:00
<body>
2014-08-16 13:24:54 -04:00
<canvas id="canvas" width="500" height="500"></canvas>
2013-02-10 13:23:49 -05:00
</body>
</html>