1
0
Fork 0

sparkles: Updated for compatibility with freesewing v0.13

This commit is contained in:
Joost De Cock 2018-09-05 12:14:50 +02:00
parent 79cdcd2b6e
commit 4baa90f226
5 changed files with 62 additions and 63 deletions

View file

@ -31,8 +31,7 @@ var sleeve = {
.attr("class", "fabric");
// Anchor point for sampling
points.gridAnchor = points.origin;
points.test = new Point(10, 10);
points.gridAnchor = new Point(0, 0);
// Final?
if (final) {

View file

@ -166,8 +166,7 @@ var sleevecap = {
paths.sleevecap.attr("class", "fabric");
// Anchor point for sampling
points.gridAnchor = points.origin;
points.test = new Point(10, 10);
points.gridAnchor = new Point(0, 0);
return part;
}