Misc. typos

Most are non-user facing. Hope this is not too annoying of a PR. 

Used `codespell -d -q 3 --skip="*.po,*.ts,./.git,./external"` to locate typos
This commit is contained in:
Unknown
2018-01-14 06:07:31 -05:00
committed by luz.paz
parent f239034d5e
commit dc31807ff5
75 changed files with 111 additions and 111 deletions
+2 -2
View File
@@ -22,11 +22,11 @@ F = igl.eigen.MatrixXi()
igl.readOFF(TUTORIAL_SHARED_PATH + "decimated-knight.off", V, F)
# 100 random indicies into rows of F
# 100 random indices into rows of F
I = igl.eigen.MatrixXi()
igl.floor((0.5 * (igl.eigen.MatrixXd.Random(100, 1) + 1.) * F.rows()), I)
# 50 random indicies into rows of I
# 50 random indices into rows of I
J = igl.eigen.MatrixXi()
igl.floor((0.5 * (igl.eigen.MatrixXd.Random(50, 1) + 1.) * I.rows()), J)
@@ -27,7 +27,7 @@ def pre_draw(viewer):
for e in range(len(pose)):
anim_pose[e] = pose[e].slerp(anim_t, igl.eigen.Quaterniond.Identity())
# Propogate relative rotations via FK to retrieve absolute transformations
# Propagate relative rotations via FK to retrieve absolute transformations
vQ = igl.RotationList()
vT = []
igl.forward_kinematics(C, BE, P, anim_pose, vQ, vT)
@@ -34,7 +34,7 @@ def pre_draw(viewer):
for e in range(len(poses[begin])):
anim_pose.append(poses[begin][e].slerp(t, poses[end][e]))
# Propogate relative rotations via FK to retrieve absolute transformations
# Propagate relative rotations via FK to retrieve absolute transformations
vQ = igl.RotationList()
vT = []
igl.forward_kinematics(C, BE, P, anim_pose, vQ, vT)