2011-07-01 06:17:45 -04:00
|
|
|
/*
|
2013-01-28 21:03:27 -05:00
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
2011-07-01 06:17:45 -04:00
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2013-01-28 21:03:27 -05:00
|
|
|
* Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
2011-07-01 06:17:45 -04:00
|
|
|
* http://lehni.org/ & http://jonathanpuckey.com/
|
|
|
|
*
|
|
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2011-02-07 13:28:09 -05:00
|
|
|
module('Point');
|
2011-02-13 11:26:24 -05:00
|
|
|
test('new Point(10, 20)', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(10, 20);
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 10, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('new Point([10, 20])', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point([10, 20]);
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 10, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('new Point({x: 10, y: 20})', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point({x: 10, y: 20});
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 10, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('new Point(new Size(10, 20))', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(new Size(10, 20));
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 10, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('new Point({ width: 10, height: 20})', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point({width: 10, height: 20});
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 10, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-05-21 15:01:01 -04:00
|
|
|
test('new Point({ angle: 45, length: 20})', function() {
|
|
|
|
var point = new Point({angle: 40, length: 20});
|
|
|
|
equals(point.toString(), '{ x: 15.32089, y: 12.85575 }');
|
|
|
|
});
|
|
|
|
|
2011-02-07 13:28:09 -05:00
|
|
|
module('Point vector operations');
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('normalize(length)', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(0, 10).normalize(20)
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 0, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('set length', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(0, 10);
|
2011-02-11 09:02:35 -05:00
|
|
|
point.length = 20;
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: 0, y: 20 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('get angle', function() {
|
2011-02-11 09:02:35 -05:00
|
|
|
var angle = new Point(0, 10).angle;
|
2011-02-07 13:28:09 -05:00
|
|
|
equals(angle, 90);
|
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('getAngle(point)', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var angle = new Point(0, 10).getAngle([10, 10]);
|
|
|
|
equals(Math.round(angle), 45);
|
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('rotate(degrees)', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(100, 50).rotate(90);
|
2011-05-21 15:01:36 -04:00
|
|
|
equals(point.toString(), '{ x: -50, y: 100 }');
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-13 11:26:24 -05:00
|
|
|
test('set angle', function() {
|
2011-02-07 13:28:09 -05:00
|
|
|
var point = new Point(10, 20);
|
2011-02-11 09:02:35 -05:00
|
|
|
point.angle = 92;
|
|
|
|
equals(point.angle, 92);
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|
|
|
|
|
2011-02-11 09:02:35 -05:00
|
|
|
test('getDirectedAngle(point)', function() {
|
2011-06-14 07:44:56 -04:00
|
|
|
var angle = new Point(10, 10).getDirectedAngle(new Point(1, 0));
|
2011-02-07 13:28:09 -05:00
|
|
|
equals(angle, -45);
|
2011-06-14 07:44:56 -04:00
|
|
|
|
|
|
|
var angle = new Point(-10, 10).getDirectedAngle(new Point(1, 0));
|
|
|
|
equals(angle, -135);
|
|
|
|
|
|
|
|
var angle = new Point(-10, -10).getDirectedAngle(new Point(1, 0));
|
|
|
|
equals(angle, 135);
|
|
|
|
|
|
|
|
var angle = new Point(10, -10).getDirectedAngle(new Point(1, 0));
|
|
|
|
equals(angle, 45);
|
2011-02-07 13:28:09 -05:00
|
|
|
});
|