Ejemplo n.º 1
0
    def calculate_fixed_transformation(self, position):
        """Returns an identity transformation.

        The fixed joint is is not really a joint because it cannot move. All
        degrees of freedom are locked.
        """
        return Transformation()
Ejemplo n.º 2
0
 def init_transformation(self):
     if self.init_origin:
         return Transformation.from_frame(self.init_origin)
     else:
         return Transformation()
Ejemplo n.º 3
0
 def current_transformation(self):
     if self.origin:
         return Transformation.from_frame(self.origin)
     else:
         return Transformation()