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:
authorWillian Padovani Germano <wpgermano@gmail.com>2005-02-03 06:04:32 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2005-02-03 06:04:32 +0300
commit3ede12b1154d941050c1e56604a8c24227152329 (patch)
tree7ef6f81597af9f30c3582c150624fcf8540cfa96 /source/blender/python/api2_2x/NMesh.h
parentd0aa7eac4147767c9dce784afed1e19e1fd62fc3 (diff)
BPython:
- NMesh: added face.sel and face.hide attributes to NMFaces, to set / get selection and visibility state of faces as they appear in edit mode. - doc updates, including the right fix to two edge related methods, thanks to Stephane Soppera for pointing it (my fault, Stephane).
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-rw-r--r--source/blender/python/api2_2x/NMesh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h
index a139deb2647..588a7db7aa1 100644
--- a/source/blender/python/api2_2x/NMesh.h
+++ b/source/blender/python/api2_2x/NMesh.h
@@ -98,10 +98,10 @@ typedef struct {
PyObject *uv;
PyObject *col;
short mode;
- short flag;
+ short flag; /* tface->flag */
unsigned char transp;
Image *image;
- char mat_nr, smooth;
+ char mat_nr, mf_flag /* was char smooth */;
} BPy_NMFace; /* an NMesh face */