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:
authorTon Roosendaal <ton@blender.org>2004-09-19 00:15:37 +0400
committerTon Roosendaal <ton@blender.org>2004-09-19 00:15:37 +0400
commit131e5908a6a598230a7e3f08d9f12ddf8bd309f4 (patch)
treefe607bd23e009698a0a235d1e90078db64e13d7d /source/blender/blenlib/BLI_editVert.h
parenta2ea84903e50d46df002220beb78394abd6cf46e (diff)
Evil commit! Nothing really changed except;
- EditVlak -> EditFace - variables called 'evl' -> 'efa' - functions with 'vlak' in it now have 'face' Just thought was nice starter for editmesh recode...
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index 3f477036c0b..05670ccc69c 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -63,16 +63,16 @@ typedef struct EditEdge
float crease;
} EditEdge;
-typedef struct EditVlak
+typedef struct EditFace
{
- struct EditVlak *next, *prev;
+ struct EditFace *next, *prev;
struct EditVert *v1, *v2, *v3, *v4;
struct EditEdge *e1, *e2, *e3, *e4;
float n[3];
struct TFace tf; /* a copy of original tface. */
unsigned char mat_nr, flag;
unsigned char f, f1;
-} EditVlak;
+} EditFace;
typedef struct EditMesh
{