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-24 16:40:37 +0400
committerTon Roosendaal <ton@blender.org>2004-09-24 16:40:37 +0400
commitf59503682d1afdb29079dccd642b4191ff9ecc1e (patch)
treefed8a2a9682a6a1892d03528d9bd2b7b27c20e36 /source/blender/blenlib/BLI_editVert.h
parentce12a0173c25fdb9cbe34aee194bdf62780230bc (diff)
- basic code for fake-polygon support (called FGon in code). Disabled now
- hide flags now save correctly in mesh, to restore after going in/out editmode - after an extrude, faces/edges could have wrong select flags (only in vertex select mode) - new rule for addfacelist(); this now copies edges too, if an example is provided. That prevents a lot of awkward code, still testing if it goes as desired though...
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index 0ff57f8cde7..e47d82043b7 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -66,7 +66,8 @@ typedef struct EditEdge
short f1, f2; /* short, f1 is (ab)used in subdiv */
unsigned char f, h, dir, seam;
float crease;
- int fast; /* only 0 or 1, for editmesh_fastmalloc */
+ short fast; /* only 0 or 1, for editmesh_fastmalloc */
+ short fgoni; /* index for fgon, for search */
HashEdge hash;
} EditEdge;
@@ -80,7 +81,8 @@ typedef struct EditFace
struct TFace tf; /* a copy of original tface. */
unsigned char mat_nr, flag;
unsigned char f, f1, h, puno;
- short fast; /* only 0 or 1, for editmesh_fastmalloc */
+ unsigned char fast; /* only 0 or 1, for editmesh_fastmalloc */
+ unsigned char fgonf; /* flag for fgon options */
} EditFace;
typedef struct EditMesh