-
Notifications
You must be signed in to change notification settings - Fork 294
/
utils_test.js
60 lines (49 loc) · 2.14 KB
/
utils_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
describe("Radar", function() {
describe("Cartesian to Raster Co-ordinate Transformation functions", function() {
it("cartesian_to_raster_origin", function() {
expect(cartesian_to_raster(0,0)).toEqual([w/2,h/2]);
});
it("cartesian_to_raster_bounds", function() {
expect(cartesian_to_raster(-500,-500)).toEqual([0,0]);
expect(cartesian_to_raster(500,500)).toEqual([w,h]);
expect(cartesian_to_raster(-500,500)).toEqual([0,h]);
expect(cartesian_to_raster(500,0)).toEqual([w,h/2]);
});
});
describe("Polar to Cartesian Co-ordinate Transformation functions", function() {
it("polar origin ", function() {
var r = 0, t = 0;
expect(Math.round(polar_to_cartesian(r,t)[0])).toEqual(0);
expect(Math.round(polar_to_cartesian(r,t)[1])).toEqual(0);
});
it("polar to cartesian 1,90", function() {
var r = 1, t = 90;
expect(Math.round(polar_to_cartesian(r,t)[0])).toEqual(0);
expect(Math.round(polar_to_cartesian(r,t)[1])).toEqual(1);
});
it("polar to cartesian 20,90", function() {
var r = 20;
var t = 90;
expect(Math.round(polar_to_cartesian(r,t)[0])).toEqual(0);
expect(Math.round(polar_to_cartesian(r,t)[1])).toEqual(r);
});
it("polar to cartesian 20, 180", function() {
var r = 20, t = 180;
expect(Math.round(polar_to_cartesian(r,t)[0])).toEqual(-20);
expect(Math.round(polar_to_cartesian(r,t)[1])).toEqual(0);
});
it("polar to cartesian, 20, 270", function() {
var r = 20, t = 270;
expect(Math.round(polar_to_cartesian(r,t)[0])).toEqual(0);
expect(Math.round(polar_to_cartesian(r,t)[1])).toEqual(-20);
});
});
describe("Raster to Cartesian Co-ordinate Transformation functions", function() {
it("Raster to cartesian", function() {
expect(raster_to_cartesian(0,0)).toEqual([-500,-500]);
expect(raster_to_cartesian(1000,1000)).toEqual([500,500]);
});
});
});
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());;
jasmine.getEnv().execute();