Skip to content

Commit a4c2877

Browse files
committed
Wrong method name
1 parent ceb07a1 commit a4c2877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compas_fab/robots/robot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ def transformation_RCF_WCF(self, group=None):
568568
569569
"""
570570
base_frame = self.get_base_frame(group)
571-
return Transformation.from_change_basis(base_frame, Frame.worldXY())
571+
return Transformation.from_change_of_basis(base_frame, Frame.worldXY())
572572

573573
def transformation_WCF_RCF(self, group=None):
574574
"""Returns the transformation from the world coordinate system (WCF) to the robot's coordinate system (RCF).
@@ -584,7 +584,7 @@ def transformation_WCF_RCF(self, group=None):
584584
585585
"""
586586
base_frame = self.get_base_frame(group)
587-
return Transformation.from_change_basis(Frame.worldXY(), base_frame)
587+
return Transformation.from_change_of_basis(Frame.worldXY(), base_frame)
588588

589589
def set_RCF(self, robot_coordinate_frame, group=None):
590590
"""Moves the origin frame of the robot to the robot_coordinate_frame.

0 commit comments

Comments
 (0)