- update storage.c to use standard time codes (should fix issue

with MSVS 8)
 - broke mesh_create_shadedColors out of shadeDispList, used to
   build vertex colors for mesh in vpaint as well (also fixed
   bug where they were not initialized correctly for subsurfs)
 - added modifier_copyData and modifier_findByType functions
 - change editmode modifiers to only calculate if Realtime and
   Editmode bits are both set, makes more sense for copying
   modifiers
 - update object_copy to correctly copy modifiers
 - removed duplicate redefinition of ME_ attributes in python,
   this is a horrible idea, why was it done in the first place?
 - update armature auto vertex group code to check for subsurf
   in modifier stack
 - fixed flip_subdivision to work with move to modifier stack
 - added copymenu_modifiers, can copy all modifiers or just
   data from first modifier of a certain type (not sure how
   to deal with multiple modifiers of same type... not
   a big issue though I think)
This commit is contained in:
2005-07-27 20:16:41 +00:00
parent 410512e265
commit 4b1588e277
16 changed files with 428 additions and 218 deletions

View File

@@ -73,12 +73,6 @@ extern void countall(void);
/* EXPP Mesh defines */
#define EXPP_NMESH_MODE_NOPUNOFLIP ME_NOPUNOFLIP
#define EXPP_NMESH_MODE_TWOSIDED ME_TWOSIDED
#define EXPP_NMESH_MODE_AUTOSMOOTH ME_AUTOSMOOTH
#define EXPP_NMESH_MODE_SUBSURF ME_SUBSURF
#define EXPP_NMESH_MODE_OPTIMAL ME_OPT_EDGES
#define NMESH_FRAME_MAX 30000
#define NMESH_SMOOTHRESH 30
#define NMESH_SMOOTHRESH_MIN 1
@@ -1544,15 +1538,15 @@ static PyObject *NMesh_setMode( PyObject * self, PyObject * args )
for( i = 0; i < 5; i++ ) {
if( !m[i] ) break;
else if( strcmp( m[i], "NoVNormalsFlip" ) == 0 )
mode |= EXPP_NMESH_MODE_NOPUNOFLIP;
mode |= ME_NOPUNOFLIP;
else if( strcmp( m[i], "TwoSided" ) == 0 )
mode |= EXPP_NMESH_MODE_TWOSIDED;
mode |= ME_TWOSIDED;
else if( strcmp( m[i], "AutoSmooth" ) == 0 )
mode |= EXPP_NMESH_MODE_AUTOSMOOTH;
mode |= ME_AUTOSMOOTH;
else if( strcmp( m[i], "SubSurf" ) == 0 )
mode |= EXPP_NMESH_MODE_SUBSURF;
mode |= ME_SUBSURF;
else if( strcmp( m[i], "Optimal" ) == 0 )
mode |= EXPP_NMESH_MODE_OPTIMAL;
mode |= ME_OPT_EDGES;
else if( m[i][0] == '\0' )
mode = 0;
else
@@ -1994,7 +1988,7 @@ static PyObject *new_NMesh_internal( Mesh * oldmesh,
{
BPy_NMesh *me = PyObject_NEW( BPy_NMesh, &NMesh_Type );
me->flags = 0;
me->mode = EXPP_NMESH_MODE_TWOSIDED; /* default for new meshes */
me->mode = ME_TWOSIDED; /* default for new meshes */
me->subdiv[0] = NMESH_SUBDIV;
me->subdiv[1] = NMESH_SUBDIV;
me->smoothresh = NMESH_SMOOTHRESH;
@@ -2948,16 +2942,16 @@ static PyObject *M_NMesh_Modes( void )
constant_insert( d, "NOVNORMALSFLIP",
PyInt_FromLong
( EXPP_NMESH_MODE_NOPUNOFLIP ) );
( ME_NOPUNOFLIP ) );
constant_insert( d, "TWOSIDED",
PyInt_FromLong( EXPP_NMESH_MODE_TWOSIDED ) );
PyInt_FromLong( ME_TWOSIDED ) );
constant_insert( d, "AUTOSMOOTH",
PyInt_FromLong
( EXPP_NMESH_MODE_AUTOSMOOTH ) );
( ME_AUTOSMOOTH ) );
constant_insert( d, "SUBSURF",
PyInt_FromLong( EXPP_NMESH_MODE_SUBSURF ) );
PyInt_FromLong( ME_SUBSURF ) );
constant_insert( d, "OPTIMAL",
PyInt_FromLong( EXPP_NMESH_MODE_OPTIMAL ) );
PyInt_FromLong( ME_OPT_EDGES ) );
}
return Modes;