Source code for abaqus.BasicGeometry.Transform
[docs]class Transform:
"""The MakeSketchTransform method creates a Transform object. The Transform object has no
direct constructor. A Transform object is a 4×3 matrix of Floats that represents the
transformation from sketch coordinates to assembly coordinates or to part coordinates.
Notes
-----
This object can be accessed by:
.. code-block:: python
import part
import assembly
"""
[docs] def matrix(self):
"""This method returns the transformation matrix as a tuple of 12 Floats.
Returns
-------
A tuple of 12 Floats.
"""
pass