Catch quaternion canonical corner cases (#116)

This commit is contained in:
kritz
2019-12-18 14:12:47 +01:00
committed by Julian Kent
parent 4f3565da94
commit e81483a808
4 changed files with 62 additions and 14 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ int main()
float eps = 1e-6f;
// Vector3 copyTo
Vector3f v(1, 2, 3);
const Vector3f v(1, 2, 3);
float dst3[3] = {};
v.copyTo(dst3);
for (size_t i = 0; i < 3; i++) {