A transform at a single point in time.
This is the result of evaluating an AnimTransform for a particular
time.
|
|
|
|
a new object with type S, a subtype of T
|
|
|
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
|
|
CMatrix4
|
getInverseMatrix(self)
Gets the inverse transform matrix, which can be used for undoing the
effects of this transform. |
|
|
CMatrix4
|
getMatrix(self)
Get the matrix which represents the combination of the translation,
scale, rotation, skew and pivotPoint settings for this transform. |
|
|
CMatrix4
|
getTransposeMatrix(self)
Returns a transposed copy of the matrix representing this transform. |
|
|
bool
|
isDefault(self)
Returns True if this transform matches the default settings, False if
not. |
|
|
None
|
reset(self)
Return this transform to its default settings. |
|
|
None
|
setIdentity(self)
Set this transform to the identity transform (the transform which
doesn't change the object at all). |
|
|
Inherited from object :
__format__ ,
__hash__ ,
__init__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|
|
name
The name for this transform.
|
|
pivotPoint
The location of the pivot point, represented as a CVec3 object.
|
|
rotation
The rotation amounts, represented as a CVec3 object.
|
|
rotationOrder
Indicates which order to apply the rotations in.
|
|
scale
The scale factors, represented as a CVec3 object.
|
|
skew
The skew amounts, represented as a CVec3 object.
|
|
transformOrder
Indicates which order to apply the transformations in.
|
|
translation
The translation amounts, represented as a CVec3 object.
|
Inherited from object :
__class__
|