OWL
OptiX7 Wrapper Library
|
2D Linear Transform (2x2 Matrix) More...
#include <LinearSpace.h>
Public Types | |
using | vector_t = T |
using | scalar_t = typename T::scalar_t |
Public Member Functions | |
LinearSpace2 ()=default | |
__both__ | LinearSpace2 (const LinearSpace2 &other) |
__both__ LinearSpace2 & | operator= (const LinearSpace2 &other) |
template<typename L1 > | |
__both__ | LinearSpace2 (const LinearSpace2< L1 > &s) |
__both__ | LinearSpace2 (const vector_t &vx, const vector_t &vy) |
__both__ | LinearSpace2 (const scalar_t &m00, const scalar_t &m01, const scalar_t &m10, const scalar_t &m11) |
__both__ const scalar_t | det () const |
__both__ const LinearSpace2 | adjoint () const |
__both__ const LinearSpace2 | inverse () const |
__both__ const LinearSpace2 | transposed () const |
const vector_t | row0 () const |
const vector_t | row1 () const |
__both__ | LinearSpace2 (ZeroTy) |
Constants. More... | |
__both__ | LinearSpace2 (OneTy) |
LinearSpace2 | orthogonal () const |
Static Public Member Functions | |
static LinearSpace2 | scale (const vector_t &s) |
static LinearSpace2 | rotate (const scalar_t &r) |
Public Attributes | |
vector_t | vx |
vector_t | vy |
2D Linear Transform (2x2 Matrix)
using owl::common::LinearSpace2< T >::scalar_t = typename T::scalar_t |
using owl::common::LinearSpace2< T >::vector_t = T |
|
inlinedefault |
default matrix constructor
|
inline |
|
inline |
|
inline |
matrix construction from column vectors
|
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 |
|
inline |
return closest orthogonal matrix (i.e. a general rotation including reflection)
|
inlinestatic |
return matrix for rotation
|
inline |
returns first row of matrix
|
inline |
returns second row of matrix
|
inlinestatic |
return matrix for scaling
|
inline |
compute transposed matrix
vector_t owl::common::LinearSpace2< T >::vx |
the column vectors of the matrix
vector_t owl::common::LinearSpace2< T >::vy |