mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 10:48:38 -05:00
30 lines
No EOL
976 B
HTML
30 lines
No EOL
976 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Example</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<script type="text/javascript">var root = '../../'</script>
|
|
<script type="text/javascript" src="../../src/load.js"></script>
|
|
<script type="text/paperscript" canvas="canvas">
|
|
function onMouseDown(event) {
|
|
var hue = Math.random() * 360;
|
|
document.currentStyle.fillColor = new HSBColor(hue, 1, 1);
|
|
}
|
|
|
|
function onMouseDrag(event) {
|
|
var delta = event.point - event.downPoint;
|
|
var radius = delta.length;
|
|
var points = 5 + Math.round(radius / 50);
|
|
var position = event.downPoint;
|
|
var path = new Path.Star(position, points, radius / 2, radius);
|
|
path.rotate(delta.angle);
|
|
// Remove the path automatically before the next mouse drag
|
|
// event:
|
|
path.removeOnDrag();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" resize keepalive="true"></canvas>
|
|
</body> |