|
|
|
|
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__
|