mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Remove uneeded sample.
This commit is contained in:
parent
ee6d593620
commit
61a4464aae
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Example</title>
|
||||
<script type="text/javascript">var root = '../../'</script>
|
||||
<script type="text/javascript" src="../../src/load.js"></script>
|
||||
<script type="text/paperscript" canvas="canvas">
|
||||
var path = new Path.Circle(new Point(), 100);
|
||||
path.strokeWidth = 30;
|
||||
path.fillColor = null;
|
||||
path.strokeColor = 'black';
|
||||
var symbol = new PlacedSymbol(path);
|
||||
symbol.position = new Point(200, 200);
|
||||
symbol.scale(1, 0.5);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id='canvas' width=1024 height=768></canvas>
|
||||
</body>
|
Loading…
Reference in a new issue