aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/gfx3d/tests/test_matrix.html
blob: 9acf399eb6f8682767fb9d147c7800543ccd2276 (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
<head>
<title>Dojo 3D Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
	@import "../../../dojo/resources/dojo.css";
	@import "../../../dijit/tests/css/dijitTests.css";
</style>
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
<script type="text/javascript">

dojo.require("dojox.gfx3d");

mdebug = function(matrix){
	var m = dojox.gfx3d.matrix.normalize(matrix);
	console.debug("xx: " + m.xx + ", xy: " + m.xy + " | xz:" + m.xz + " | dx:" + m.dx);
	console.debug("yx: " + m.yx + ", yy: " + m.yy + " | yz:" + m.yz + " | dy:" + m.dy);
	console.debug("zx: " + m.zx + ", zy: " + m.zy + " | zz:" + m.zz + " | dz:" + m.dz);
};

pdebug = function(point){
	console.debug("x: " + point.x + ", y: " + point.y + ", z: " + point.z);
};

dojo.addOnLoad(function(){
	var m = dojox.gfx3d.matrix;
	var a = new m.Matrix3D();
	console.debug("identity");	
	mdebug(a);
	a = m.rotateXg(30);
	console.debug("rotateXg(30);");	
	mdebug(a);
	a = m.rotateYg(45);
	console.debug("rotateYg(45);");	
	mdebug(a);
	a = m.rotateZg(90);
	console.debug("rotateZg(90);");	
	mdebug(a);
	a = [new m.Matrix3D(), new m.Matrix3D(), new m.Matrix3D()];
	console.debug("identity");	
	mdebug(a);
	a = [m.rotateXg(30), m.rotateXg(-30)];
	console.debug("identity");	
	mdebug(a);
	var b = m.multiplyPoint(a, 10, 10, 10);
	pdebug(b);
	b = m.multiplyPoint(a, 10, 5, 10);
	pdebug(b);
	b = m.multiplyPoint(a, 10, 15, 5);
	pdebug(b);

	a = [m.scale(1,1,2), m.rotateXg(45)];
	console.debug("a = [m.scale(1,1,2), m.rotateXg(45)];");
	mdebug(a);
	a = [m.rotateXg(45), m.scale(1,1,2)];
	console.debug("a = [m.rotateXg(45), m.scale(1,1,2)];");
	mdebug(a);

	a = [m.scale(2,1,2), m.rotateYg(45)];
	console.debug("a = [m.scale(2,1,2), m.rotateYg(45)];");
	mdebug(a);
	a = [m.rotateYg(45), m.scale(2,1,2)];
	console.debug("a = [m.rotateYg(45), m.scale(2,1,2)];");
	mdebug(a);

	a = [m.scale(1,2,1), m.invert(m.rotateZg(45))];
	console.debug("[m.scale(1,2,1), m.invert(m.rotateZg(45))];");
	mdebug(a);
	a = [m.invert(m.rotateZg(45)), m.scale(1,2,1)];
	console.debug("a = [m.invert(m.rotateZg(45)), m.scale(1,2,1)];");
	mdebug(a);

	a = [a, m.invert(a)];
	console.debug("identity");	
	mdebug(a);

	a = 5;
	mdebug(a);
	a = [2, m.scale(2,1,3)];
	mdebug(a);
});

</script>
</head>
<body>
	<h1>dojox.gfx3d.matrix test</h1>
	<p>Please check the debug console for test results.</p>
</body>
</html>