2012-11-06 11:03:28 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-06-02 16:41:10 -04:00
|
|
|
<meta charset="UTF-8">
|
2012-11-06 11:03:28 -05:00
|
|
|
<title>Rotated Primitives</title>
|
|
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
|
|
<script type="text/javascript" src="../../dist/paper.js"></script>
|
|
|
|
<script type="text/paperscript" canvas="canvas">
|
|
|
|
// This "arbitrary" shape triggered rectangles in the original code,
|
|
|
|
// since point2 is as far from point0 as point3 is from point1.
|
|
|
|
var path = new Path();
|
|
|
|
path.moveTo(0, 0);
|
|
|
|
path.lineTo(50, 50);
|
|
|
|
path.lineTo(100, 100);
|
|
|
|
path.lineTo(-50, 150);
|
|
|
|
path.closed = true;
|
|
|
|
path.strokeColor = 'black';
|
|
|
|
path.position += 100;
|
|
|
|
|
|
|
|
var rect = new Path.Rectangle(200, 100, 200, 300);
|
|
|
|
rect.fillColor = 'red';
|
|
|
|
rect.rotate(40);
|
|
|
|
|
|
|
|
var circle = new Path.Circle(200, 300, 100);
|
|
|
|
circle.fillColor = 'green';
|
|
|
|
circle.scale(0.5, 1);
|
|
|
|
circle.rotate(40);
|
|
|
|
|
2013-04-19 15:36:49 -04:00
|
|
|
var rect = new Path.Rectangle(250, 20, 200, 300, 40, 20);
|
2012-11-06 11:03:28 -05:00
|
|
|
rect.fillColor = 'yellow';
|
|
|
|
rect.rotate(-20);
|
2013-04-09 20:53:26 -04:00
|
|
|
rect.data = {
|
|
|
|
string: '----',
|
|
|
|
number: 1234,
|
|
|
|
array: ['a ray', 'some rays'],
|
|
|
|
bool: true,
|
|
|
|
nil: null,
|
|
|
|
point: new Point(12, 34),
|
|
|
|
size: new Size(12, 34),
|
|
|
|
rectangle: new Rectangle([12, 34], [56, 78]),
|
|
|
|
deep: {
|
|
|
|
deeper: {
|
|
|
|
deepest: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2013-04-23 10:19:08 -04:00
|
|
|
document.getElementById('svg').appendChild(project.exportSVG());
|
2012-11-06 11:03:28 -05:00
|
|
|
</script>
|
2013-02-10 21:45:50 -05:00
|
|
|
</head>
|
2013-02-12 18:08:48 -05:00
|
|
|
<body>
|
2013-02-10 21:45:50 -05:00
|
|
|
<canvas id="canvas" width="500" height="500"></canvas>
|
2013-02-12 18:08:48 -05:00
|
|
|
<svg id="svg" width="500" height="500"></svg>
|
2012-11-06 11:03:28 -05:00
|
|
|
</body>
|
|
|
|
</html>
|