mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
10 lines
340 B
JavaScript
10 lines
340 B
JavaScript
module('Path Length');
|
|
|
|
test('path.length', function() {
|
|
var doc = new Document();
|
|
var path = new Path([
|
|
new Segment(new Point(121, 334), new Point(-19, 38), new Point(30.7666015625, -61.53369140625)),
|
|
new Segment(new Point(248, 320), new Point(-42, -74), new Point(42, 74))
|
|
]);
|
|
compareNumbers(path.length, 172.10122680664062);
|
|
});
|