forked from PixarAnimationStudios/OpenUSD
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmatrix.template.h
382 lines (317 loc) · 12.5 KB
/
matrix.template.h
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
{#
//
// Copyright 2016 Pixar
//
// Licensed under the Apache License, Version 2.0 (the "Apache License")
// with the following modification; you may not use this file except in
// compliance with the Apache License and the following modification to it:
// Section 6. Trademarks. is deleted and replaced with:
//
// 6. Trademarks. This License does not grant permission to use the trade
// names, trademarks, service marks, or product names of the Licensor
// and its affiliates, except as required to comply with Section 4(c) of
// the License and to reproduce the content of the NOTICE file.
//
// You may obtain a copy of the Apache License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the Apache License with the above modification is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the Apache License for the specific
// language governing permissions and limitations under the Apache License.
//
#}
#ifndef GF_{{ UPPER(MAT)[2:] }}_H
#define GF_{{ UPPER(MAT)[2:] }}_H
/// \file gf/matrix{{ SUFFIX }}.h
/// \ingroup group_gf_LinearAlgebra
#include "pxr/pxr.h"
#include "pxr/base/gf/api.h"
#include "pxr/base/gf/declare.h"
#include "pxr/base/gf/matrixData.h"
#include "pxr/base/gf/vec{{ SUFFIX }}.h"
#include "pxr/base/gf/traits.h"
{% block includes %}
{% endblock %}
#include <boost/functional/hash.hpp>
#include <iosfwd>
#include <vector>
PXR_NAMESPACE_OPEN_SCOPE
template <>
struct GfIsGfMatrix<class {{ MAT }}> { static const bool value = true; };
{% for S in SCALARS %}
class GfMatrix{{ DIM }}{{ S[0] }};
{% endfor %}
{% block forwardDeclarations %}
{% endblock %}
/// \class {{ MAT }}
/// \ingroup group_gf_LinearAlgebra
///
/// Stores a {{ DIM }}x{{ DIM }} matrix of \c {{ SCL }} elements. A basic type.
///
/// Matrices are defined to be in row-major order, so <c>matrix[i][j]</c>
/// indexes the element in the \e i th row and the \e j th column.
///
{% block classDocs %}{% endblock %}
class {{ MAT }}
{
public:
typedef {{ SCL }} ScalarType;
static const size_t numRows = {{ DIM }};
static const size_t numColumns = {{ DIM }};
/// Default constructor. Leaves the matrix component values undefined.
{{ MAT }}() {}
/// Constructor. Initializes the matrix from {{ DIM*DIM }} independent
/// \c {{ SCL }} values, specified in row-major order. For example,
/// parameter \e m10 specifies the value in row 1 and column 0.
{{ MAT }}({{ MATRIX("%(SCL)s m%%(i)s%%(j)s" % { 'SCL':SCL }, indent=15) }}) {
Set({{ MATRIX("m%(i)s%(j)s", indent=12) }});
}
/// Constructor. Initializes the matrix from a {{ DIM }}x{{ DIM }} array
/// of \c {{ SCL }} values, specified in row-major order.
{{ MAT }}(const {{ SCL }} m[{{ DIM }}][{{ DIM }}]) {
Set(m);
}
/// Constructor. Explicitly initializes the matrix to \e s times the
/// identity matrix.
explicit {{ MAT }}({{ SCL }} s) {
SetDiagonal(s);
}
{% block customDiagonalConstructors %}
{% endblock customDiagonalConstructors %}
/// Constructor. Explicitly initializes the matrix to diagonal form,
/// with the \e i th element on the diagonal set to <c>v[i]</c>.
explicit {{ MAT }}(const GfVec{{ SUFFIX }}& v) {
SetDiagonal(v);
}
{% for S in SCALARS %}
/// Constructor. Initialize the matrix from a vector of vectors of
/// {{ S }}. The vector is expected to be {{ DIM }}x{{ DIM }}. If it is
/// too big, only the first {{ DIM }} rows and/or columns will be used.
/// If it is too small, uninitialized elements will be filled in with
/// the corresponding elements from an identity matrix.
///
GF_API
explicit {{ MAT }}(const std::vector< std::vector<{{ S }}> >& v);
{% endfor %}
{% block customConstructors %}
{% endblock %}
{% if SCL == 'double' %}
/// This explicit constructor converts a "float" matrix to a "double" matrix.
GF_API
explicit {{ MAT }}(const class GfMatrix{{ DIM }}f& m);
{% endif %}
{% if SCL == 'float' %}
/// This explicit constructor converts a "double" matrix to a "float" matrix.
GF_API
explicit {{ MAT }}(const class GfMatrix{{ DIM }}d& m);
{% endif %}
/// Sets a row of the matrix from a Vec{{ DIM }}.
void SetRow(int i, const GfVec{{ SUFFIX }} & v) {
{{ LIST("_mtx[i][%(i)s] = v[%(i)s];", sep='\n ') }}
}
/// Sets a column of the matrix from a Vec{{ DIM }}.
void SetColumn(int i, const GfVec{{ SUFFIX }} & v) {
{{ LIST("_mtx[%(i)s][i] = v[%(i)s];", sep='\n ') }}
}
/// Gets a row of the matrix as a Vec{{ DIM }}.
GfVec{{ SUFFIX }} GetRow(int i) const {
return GfVec{{ SUFFIX }}({{ LIST("_mtx[i][%(i)s]") }});
}
/// Gets a column of the matrix as a Vec{{ DIM }}.
GfVec{{ SUFFIX }} GetColumn(int i) const {
return GfVec{{ SUFFIX }}({{ LIST("_mtx[%(i)s][i]") }});
}
/// Sets the matrix from {{ DIM*DIM }} independent \c {{ SCL }} values,
/// specified in row-major order. For example, parameter \e m10 specifies
/// the value in row 1 and column 0.
{{ MAT }}& Set({{ MATRIX("%(SCL)s m%%(i)s%%(j)s" % { 'SCL':SCL }, indent=20) }}) {
{{ MATRIX("_mtx[%(i)s][%(j)s] = m%(i)s%(j)s;", sep=" ", indent=8) }}
return *this;
}
/// Sets the matrix from a {{ DIM }}x{{ DIM }} array of \c {{ SCL }}
/// values, specified in row-major order.
{{ MAT }}& Set(const {{ SCL }} m[{{ DIM }}][{{ DIM }}]) {
{{ MATRIX("_mtx[%(i)s][%(j)s] = m[%(i)s][%(j)s];", sep="\n ") }}
return *this;
}
/// Sets the matrix to the identity matrix.
{{ MAT }}& SetIdentity() {
return SetDiagonal(1);
}
/// Sets the matrix to zero.
{{ MAT }}& SetZero() {
return SetDiagonal(0);
}
/// Sets the matrix to \e s times the identity matrix.
GF_API
{{ MAT }}& SetDiagonal({{ SCL }} s);
/// Sets the matrix to have diagonal (<c>{{ LIST("v[%(i)s]") }}</c>).
GF_API
{{ MAT }}& SetDiagonal(const GfVec{{ SUFFIX }}&);
/// Fills a {{ DIM }}x{{ DIM }} array of \c {{ SCL }} values with the values in
/// the matrix, specified in row-major order.
GF_API
{{ SCL }}* Get({{ SCL }} m[{{ DIM }}][{{ DIM }}]) const;
/// Returns vector components as an array of \c {{ SCL }} values.
{{ SCL }}* GetArray() {
return _mtx.GetData();
}
/// Returns vector components as a const array of \c {{ SCL }} values.
const {{ SCL }}* GetArray() const {
return _mtx.GetData();
}
/// Accesses an indexed row \e i of the matrix as an array of {{ DIM }} \c
/// {{ SCL }} values so that standard indexing (such as <c>m[0][1]</c>)
/// works correctly.
{{ SCL }}* operator [](int i) { return _mtx[i]; }
/// Accesses an indexed row \e i of the matrix as an array of {{ DIM }} \c
/// {{ SCL }} values so that standard indexing (such as <c>m[0][1]</c>)
/// works correctly.
const {{ SCL }}* operator [](int i) const { return _mtx[i]; }
/// Hash.
friend inline size_t hash_value({{ MAT }} const &m) {
int nElems = {{ DIM }} * {{ DIM }};
size_t h = 0;
const {{ SCL }} *p = m.GetArray();
while (nElems--)
boost::hash_combine(h, *p++);
return h;
}
/// Tests for element-wise matrix equality. All elements must match
/// exactly for matrices to be considered equal.
GF_API
bool operator ==(const GfMatrix{{ DIM }}d& m) const;
/// Tests for element-wise matrix equality. All elements must match
/// exactly for matrices to be considered equal.
GF_API
bool operator ==(const GfMatrix{{ DIM }}f& m) const;
/// Tests for element-wise matrix inequality. All elements must match
/// exactly for matrices to be considered equal.
bool operator !=(const GfMatrix{{ DIM }}d& m) const {
return !(*this == m);
}
/// Tests for element-wise matrix inequality. All elements must match
/// exactly for matrices to be considered equal.
bool operator !=(const GfMatrix{{ DIM }}f& m) const {
return !(*this == m);
}
/// Returns the transpose of the matrix.
GF_API
{{ MAT }} GetTranspose() const;
/// Returns the inverse of the matrix, or FLT_MAX * SetIdentity() if the
/// matrix is singular. (FLT_MAX is the largest value a \c float can have,
/// as defined by the system.) The matrix is considered singular if the
/// determinant is less than or equal to the optional parameter \e eps. If
/// \e det is non-null, <c>*det</c> is set to the determinant.
GF_API
{{ MAT }} GetInverse(double* det = NULL, double eps = 0) const;
/// Returns the determinant of the matrix.
GF_API
double GetDeterminant() const;
{% block customFunctions %}
{% endblock customFunctions %}
/// Post-multiplies matrix \e m into this matrix.
GF_API
{{ MAT }}& operator *=(const {{ MAT }}& m);
/// Multiplies the matrix by a {{ SCL }}.
GF_API
{{ MAT }}& operator *=(double);
/// Returns the product of a matrix and a {{ SCL }}.
friend {{ MAT }} operator *(const {{ MAT }}& m1, double d)
{
{{ MAT }} m = m1;
return m *= d;
}
///
// Returns the product of a matrix and a {{ SCL }}.
friend {{ MAT }} operator *(double d, const {{ MAT }}& m)
{
return m * d;
}
/// Adds matrix \e m to this matrix.
GF_API
{{ MAT }}& operator +=(const {{ MAT }}& m);
/// Subtracts matrix \e m from this matrix.
GF_API
{{ MAT }}& operator -=(const {{ MAT }}& m);
/// Returns the unary negation of matrix \e m.
GF_API
friend {{ MAT }} operator -(const {{ MAT }}& m);
/// Adds matrix \e m2 to \e m1
friend {{ MAT }} operator +(const {{ MAT }}& m1, const {{ MAT }}& m2)
{
{{ MAT }} tmp(m1);
tmp += m2;
return tmp;
}
/// Subtracts matrix \e m2 from \e m1.
friend {{ MAT }} operator -(const {{ MAT }}& m1, const {{ MAT }}& m2)
{
{{ MAT }} tmp(m1);
tmp -= m2;
return tmp;
}
/// Multiplies matrix \e m1 by \e m2.
friend {{ MAT }} operator *(const {{ MAT }}& m1, const {{ MAT }}& m2)
{
{{ MAT }} tmp(m1);
tmp *= m2;
return tmp;
}
/// Divides matrix \e m1 by \e m2 (that is, <c>m1 * inv(m2)</c>).
friend {{ MAT }} operator /(const {{ MAT }}& m1, const {{ MAT }}& m2)
{
return(m1 * m2.GetInverse());
}
/// Returns the product of a matrix \e m and a column vector \e vec.
friend inline GfVec{{ SUFFIX }} operator *(const {{ MAT }}& m, const GfVec{{ SUFFIX }}& vec) {
return GfVec{{ SUFFIX }}(
{%- for ROW in range(DIM) -%}
{{ LIST("vec[%%(i)s] * m._mtx[%(ROW)s][%%(i)s]" % {'ROW':ROW}, sep=" + ") }}
{%- if not loop.last %}{{ ",\n " }}{% endif %}
{% endfor %});
}
/// Returns the product of row vector \e vec and a matrix \e m.
friend inline GfVec{{ SUFFIX }} operator *(const GfVec{{ SUFFIX }} &vec, const {{ MAT }}& m) {
return GfVec{{ SUFFIX }}(
{%- for COL in range(DIM) -%}
{{ LIST("vec[%%(i)s] * m._mtx[%%(i)s][%(COL)s]" % {'COL':COL}, sep=" + ") }}
{%- if not loop.last %}{{ ",\n " }}{% endif %}
{% endfor %});
}
{% if SCL == 'double' %}
/// Returns the product of a matrix \e m and a column vector \e vec.
/// Note that the return type is a \c GfVec{{ DIM }}f.
GF_API
friend GfVec{{ DIM }}f operator *(const {{ MAT }}& m, const GfVec{{ DIM }}f& vec);
/// Returns the product of row vector \e vec and a matrix \e m.
/// Note that the return type is a \c GfVec{{ DIM }}f.
GF_API
friend GfVec{{ DIM }}f operator *(const GfVec{{ DIM }}f &vec, const {{ MAT }}& m);
{% endif %}
{% block customXformFunctions %}
{% endblock customXformFunctions %}
private:
/// Matrix storage, in row-major order.
GfMatrixData<{{ SCL }}, {{ DIM }}, {{ DIM }}> _mtx;
// Friend declarations
{% if SCL == 'float' %}
friend class GfMatrix{{ DIM }}d;
{% endif %}
{% if SCL == 'double' %}
friend class GfMatrix{{ DIM }}f;
{% endif %}
};
/// Tests for equality within a given tolerance, returning \c true if the
/// difference between each component of the matrix is less than or equal
/// to \p tolerance, or false otherwise.
GF_API
bool GfIsClose({{ MAT }} const &m1, {{ MAT }} const &m2, double tolerance);
/// Output a {{ MAT }}
/// \ingroup group_gf_DebuggingOutput
GF_API std::ostream& operator<<(std::ostream &, {{ MAT }} const &);
PXR_NAMESPACE_CLOSE_SCOPE
#endif // GF_{{ UPPER(MAT)[2:] }}_H