Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-03-23 05:55:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-23 05:55:38 +0400
commit174a46361fea26626cfaa622262a36c710624f5a (patch)
treed69fc6c958d1cbde00b21c7adec64baf1879a1dc /source/blender/makesrna/intern/rna_mesh.c
parent03df918c2fe582a3927dca8f1e859457a350a737 (diff)
doc cleanup: minor corrections and improvements to docstrings + recent doc changes.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 6aa77d8c8d7..7eef6630924 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -1443,7 +1443,7 @@ static void rna_def_mface(BlenderRNA *brna)
srna = RNA_def_struct(brna, "MeshTessFace", NULL);
RNA_def_struct_sdna(srna, "MFace");
- RNA_def_struct_ui_text(srna, "Mesh Face", "Face in a Mesh datablock");
+ RNA_def_struct_ui_text(srna, "Mesh TessFace", "TessFace in a Mesh datablock");
RNA_def_struct_path_func(srna, "rna_MeshTessFace_path");
RNA_def_struct_ui_icon(srna, ICON_FACESEL);
@@ -2494,13 +2494,13 @@ static void rna_def_mesh(BlenderRNA *brna)
prop = RNA_def_property(srna, "tessfaces", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "mface", "totface");
RNA_def_property_struct_type(prop, "MeshTessFace");
- RNA_def_property_ui_text(prop, "Faces", "Faces of the mesh");
+ RNA_def_property_ui_text(prop, "TessFaces", "Tessellation faces of the mesh (derived from polygons)");
rna_def_mesh_faces(brna, prop);
prop = RNA_def_property(srna, "loops", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "mloop", "totloop");
RNA_def_property_struct_type(prop, "MeshLoop");
- RNA_def_property_ui_text(prop, "Loops", "Loops of the mesh");
+ RNA_def_property_ui_text(prop, "Loops", "Loops of the mesh (polygon corners)");
rna_def_mesh_loops(brna, prop);
prop = RNA_def_property(srna, "polygons", PROP_COLLECTION, PROP_NONE);