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">
|
2014-04-07 06:01:56 -04:00
|
|
|
<!-- 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'
|
|
|
|
});
|
2016-01-31 10:52:51 -05:00
|
|
|
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>
|
2013-02-10 21:45:50 -05:00
|
|
|
</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>
|
2014-04-06 07:44:19 -04:00
|
|
|
</html>
|