mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
bc2729683c
- Symbol -> SymbolDefinition - PlacedSymbol -> SymbolItem - Symbol#definition -> SymbolDefinition#item - PlacedSymbol#symbol -> SymbolItem#definition - Deprecate Project#symbols Closes #770
27 lines
839 B
HTML
27 lines
839 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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">
|
|
<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);
|
|
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>
|
|
<body>
|
|
<canvas id="canvas" width="500" height="500"></canvas>
|
|
</body>
|
|
</html>
|