mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
commit
779d076f02
1 changed files with 3 additions and 3 deletions
|
@ -26,8 +26,8 @@
|
|||
for (var i = 0; i < size - 1; i++) {
|
||||
var nextSegment = segments[i + 1];
|
||||
var position = path.segments[i].point;
|
||||
var angle = (position - nextSegment.point).angle;
|
||||
var vector = new Point({ angle: angle, length: 35 });
|
||||
var vector = position - nextSegment.point;
|
||||
vector.length = 35;
|
||||
nextSegment.point = position - vector;
|
||||
}
|
||||
path.smooth();
|
||||
|
@ -47,4 +47,4 @@
|
|||
<body>
|
||||
<canvas id="canvas" resize></canvas>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue