-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathIMatrix3.java
215 lines (175 loc) · 5.9 KB
/
IMatrix3.java
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*---
iGeo - http://igeo.jp
Copyright (c) 2002-2013 Satoru Sugihara
This file is part of iGeo.
iGeo is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3.
iGeo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with iGeo. If not, see <http://www.gnu.org/licenses/>.
---*/
package igeo;
/**
Class of 3x3 numerical matrix.
@author Satoru Sugihara
*/
public class IMatrix3 extends IMatrix implements IMatrix3I{
public IMatrix3(){
super(3,3);
setZero();
}
public IMatrix3(double v11, double v12, double v13,
double v21, double v22, double v23,
double v31, double v32, double v33){
super(3,3);
set(v11,v12,v13,
v21,v22,v23,
v31,v32,v33);
}
public IMatrix3(IMatrix3 m){
super(3,3);
set(m.val);
}
public IMatrix3 get(){ return this; }
public IMatrix3 set(double v11, double v12, double v13,
double v21, double v22, double v23,
double v31, double v32, double v33){
/*
double[][] v = new double[3][3];
v[0][0] = v11; v[0][1] = v12; v[0][2] = v13;
v[1][0] = v21; v[1][1] = v22; v[1][2] = v23;
v[2][0] = v31; v[2][1] = v32; v[2][2] = v33;
set(v);
*/
val[0][0] = v11; val[0][1] = v12; val[0][2] = v13;
val[1][0] = v21; val[1][1] = v22; val[1][2] = v23;
val[2][0] = v31; val[2][1] = v32; val[2][2] = v33;
return this;
}
public IMatrix3 set(IDoubleI v11, IDoubleI v12, IDoubleI v13,
IDoubleI v21, IDoubleI v22, IDoubleI v23,
IDoubleI v31, IDoubleI v32, IDoubleI v33){
return set(v11.x(),v12.x(),v13.x(),
v21.x(),v22.x(),v23.x(),
v31.x(),v32.x(),v33.x());
}
public IMatrix3 dup(){ return new IMatrix3(this); }
public IMatrix3 cp(){ return dup(); }
public double determinant(){
return val[0][0]*det(val[1][1],val[1][2],val[2][1],val[2][2])
+val[0][1]*det(val[1][2],val[1][0],val[2][2],val[2][0])
+val[0][2]*det(val[1][0],val[1][1],val[2][0],val[2][1]);
}
public static double determinant(double v00, double v01, double v02,
double v10, double v11, double v12,
double v20, double v21, double v22){
return v00*det(v11,v12,v21,v22) +v01*det(v12,v10,v22,v20) +v02*det(v10,v11,v20,v21);
}
public /*void*/ IMatrix3 invert(){
double det = determinant();
set(
val[1][1]*val[2][2] - val[1][2]*val[2][1],
val[0][2]*val[2][1] - val[0][1]*val[2][2],
val[0][1]*val[1][2] - val[0][2]*val[1][1],
val[1][2]*val[2][0] - val[1][0]*val[2][2],
val[0][0]*val[2][2] - val[0][2]*val[2][0],
val[0][2]*val[1][0] - val[0][0]*val[1][2],
val[1][0]*val[2][1] - val[1][1]*val[2][0],
val[0][1]*val[2][0] - val[0][0]*val[2][1],
val[0][0]*val[1][1] - val[0][1]*val[1][0]
);
div(det);
return this;
}
/**
m is applied from right side and update the content of this without
creating new instance. it returns itself.
*/
public IMatrix3 mul(IMatrix3 m){
double v1, v2, v3;
for(int i=0; i<3; i++){ // row
//for(int j=0; j<3; j++){ // column
v1=0; v2=0; v3=0;
for(int k=0; k<3; k++){
v1+=val[i][k]*m.val[k][0];
v2+=val[i][k]*m.val[k][1];
v3+=val[i][k]*m.val[k][2];
}
val[i][0]=v1;
val[i][1]=v2;
val[i][2]=v3;
}
return this;
/*
IMatrix3 retval = new IMatrix3();
for(int i=0; i<rowNum; i++){
for(int j=0; j<m.columnNum; j++){
retval.val[i][j] = 0;
for(int k=0; k<columnNum; k++){
retval.val[i][j] += val[i][k]*m.val[k][j];
}
}
}
return retval;
*/
}
public IMatrix3 mul(IMatrix3I m){ return mul(m.get()); }
/** vector is treated as vertical vector */
public IVec mul(IVecI v){ return mul(v.get()); }
/** vector is treated as vertical vector */
public IVec mul(IVec v){
IVec ret = new IVec();
ret.x = val[0][0]*v.x+val[0][1]*v.y+val[0][2]*v.z;
ret.y = val[1][0]*v.x+val[1][1]*v.y+val[1][2]*v.z;
ret.z = val[2][0]*v.x+val[2][1]*v.y+val[2][2]*v.z;
return ret;
}
/** vector is treated as vertical vector */
public IVec2 mul(IVec2I v){ return mul(v.get()); }
/** vector is treated as vertical vector */
public IVec2 mul(IVec2 v){
IVec2 ret = new IVec2();
ret.x = val[0][0]*v.x+val[0][1]*v.y+val[0][2];
ret.y = val[1][0]*v.x+val[1][1]*v.y+val[1][2];
return ret;
}
public static IMatrix3 getXRotation(double angle){
return new IMatrix3(1, 0, 0,
0, Math.cos(angle), -Math.sin(angle),
0, Math.sin(angle), Math.cos(angle));
}
public static IMatrix3 getYRotation(double angle){
return new IMatrix3(Math.cos(angle), 0, Math.sin(angle),
0, 1, 0,
-Math.sin(angle), 0, Math.cos(angle));
}
public static IMatrix3 getZRotation(double angle){
return new IMatrix3(Math.cos(angle), -Math.sin(angle), 0,
Math.sin(angle), Math.cos(angle), 0,
0, 0, 1);
}
public static IMatrix3 getRotation(IVec axis, double angle){
IVec a = axis.dup().unit();
double s = Math.sin(angle);
double c = Math.cos(angle);
double ic = 1-c;
return new IMatrix3
(ic*a.x*a.x+c, a.x*a.y*ic-a.z*s, a.x*a.z*ic+a.y*s,
a.x*a.y*ic+a.z*s, a.y*a.y*ic+c, a.y*a.z*ic-a.x*s,
a.x*a.z*ic-a.y*s, a.y*a.z*ic+a.x*s, a.z*a.z*ic+c);
}
public static IMatrix3 getTranslate(double x, double y){
return new IMatrix3(1,0,x,
0,1,y,
0,0,1);
}
public static IMatrix3 getTranslate(IVec p){
return new IMatrix3(1,0,p.x,
0,1,p.y,
0,0,1);
}
}