We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18bfd69 commit 76a33e1Copy full SHA for 76a33e1
1 file changed
spatialmath/pose2d.py
@@ -517,9 +517,9 @@ def inv(self):
517
518
"""
519
if len(self) == 1:
520
- return SE2(base.rt2tr(self.R.T, -self.R.T @ self.t))
+ return SE2(base.rt2tr(self.R.T, -self.R.T @ self.t), check=False)
521
else:
522
- return SE2([base.rt2tr(x.R.T, -x.R.T @ x.t) for x in self])
+ return SE2([base.rt2tr(x.R.T, -x.R.T @ x.t) for x in self], check=False)
523
524
def SE3(self, z=0):
525
0 commit comments