mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
parent
9f249101f0
commit
8d67d14e98
2 changed files with 23 additions and 10 deletions
|
@ -2793,15 +2793,18 @@ statics: {
|
|||
}
|
||||
|
||||
var length = segments.length - (closed ? 0 : 1);
|
||||
for (var i = 1; i < length; i++)
|
||||
addJoin(segments[i], join);
|
||||
if (closed) {
|
||||
// Go back to the beginning
|
||||
addJoin(segments[0], join);
|
||||
} else if (length > 0) {
|
||||
// Handle caps on open paths
|
||||
addCap(segments[0], cap);
|
||||
addCap(segments[segments.length - 1], cap);
|
||||
if (length > 0) {
|
||||
for (var i = 1; i < length; i++) {
|
||||
addJoin(segments[i], join);
|
||||
}
|
||||
if (closed) {
|
||||
// Go back to the beginning
|
||||
addJoin(segments[0], join);
|
||||
} else {
|
||||
// Handle caps on open paths
|
||||
addCap(segments[0], cap);
|
||||
addCap(segments[segments.length - 1], cap);
|
||||
}
|
||||
}
|
||||
return bounds;
|
||||
},
|
||||
|
|
|
@ -625,7 +625,7 @@ test('Path#getOffsetsWithTangent()', function() {
|
|||
equals(path.getOffsetsWithTangent([1, 0]), [0.25 * length, 0.75 * length], 'should not return duplicates when tangent is at segment point');
|
||||
equals(path.getOffsetsWithTangent([1, 1]).length, 2, 'should return 2 values when called on a circle with a diagonal vector');
|
||||
});
|
||||
|
||||
|
||||
test('Path#add() with a lot of segments (#1493)', function() {
|
||||
var segments = [];
|
||||
for (var i = 0; i < 100000; i++) {
|
||||
|
@ -653,3 +653,13 @@ test('Path#arcTo(to, radius, rotation, clockwise, large) when from and to are eq
|
|||
path.arcTo(point, new Size(10), 0, true, true);
|
||||
expect(0);
|
||||
});
|
||||
|
||||
test('Path#closed with blend mode', function() {
|
||||
new Path({
|
||||
strokeColor: 'black',
|
||||
blendMode: 'negation',
|
||||
closed: true
|
||||
});
|
||||
view.update();
|
||||
expect(0);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue