mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
1f98d72c5b
Allow deactivation by setting the hidpi attribute to "off" on the canvas.
28 lines
No EOL
788 B
HTML
28 lines
No EOL
788 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Transform Testing</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<script type="text/javascript" src="../../dist/paper.js"></script>
|
|
<script type="text/paperscript" canvas="canvas">
|
|
var circlePath = new Path.Circle(new Point(280, 100), 25);
|
|
circlePath.strokeColor = 'black';
|
|
circlePath.fillColor = 'white';
|
|
|
|
var clones = 30;
|
|
var angle = 360 / clones;
|
|
|
|
for(var i = 0; i < clones; i++) {
|
|
var clonedPath = circlePath.clone();
|
|
clonedPath.rotate(angle * i, circlePath.bounds.topLeft);
|
|
};
|
|
|
|
document.getElementById('svg').appendChild(project.exportSVG());
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" width="500" height="500"></canvas>
|
|
<svg id="svg" width="500" height="500"></svg>
|
|
</body>
|
|
</html> |