瀏覽代碼

Fix typo in Procedural geometry (#5608)

Denis NICOLAS 3 年之前
父節點
當前提交
887b37a1e0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tutorials/content/procedural_geometry/index.rst

+ 1 - 1
tutorials/content/procedural_geometry/index.rst

@@ -65,7 +65,7 @@ filled with a sub-array containing per-vertex information. For example, the arra
 
 
 The surface array can be indexed or non-indexed. Creating a non-indexed array is as easy as not assigning
 The surface array can be indexed or non-indexed. Creating a non-indexed array is as easy as not assigning
 an array at the index ``ArrayMesh.ARRAY_INDEX``. A non-indexed array stores unique vertex information for
 an array at the index ``ArrayMesh.ARRAY_INDEX``. A non-indexed array stores unique vertex information for
-every triangle, meaning that when two triangle share a vertex, the vertex is duplicated in the array. An
+every triangle, meaning that when two triangles share a vertex, the vertex is duplicated in the array. An
 indexed surface array only stores vertex information for each unique vertex and then also stores an array
 indexed surface array only stores vertex information for each unique vertex and then also stores an array
 of indices which maps out how to construct the triangles from the vertex array. In general, using an indexed
 of indices which maps out how to construct the triangles from the vertex array. In general, using an indexed
 array is faster, but it means you have to share vertex data between triangles, which is not always desired
 array is faster, but it means you have to share vertex data between triangles, which is not always desired