mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
34 lines
No EOL
935 B
HTML
34 lines
No EOL
935 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Stars</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<script type="text/javascript" src="../../dist/paper.js"></script>
|
|
<script type="text/paperscript" canvas="canvas">
|
|
function onMouseDown(event) {
|
|
var hue = Math.random() * 360;
|
|
project.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 path = new Path.Star({
|
|
center: event.downPoint,
|
|
points: points,
|
|
radius1: radius / 2,
|
|
radius2: radius
|
|
});
|
|
path.rotate(delta.angle);
|
|
// Remove the path automatically before the next mouse drag
|
|
// event:
|
|
path.removeOnDrag();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" resize></canvas>
|
|
</body>
|
|
</html> |