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>2003-06-28 11:38:21 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-06-28 11:38:21 +0400
commiteaf1cdd3836aa425e3dc6f1a11d4556bd7e3e876 (patch)
treefe8e701c3e3daa38749b78238858edbbbfea1f91 /source/blender/python/api2_2x/NMesh.h
parent569a32a2ea3a1992eaeaa5dc0256c48e8a053fbd (diff)
- More renaming all around to follow our conventions
- Implemented partially Blender.Sys - Worked on issues related to sys, path - Took away most "debug" printfs
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-rw-r--r--source/blender/python/api2_2x/NMesh.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h
index 252265b0354..fe84fab9969 100644
--- a/source/blender/python/api2_2x/NMesh.h
+++ b/source/blender/python/api2_2x/NMesh.h
@@ -81,10 +81,10 @@ static PyObject *g_nmeshmodule = NULL;
/* Type checking for EXPP PyTypes */
-#define C_NMesh_Check(v) ((v)->ob_type == &NMesh_Type)
-#define C_NMFace_Check(v) ((v)->ob_type == &NMFace_Type)
-#define C_NMVert_Check(v) ((v)->ob_type == &NMVert_Type)
-#define C_NMCol_Check(v) ((v)->ob_type == &NMCol_Type)
+#define BPy_NMesh_Check(v) ((v)->ob_type == &NMesh_Type)
+#define BPy_NMFace_Check(v) ((v)->ob_type == &NMFace_Type)
+#define BPy_NMVert_Check(v) ((v)->ob_type == &NMVert_Type)
+#define BPy_NMCol_Check(v) ((v)->ob_type == &NMCol_Type)
static char M_NMesh_doc[] =
"The Blender.NMesh module";
@@ -164,7 +164,7 @@ typedef struct {
PyObject_HEAD
unsigned char r, g, b, a;
-} C_NMCol; /* an NMesh color: [r,g,b,a] */
+} BPy_NMCol; /* an NMesh color: [r,g,b,a] */
typedef struct {
PyObject_VAR_HEAD
@@ -173,7 +173,7 @@ typedef struct {
float uvco[3];
int index;
-} C_NMVert; /* an NMesh vertex */
+} BPy_NMVert; /* an NMesh vertex */
typedef struct {
PyObject_HEAD
@@ -186,7 +186,7 @@ typedef struct {
Image *image;
char mat_nr, smooth;
-} C_NMFace; /* an NMesh face */
+} BPy_NMFace; /* an NMesh face */
typedef struct {
PyObject_HEAD
@@ -202,17 +202,17 @@ typedef struct {
#define NMESH_HASVERTUV 1<<1
#define NMESH_HASFACEUV 1<<2
-} C_NMesh;
+} BPy_NMesh;
/* PROTOS */
extern void test_object_materials(ID *id); /* declared in BKE_material.h */
static int unlink_existingMeshData(Mesh *mesh);
-static int convert_NMeshToMesh(Mesh *mesh, C_NMesh *nmesh);
+static int convert_NMeshToMesh(Mesh *mesh, BPy_NMesh *nmesh);
void mesh_update(Mesh *mesh);
PyObject *new_NMesh(Mesh *oldmesh);
-Mesh *Mesh_fromNMesh(C_NMesh *nmesh);
-PyObject *NMesh_assignMaterials_toObject(C_NMesh *nmesh, Object *ob);
-Material **nmesh_updateMaterials(C_NMesh *nmesh);
+Mesh *Mesh_fromNMesh(BPy_NMesh *nmesh);
+PyObject *NMesh_assignMaterials_toObject(BPy_NMesh *nmesh, Object *ob);
+Material **nmesh_updateMaterials(BPy_NMesh *nmesh);
Material **newMaterialList_fromPyList (PyObject *list);
void mesh_update(Mesh *mesh);