Browse Source

Fixed typos in matrices tutorial (#332)

(cherry picked from commit d5448a13bda1be2fa81aff96d2a18ec2c71484fa)
KiwiColoredHorror 8 years ago
parent
commit
f171c78980
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tutorials/matrices_and_transforms.rst

+ 3 - 2
tutorials/matrices_and_transforms.rst

@@ -157,6 +157,7 @@ it's simplicity.
     var x = m[0] # 'X'
     var x = m[0] # 'X'
     var y = m[1] # 'Y'
     var y = m[1] # 'Y'
     var o = m[2] # 'Origin'
     var o = m[2] # 'Origin'
+    
 
 
 Most operations will be explained with this datatype (Matrix32), but the
 Most operations will be explained with this datatype (Matrix32), but the
 same logic applies to 3D.
 same logic applies to 3D.
@@ -239,14 +240,14 @@ the scale). It will leave the origin alone:
 .. image:: /img/tutomat15.png
 .. image:: /img/tutomat15.png
 
 
 These kind of operations in matrices are accumulative. It means every
 These kind of operations in matrices are accumulative. It means every
-one starts relative to the previous one. For those that have been living
+one starts relative to the previous one. For those who have been living
 on this planet long enough, a good reference of how transform works is
 on this planet long enough, a good reference of how transform works is
 this:
 this:
 
 
 .. image:: /img/tutomat16.png
 .. image:: /img/tutomat16.png
 
 
 A matrix is used similarly to a turtle. The turtle most likely had a
 A matrix is used similarly to a turtle. The turtle most likely had a
-matrix inside (and you are likely learning this may years *after*
+matrix inside (and you are likely learning this many years *after*
 discovering Santa is not real).
 discovering Santa is not real).
 
 
 Transform
 Transform