We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f93315 + 7a760f5 commit ddc1ae2Copy full SHA for ddc1ae2
1 file changed
src/semantic_digital_twin/world_description/world_entity.py
@@ -802,6 +802,12 @@ def origin(self) -> cas.TransformationMatrix:
802
"""
803
return self._world.compute_forward_kinematics(self.parent, self.child)
804
805
+ @origin.setter
806
+ def origin(self, value):
807
+ raise NotImplementedError(
808
+ f"Origin can not be set for Connection: {self.__class__.__name__}"
809
+ )
810
+
811
def origin_as_position_quaternion(self) -> Expression:
812
position = self.origin_expression.to_position()[:3]
813
orientation = self.origin_expression.to_quaternion()
0 commit comments