A general linear transform using homogeneous coordinates to perform rotation, scaling, shear and translation.
More...
|
| AffineMap () |
|
| AffineMap (const Mat3d &m) |
|
| AffineMap (const Mat4d &m) |
|
| AffineMap (const AffineMap &other) |
|
| AffineMap (const AffineMap &first, const AffineMap &second) |
| constructor that merges the matrixes for two affine maps More...
|
|
| ~AffineMap () |
|
MapBase::Ptr | copy () const |
| Return a MapBase::Ptr to a deep copy of this map. More...
|
|
Name | type () const |
| Return the name of this map's concrete type (e.g., "AffineMap" ). More...
|
|
bool | isLinear () const |
| Return true (an AffineMap is always linear). More...
|
|
bool | hasUniformScale () const |
| Return false ( test if this is unitary with translation ) More...
|
|
virtual bool | isEqual (const MapBase &other) const |
| Return true if this map is equal to the given map. More...
|
|
bool | operator== (const AffineMap &other) const |
|
bool | operator!= (const AffineMap &other) const |
|
AffineMap & | operator= (const AffineMap &other) |
|
Vec3d | applyMap (const Vec3d &in) const |
| Return the image of in under the map. More...
|
|
Vec3d | applyInverseMap (const Vec3d &in) const |
| Return the pre-image of in under the map. More...
|
|
Vec3d | applyIJT (const Vec3d &in, const Vec3d &) const |
| Return the transpose of the inverse Jacobian of the map applied to in. More...
|
|
Vec3d | applyIJT (const Vec3d &in) const |
| Return the transpose of the inverse Jacobian of the map applied to in . More...
|
|
Mat3d | applyIJC (const Mat3d &m) const |
| Return the Jacobian Curvature: zero for a linear map. More...
|
|
Mat3d | applyIJC (const Mat3d &in, const Vec3d &, const Vec3d &) const |
|
double | determinant (const Vec3d &) const |
| Return the determinant of the Jacobian, ignores argument. More...
|
|
double | determinant () const |
| Return the determinant of the Jacobian. More...
|
|
OPENVDB_DEPRECATED Vec3d | voxelDimensions () const |
|
OPENVDB_DEPRECATED Vec3d | voxelDimensions (const Vec3d &) const |
|
bool | isIdentity () const |
| Return true if the underlying matrix is approximately an identity. More...
|
|
bool | isDiagonal () const |
| Return true if the underylying matrix is diagonal. More...
|
|
bool | isScale () const |
| Return true if the map is equivalent to a ScaleMap. More...
|
|
bool | isScaleTranslate () const |
| Return true if the map is equivalent to a ScaleTranslateMap. More...
|
|
void | read (std::istream &is) |
| read serialization More...
|
|
void | write (std::ostream &os) const |
| write serialization More...
|
|
std::string | str () const |
| string serialization, useful for debugging More...
|
|
boost::shared_ptr
< FullyDecomposedMap > | createDecomposedMap () |
| on-demand decomposition of the affine map More...
|
|
AffineMap::Ptr | getAffineMap () const |
| Return AffineMap::Ptr to a deep copy of the current AffineMap. More...
|
|
AffineMap::Ptr | inverse () const |
| Return AffineMap::Ptr to the inverse of this map. More...
|
|
OPENVDB_DEPRECATED void | accumRotation (Axis axis, double radians) |
|
OPENVDB_DEPRECATED void | accumScale (const Vec3d &v) |
|
OPENVDB_DEPRECATED void | accumTranslation (const Vec3d &v) |
|
OPENVDB_DEPRECATED void | accumShear (Axis axis0, Axis axis1, double shear) |
|
OPENVDB_DEPRECATED MapBase::Ptr | rotate (double radians, Axis axis=X_AXIS) const |
|
OPENVDB_DEPRECATED MapBase::Ptr | translate (const Vec3d &t) const |
|
OPENVDB_DEPRECATED MapBase::Ptr | scale (const Vec3d &s) const |
|
OPENVDB_DEPRECATED MapBase::Ptr | shear (double shear, Axis axis0, Axis axis1) const |
|
Mat4d | getMat4 () const |
| Return the matrix representation of this AffineMap. More...
|
|
const Mat4d & | getConstMat4 () const |
|
const Mat3d & | getConstJacobianInv () const |
|
template<typename MapT > |
bool | isType () const |
| Return true if this map is of concrete type MapT (e.g., AffineMap). More...
|
|
|
Vec3d | voxelSize () const |
| Return the lengths of the images of the segments (0,0,0)-(1,0,0), (0,0,0)-(0,1,0) and (0,0,0)-(0,0,1). More...
|
|
Vec3d | voxelSize (const Vec3d &) const |
| Return the lengths of the images of the segments (0,0,0)-(1,0,0), (0,0,0)-(0,1,0) and (0,0,0)-(0,0,1). More...
|
|
|
void | accumPreRotation (Axis axis, double radians) |
| Methods that modify the existing affine map by pre-applying the given operation. More...
|
|
void | accumPreScale (const Vec3d &v) |
| Methods that modify the existing affine map by pre-applying the given operation. More...
|
|
void | accumPreTranslation (const Vec3d &v) |
| Methods that modify the existing affine map by pre-applying the given operation. More...
|
|
void | accumPreShear (Axis axis0, Axis axis1, double shear) |
| Methods that modify the existing affine map by pre-applying the given operation. More...
|
|
|
void | accumPostRotation (Axis axis, double radians) |
| Methods that modify the existing affine map by post-applying the given operation. More...
|
|
void | accumPostScale (const Vec3d &v) |
| Methods that modify the existing affine map by post-applying the given operation. More...
|
|
void | accumPostTranslation (const Vec3d &v) |
| Methods that modify the existing affine map by post-applying the given operation. More...
|
|
void | accumPostShear (Axis axis0, Axis axis1, double shear) |
| Methods that modify the existing affine map by post-applying the given operation. More...
|
|
|
MapBase::Ptr | preRotate (double radians, Axis axis=X_AXIS) const |
| Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation. More...
|
|
MapBase::Ptr | preTranslate (const Vec3d &t) const |
| Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation. More...
|
|
MapBase::Ptr | preScale (const Vec3d &s) const |
| Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation. More...
|
|
MapBase::Ptr | preShear (double shear, Axis axis0, Axis axis1) const |
| Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation. More...
|
|
|
MapBase::Ptr | postRotate (double radians, Axis axis=X_AXIS) const |
| Return a MapBase::Ptr to a new map that is the result of postfixing the appropraite operation. More...
|
|
MapBase::Ptr | postTranslate (const Vec3d &t) const |
| Return a MapBase::Ptr to a new map that is the result of postfixing the appropraite operation. More...
|
|
MapBase::Ptr | postScale (const Vec3d &s) const |
| Return a MapBase::Ptr to a new map that is the result of postfixing the appropraite operation. More...
|
|
MapBase::Ptr | postShear (double shear, Axis axis0, Axis axis1) const |
| Return a MapBase::Ptr to a new map that is the result of postfixing the appropraite operation. More...
|
|
A general linear transform using homogeneous coordinates to perform rotation, scaling, shear and translation.