-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcube.html
142 lines (99 loc) · 6 KB
/
cube.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=UTF-8>
<link rel="icon" href="data:;base64,=">
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script src="webgl-utils.js"></script>
<script src="gl-matrix-min.js"></script>
<script src="trackball.js"></script>
<script src="cube.js"></script>
<title>Rational trackball</title>
</head>
<body onload="main();">
<h1>Rationale</h1>
<p>For any non-null complex number \(z\), it is possible to create an other complex number of modulus one:</p>
$$ \frac{z^2}{z\bar{z}} $$
<p>In the particular case \(z = 1 + ti\), an algebraic parametrization of the circle appears:</p>
$$ M(t) = (\frac{1 - t^2}{1 + t^2}, \frac{2t}{1+t^2}) $$
<p>Norman Wildberger suggests such transformation can and should be used to
perform rotations in the plane, instead of using trigonometric
functions (<a href="https://en.wikipedia.org/wiki/Rational_trigonometry">wikipedia article</a>).</p>
<p>Can it also be done in 3D space? That is, for any two non-colinear vectors \(\mathbf{u}\) and \(\mathbf{v}\), how can we algebraically parametrize rotations in the \((\mathbf{u},\mathbf{v})\) plane?
<p>We first write:</p>
$$\mathbf{uv} = \mathbf{u}\cdot\mathbf{v} + \mathbf{u}\wedge\mathbf{v} $$
<p>It is known, notably as pointed out by <a href="https://en.wikipedia.org/wiki/David_Hestenes">David Hestenes</a>, that \(\mathbf{uv}\) behaves as a complex number, with \(\mathbf{u}\cdot\mathbf{v}\) being the real part and \(\mathbf{u}\wedge\mathbf{v}\) the imaginary one.</p>
<p>Thus we can verify that:</p>
$$ R = \frac{(\mathbf{uv})^2}{\mathbf{uvvu}} $$
<p>is of modulus one.</p>
<p>Therefore we can rotate any vector \(\mathbf{x}\) with a sandwich product:</p>
$$ \mathcal{R}(\mathbf{x}) = \tilde{R}\mathbf{x}R $$
<p>If we do it for three vectors of an orthonormal basis, we get the coefficients of the orthogonal matrix representation.</p>
<h1>Example</h1>
<p>Say we are visualizing an object through a computer graphics interface such as WebGL. We want to write some code for rotating the object with the mouse. The mouse will move on the screen and we want to interpret this two-dimensional motion as a rotation.</p>
<p>For simplicity, we shall reason in the Normalized Device Coordinates (see for instance <a href="http://www.songho.ca/opengl/gl_projectionmatrix.html">this</a>) with \((\mathbf{i},\mathbf{j},\mathbf{k})\)
as the orthonormal basis.</p>
<p>The motion of the mouse is thus:</p>
$$ \mathbf{m} = x \mathbf{i} + y \mathbf{j} $$
<p>We want to parametrize rotations that occur in the plane</p>
$$ (\mathbf{k}, \mathbf{m}) $$
<p>If we want to obtain a similar expression as above, we should rather use the following basis:</p>
$$ (\mathbf{u},\mathbf{v}) = (-\mathbf{k}, -\mathbf{k} + \mathbf{m}) $$
<p>Then we have:</p>
$$ \mathbf{uv} = 1 + \mathbf{m}\wedge\mathbf{k} = 1 + x\mathbf{i}\wedge\mathbf{k} + y\mathbf{j}\wedge\mathbf{k} $$
$$ (\mathbf{uv})^2 = 1 - x^2 - y^2 + 2 x\mathbf{i}\wedge\mathbf{k} + 2 y\mathbf{j}\wedge\mathbf{k} $$
$$ \mathbf{uvvu} = 1 + x^2 + y^2 $$
<p>Let's note:</p>
$$ q = 1 + x^2 + y^2 $$
<p>and</p>
$$ s = 1 - x^2 - y^2 $$
<p>Then</p>
$$ R = \frac{s + 2 x\mathbf{i}\wedge\mathbf{k} + 2 y\mathbf{j}\wedge\mathbf{k}}{q} $$
$$ \begin{align*}
q^2\tilde{R}\mathbf{i}R
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})\mathbf{i}(s + 2 x\mathbf{i}\wedge\mathbf{k} + 2 y\mathbf{j}\wedge\mathbf{k})\\
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})(s\mathbf{i} + 2 x\mathbf{k} + 2 y\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k})\\
& =
s^2\mathbf{i} + 2s x\mathbf{k} + 2s y\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k}
+ 2s x\mathbf{k} - 4 x^2\mathbf{i} - 4 xy\mathbf{j}
- 2s y\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k} - 4xy\mathbf{j} + 4y^2\mathbf{i}\\
& = (s^2 - 4 (x^2 - y^2))\mathbf{i} - 8 xy\mathbf{j} + 4s x\mathbf{k}
\end{align*}$$
$$\begin{align*}
q^2\tilde{R}\mathbf{j}R
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})\mathbf{j}(s + 2 x\mathbf{i}\wedge\mathbf{k} + 2 y\mathbf{j}\wedge\mathbf{k})\\
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})(s\mathbf{j} - 2x\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k} + 2y\mathbf{k})\\
& = s^2\mathbf{j} - 2sx\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k} + 2sy\mathbf{k}
+2sx\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k} +4x^2\mathbf{j} -4xy\mathbf{i}
+2sy\mathbf{k} - 4xy\mathbf{i} - 4y^2\mathbf{j}\\
& =-8xy\mathbf{i} + (s^2 + 4(x^2 - y^2))\mathbf{j} + 4sy\mathbf{k}
\end{align*}$$
$$\begin{align*}
q^2\tilde{R}\mathbf{k}R
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})\mathbf{k}(s + 2 x\mathbf{i}\wedge\mathbf{k} + 2 y\mathbf{j}\wedge\mathbf{k})\\
& = (s - 2 x\mathbf{i}\wedge\mathbf{k} - 2 y\mathbf{j}\wedge\mathbf{k})(s\mathbf{k} - 2 x\mathbf{i} - 2 y\mathbf{j})\\
& = s^2\mathbf{k} - 2sx\mathbf{i} - 2sy\mathbf{j}
-2sx\mathbf{i} -4x^2\mathbf{k} - 4xy\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k}
-2sy\mathbf{j}+4xy\mathbf{i}\wedge\mathbf{j}\wedge\mathbf{k} - 4y^2\mathbf{k}\\
& = -4sx\mathbf{i} - 4sy\mathbf{j} + (s^2 - 4(x^2 + y^2))\mathbf{k}
\end{align*}$$
<p>Which gives the matrix:</p>
$$\frac{1}{q^2}\begin{pmatrix}
s^2 + 4(y^2 - x^2) & -8xy & -4sx\\
-8xy & s^2 + 4(x^2 - y^2) & -4sy\\
4sx & 4sy & s^2 - 4(x^2 + y^2)
\end{pmatrix}$$
<h1>WebGL implementation</h1>
<p>Below is a colored cube. It's the same that can be found on <a href=http://www.tutorialspoint.com/webgl/>this WebGL tutorial</a>.
You should be able to rotate it with your mouse.</p>
<canvas id="canvas" width="800" height="600" style="border:1px solid black;">
Apparently your browser does not support HTML5 canvas.
</canvas>
<pre id=log></pre>
<p>In this code there is no trigonometric function (no
<code>Math.cos</code> nor <code>Math.sin</code>) and no
<code>Math.sqrt</code> call whatsoever.</p>
</body>
</html>