mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
11 lines
345 B
JavaScript
11 lines
345 B
JavaScript
|
module('Path Length');
|
||
|
|
||
|
test('path.length', function() {
|
||
|
var doc = new Doc();
|
||
|
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.getCurveLength(), 172.10122680664062);
|
||
|
});
|