8000 Check fix for eulervec and tr2angvec · andybarry/spatialmath-python@d6f403b · GitHub
[go: up one dir, main page]

Skip to content

Commit d6f403b

Browse files
committed
Check fix for eulervec and tr2angvec
1 parent 328b65c commit d6f403b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spatialmath/base/transforms3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ def tr2angvec(
10231023
if not isrot(R, check=check):
10241024
raise ValueError("argument is not SO(3)")
10251025

1026-
v = vex(trlog(cast(SO3Array, R)))
1026+
v = vex(trlog(cast(SO3Array, R), check=check))
10271027

10281028
try:
10291029
theta = norm(v)

0 commit comments

Comments
 (0)
0