Skip to content

Commit 9f1530a

Browse files
committed
choose a different quaternion, one with non zero scalar part. Windows unit tests give different (but valid in double mapping) answer in this situation
1 parent 5b5ae32 commit 9f1530a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_quaternion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def test_interp(self):
525525
rz = UnitQuaternion.Rz(pi / 2)
526526
u = UnitQuaternion()
527527

528-
q = rx * ry * rz
528+
q = UnitQuaternion.RPY([.2, .3, .4])
529529

530530
# from null
531531
qcompare(q.interp1(0), u)

0 commit comments

Comments
 (0)