ForwardKinematics
-
class
compas_fab.backends.interfaces.ForwardKinematics[source] Bases:
objectInterface for a Planner’s forward kinematics feature. Any implementation of
ForwardKinematicsmust define the methodforward_kinematics. The__call__magic method allows an instance of an implementation ofForwardKinematicsto be treated as itsforward_kinematicsmethod. See <https://docs.python.org/3/reference/datamodel.html#object.__call__> and <https://en.wikipedia.org/wiki/Function_object#In_Python>.Methods
__init__()Initialize self.
forward_kinematics(robot, configuration[, …])Calculate the robot’s forward kinematic.