OWL
OptiX7 Wrapper Library
|
3D Linear Transform (3x3 Matrix) More...
#include <LinearSpace.h>
Public Types | |
using | scalar_t = typename T::scalar_t |
using | vector_t = T |
Public Member Functions | |
__both__ | LinearSpace3 () |
__both__ | LinearSpace3 (const LinearSpace3 &other) |
__both__ LinearSpace3 & | operator= (const LinearSpace3 &other) |
template<typename L1 > | |
__both__ | LinearSpace3 (const LinearSpace3< L1 > &s) |
__both__ | LinearSpace3 (const vector_t &vx, const vector_t &vy, const vector_t &vz) |
__both__ | LinearSpace3 (const QuaternionT< scalar_t > &q) |
__both__ | LinearSpace3 (const scalar_t &m00, const scalar_t &m01, const scalar_t &m02, const scalar_t &m10, const scalar_t &m11, const scalar_t &m12, const scalar_t &m20, const scalar_t &m21, const scalar_t &m22) |
__both__ const scalar_t | det () const |
__both__ const LinearSpace3 | adjoint () const |
__both__ const LinearSpace3 | inverse () const |
__both__ const LinearSpace3 | transposed () const |
__both__ const vector_t | row0 () const |
__both__ const vector_t | row1 () const |
__both__ const vector_t | row2 () const |
__both__ | LinearSpace3 (const ZeroTy &) |
Constants. More... | |
__both__ | LinearSpace3 (const OneTy &) |
Static Public Member Functions | |
static __both__ LinearSpace3 | scale (const vector_t &s) |
static __both__ LinearSpace3 | rotate (const vector_t &_u, const scalar_t &r) |
static __both__ QuaternionT< scalar_t > | rotation (const LinearSpace3 &a) |
Public Attributes | |
T | vx |
T | vy |
T | vz |
3D Linear Transform (3x3 Matrix)
using owl::common::LinearSpace3< T >::scalar_t = typename T::scalar_t |
using owl::common::LinearSpace3< T >::vector_t = T |
|
inline |
default matrix constructor
|
inline |
|
inline |
|
inline |
matrix construction from column vectors
|
inline |
construction from quaternion
|
inline |
matrix construction from row mayor data
|
inline |
Constants.
|
inline |
|
inline |
compute adjoint matrix
|
inline |
compute the determinant of the matrix
|
inline |
compute inverse matrix
|
inline |
|
inlinestatic |
return matrix for rotation around arbitrary axis
|
inlinestatic |
return quaternion for given rotation matrix
|
inline |
returns first row of matrix
|
inline |
returns second row of matrix
|
inline |
returns third row of matrix
|
inlinestatic |
return matrix for scaling
|
inline |
compute transposed matrix
T owl::common::LinearSpace3< T >::vx |
the column vectors of the matrix
T owl::common::LinearSpace3< T >::vy |
T owl::common::LinearSpace3< T >::vz |