~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/makesdna/DNA_meshdata_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: DNA_meshdata_types.h,v 1.32 2007/01/22 08:34:53 nicholasbishop Exp $ 
 
2
 * $Id: DNA_meshdata_types.h,v 1.34 2007/04/29 13:39:45 campbellbarton Exp $ 
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
57
57
typedef struct MDeformVert {
58
58
        struct MDeformWeight *dw;
59
59
        int totweight;
60
 
        int flag;       // flag only in use for weightpaint now
 
60
        int flag;       /* flag only in use for weightpaint now */
61
61
} MDeformVert;
62
62
 
63
63
typedef struct MVert {
150
150
#define ME_EDGEDRAW                     (1<<1)
151
151
#define ME_SEAM                         (1<<2)
152
152
#define ME_FGON                         (1<<3)
153
 
                                                // reserve 16 for ME_HIDE
 
153
                                                /* reserve 16 for ME_HIDE */
154
154
#define ME_EDGERENDER           (1<<5)
155
155
#define ME_LOOSEEDGE            (1<<7)
156
156
#define ME_SEAM_LAST            (1<<8)
183
183
#define ME_FSEL 2
184
184
 
185
185
/* mtface->flag */
186
 
#define TF_SELECT       1
 
186
#define TF_SELECT       1 /* use MFace hide flag (after 2.43), should be able to reuse after 2.44 */
187
187
#define TF_ACTIVE       2
188
188
#define TF_SEL1         4
189
189
#define TF_SEL2         8
190
190
#define TF_SEL3         16
191
191
#define TF_SEL4         32
192
 
#define TF_HIDE         64
 
192
#define TF_HIDE         64 /* unused, same as TF_SELECT */
193
193
 
194
194
/* mtface->mode */
195
195
#define TF_DYNAMIC              1