Pose¶
-
class
compas_fab.fab.robots.
Pose
[source]¶ Bases:
object
Represents a robot pose described as a 4x4 transformation matrix.
-
values
¶ list
offloat
– list of 12 or 16 values representing a 4x4 matrix. If 12 values are provided, the last row is assumed to be[0 0 0 1]
.
-
classmethod
from_data
(data)[source]¶ Construct a pose from its data representation.
Parameters: data (dict) – The data dictionary. Returns: Pose – A Pose
instance.
-