mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
var test = require('tap').test;
|
|
var math = require('../../src/util/math-util');
|
|
|
|
test('degToRad', function (t) {
|
|
t.strictEqual(math.degToRad(0), 0);
|
|
t.strictEqual(math.degToRad(1), 0.017453292519943295);
|
|
t.strictEqual(math.degToRad(180), Math.PI);
|
|
t.strictEqual(math.degToRad(360), 2 * Math.PI);
|
|
t.strictEqual(math.degToRad(720), 4 * Math.PI);
|
|
t.end();
|
|
});
|
|
|
|
test('radToDeg', function (t) {
|
|
t.strictEqual(math.radToDeg(0), 0);
|
|
t.strictEqual(math.radToDeg(1), 57.29577951308232);
|
|
t.strictEqual(math.radToDeg(180), 10313.240312354817);
|
|
t.strictEqual(math.radToDeg(360), 20626.480624709635);
|
|
t.strictEqual(math.radToDeg(720), 41252.96124941927);
|
|
t.end();
|
|
});
|
|
|
|
test('clamp', function (t) {
|
|
t.strictEqual(math.clamp(0, 0, 10), 0);
|
|
t.strictEqual(math.clamp(1, 0, 10), 1);
|
|
t.strictEqual(math.clamp(-10, 0, 10), 0);
|
|
t.strictEqual(math.clamp(100, 0, 10), 10);
|
|
t.end();
|
|
});
|
|
|
|
test('wrapClamp', function (t) {
|
|
t.strictEqual(math.wrapClamp(0, 0, 10), 0);
|
|
t.strictEqual(math.wrapClamp(1, 0, 10), 1);
|
|
t.strictEqual(math.wrapClamp(-10, 0, 10), 1);
|
|
t.strictEqual(math.wrapClamp(100, 0, 10), 1);
|
|
t.end();
|
|
});
|