OpenVDB
1.1.0
|
A specialized Affine transform that scales along the principal axis the scaling need not be uniform in the three-directions. More...
#include <Maps.h>
Inherits MapBase.
Inherited by UniformScaleMap.
Public Types | |
typedef boost::shared_ptr < ScaleMap > | Ptr |
typedef boost::shared_ptr < const ScaleMap > | ConstPtr |
typedef Ptr(* | MapFactory )() |
Public Member Functions | |
ScaleMap () | |
ScaleMap (const Vec3d &scale) | |
ScaleMap (const ScaleMap &other) | |
~ScaleMap () | |
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 (a ScaleMap is always linear). More... | |
bool | hasUniformScale () const |
Return true if the values have the same magitude (eg. -1, 1, -1 would be a rotation). More... | |
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 &in) 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 product of the scale values, ignores argument. More... | |
double | determinant () const |
Return the product of the scale values. More... | |
const Vec3d & | getScale () const |
Return the scale values that define the map. More... | |
const Vec3d & | getInvScaleSqr () const |
Return the square of the scale. Used to optimize some finite difference calculations. More... | |
const Vec3d & | getInvTwiceScale () const |
Return 1/(2 scale). Used to optimize some finite difference calculations. More... | |
const Vec3d & | getInvScale () const |
Return 1/(scale) 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 debuging More... | |
virtual bool | isEqual (const MapBase &other) const |
Return true if this map is equal to the given map. More... | |
bool | operator== (const ScaleMap &other) const |
bool | operator!= (const ScaleMap &other) const |
AffineMap::Ptr | getAffineMap () const |
Return a AffineMap equivalent to this map. More... | |
template<typename MapT > | |
bool | isType () const |
Return true if this map is of concrete type MapT (e.g., AffineMap). More... | |
Vec3d | voxelSize () const |
Returns the lengths of the images of the segments ![]() ![]() ![]() | |
Vec3d | voxelSize (const Vec3d &) const |
Returns the lengths of the images of the segments ![]() ![]() ![]() | |
MapBase::Ptr | preRotate (double radians, Axis axis) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
MapBase::Ptr | preTranslate (const Vec3d &tr) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
MapBase::Ptr | preScale (const Vec3d &v) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. 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 to the existing map. More... | |
MapBase::Ptr | postRotate (double radians, Axis axis) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
MapBase::Ptr | postTranslate (const Vec3d &tr) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
MapBase::Ptr | postScale (const Vec3d &v) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
MapBase::Ptr | postShear (double shear, Axis axis0, Axis axis1) const |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map. More... | |
Static Public Member Functions | |
static MapBase::Ptr | create () |
Return a MapBase::Ptr to a new ScaleMap. More... | |
static bool | isRegistered () |
static void | registerMap () |
static Name | mapType () |
Static Protected Member Functions | |
template<typename MapT > | |
static bool | isEqualBase (const MapT &self, const MapBase &other) |
A specialized Affine transform that scales along the principal axis the scaling need not be uniform in the three-directions.
|
inherited |
|
inline |
|
inline |
Return the Jacobian Curvature: zero for a linear map.
Implements MapBase.
Implements MapBase.
Return the transpose of the inverse Jacobian of the map applied to in.
Ignores second argument
Implements MapBase.
Return the transpose of the inverse Jacobian of the map applied to in
.
Implements MapBase.
Return the pre-image of in
under the map.
Implements MapBase.
Return the image of in
under the map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a deep copy of this map.
Implements MapBase.
Reimplemented in UniformScaleMap.
|
inlinestatic |
Return a MapBase::Ptr to a new ScaleMap.
|
inlinevirtual |
Return the product of the scale values, ignores argument.
Implements MapBase.
|
inlinevirtual |
Return the product of the scale values.
Implements MapBase.
|
inlinevirtual |
|
inline |
Return 1/(scale)
|
inline |
Return the square of the scale. Used to optimize some finite difference calculations.
|
inline |
Return 1/(2 scale). Used to optimize some finite difference calculations.
|
inline |
Return the scale values that define the map.
|
inlinevirtual |
Return true
if the values have the same magitude (eg. -1, 1, -1 would be a rotation).
Implements MapBase.
|
inlinevirtual |
Return true
if this map is equal to the given map.
Implements MapBase.
Reimplemented in UniformScaleMap.
|
inlinestaticprotectedinherited |
|
inlinevirtual |
|
inlinestatic |
|
inlineinherited |
Return true
if this map is of concrete type MapT
(e.g., AffineMap).
|
inlinestatic |
|
inline |
|
inline |
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
Reimplemented in UniformScaleMap.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
|
inlinevirtual |
Return a MapBase::Ptr to a new map that is the result of prepending the appropraite operation to the existing map.
Implements MapBase.
Reimplemented in UniformScaleMap.
|
inlinevirtual |
read serialization
Implements MapBase.
|
inlinestatic |
|
inlinevirtual |
string serialization, useful for debuging
Implements MapBase.
|
inlinevirtual |
Return the name of this map's concrete type (e.g., "AffineMap"
).
Implements MapBase.
Reimplemented in UniformScaleMap.
|
inlinevirtual |
Returns the lengths of the images of the segments ,
,
this is equivalent to the absolute values of the scale values.
Implements MapBase.
Returns the lengths of the images of the segments ,
,
this is equivalent to the absolute values of the scale values.
Implements MapBase.
|
inlinevirtual |
write serialization
Implements MapBase.