Browse Source

Fixed typos in matrices tutorial (#332)

KiwiColoredHorror 8 năm trước cách đây
mục cha
commit
d5448a13bd
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  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 y = m[1] # 'Y'
     var o = m[2] # 'Origin'
+    
 
 Most operations will be explained with this datatype (Matrix32), but the
 same logic applies to 3D.
@@ -239,14 +240,14 @@ the scale). It will leave the origin alone:
 .. image:: /img/tutomat15.png
 
 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
 this:
 
 .. image:: /img/tutomat16.png
 
 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).
 
 Transform