diff options
author | Sam <sam.rr.lee@gmail.com> | 2021-12-23 17:58:02 +0000 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2022-01-11 17:39:10 +0100 |
commit | bc9df365b045419e26763859019cd1111103ac4e (patch) | |
tree | 58ab1463ad114b08a2765eb94cc7ad2149f36da9 | |
parent | 54d89f2274328cbf0fd63ad01c0a203c9b0f5c62 (diff) |
Fixed typos in MeshDataTool documentation
- Fixed missing "be" typo in MeshDataTool's get_face_edge function
- Corrected documentation to say negative values aren't valid
-rw-r--r-- | doc/classes/MeshDataTool.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/MeshDataTool.xml b/doc/classes/MeshDataTool.xml index 35e4451918..60137ab006 100644 --- a/doc/classes/MeshDataTool.xml +++ b/doc/classes/MeshDataTool.xml @@ -114,7 +114,7 @@ <argument index="1" name="edge" type="int" /> <description> Returns specified edge associated with given face. - Edge argument must 2 or less because a face only has three edges. + Edge argument must be either 0, 1, or 2 because a face only has three edges. </description> </method> <method name="get_face_meta" qualifiers="const"> @@ -137,7 +137,7 @@ <argument index="1" name="vertex" type="int" /> <description> Returns the specified vertex of the given face. - Vertex argument must be 2 or less because faces contain three vertices. + Vertex argument must be either 0, 1, or 2 because faces contain three vertices. </description> </method> <method name="get_format" qualifiers="const"> |