Misc. typos

This commit is contained in:
luz.paz
2018-01-27 11:44:43 -05:00
committed by wmayer
parent 666c5c8b86
commit 11b8f91c5d
4 changed files with 4 additions and 4 deletions

View File

@@ -261,7 +261,7 @@ void Rotation::setValue(const Vector3d & rotateFrom, const Vector3d & rotateTo)
Vector3d u(rotateFrom); u.Normalize();
Vector3d v(rotateTo); v.Normalize();
// The vector from x to is the roatation axis because it's the normal of the plane defined by (0,u,v)
// The vector from x to is the rotation axis because it's the normal of the plane defined by (0,u,v)
const double dot = u * v;
Vector3d w = u % v;
const double wlen = w.Length();