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

Former-commit-id: dc31807ff5
This commit is contained in:
Unknown
2018-01-14 06:07:31 -05:00
committed by luz.paz
parent 47e87d4ccf
commit 2ddb11aa6b
75 changed files with 102 additions and 102 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)