Open topic with navigation
<transform>.equal
Returns whether this transform is equal to another transform
<transform>.equal( |
|
other |
) |
|
Remarks
This command will return whether the transform is equal to the specified transform.
Return Value
True/False
Example
X1 = vizmat.Transform()
X2 = vizmat.Transform()
if X1.equal(X2):
print('Transforms are equal')
else:
print('Transforms are not equal')