mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
|
module('Path');
|
||
|
|
||
|
test('path.currentSegment', function() {
|
||
|
var path = new Path();
|
||
|
path.moveTo([50, 50]);
|
||
|
path.lineTo([100, 100]);
|
||
|
|
||
|
compareSegments(path.segments[1], path.currentSegment);
|
||
|
});
|