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:
authorStephen Swaney <sswaney@centurytel.net>2004-09-26 00:30:40 +0400
committerStephen Swaney <sswaney@centurytel.net>2004-09-26 00:30:40 +0400
commita509b8adc9b8952cdb395c69406e821f57a9a6c7 (patch)
tree7c0e3c7b81007acc6b3e268e59a6af5fcb4bd93f /source/blender/python/api2_2x/Particle.h
parentbd371ddb9ff947d4e598ad04af9402d89fa80d5e (diff)
Another round in the Great BPy Cleanup:
Run everything thru indent to cleanup spaces vs tabs. Clean up some of the comments by hand. BGL.c was not touched due to all that macro wackyness. There are no functional changes to the code. Pre-indent versions of source are tagged with tag bpy-cleanup-20040925 , just in case.
Diffstat (limited to 'source/blender/python/api2_2x/Particle.h')
-rw-r--r--source/blender/python/api2_2x/Particle.h105
1 files changed, 53 insertions, 52 deletions
diff --git a/source/blender/python/api2_2x/Particle.h b/source/blender/python/api2_2x/Particle.h
index 04dc9abbaa4..8a91f4ef9af 100644
--- a/source/blender/python/api2_2x/Particle.h
+++ b/source/blender/python/api2_2x/Particle.h
@@ -1,4 +1,5 @@
/*
+ * $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
@@ -49,8 +50,8 @@
/*****************************************************************************/
/* Python API function prototypes for the Particle module. */
/*****************************************************************************/
-PyObject *M_Particle_New (PyObject *self, PyObject *args);
-PyObject *M_Particle_Get (PyObject *self, PyObject *args);
+PyObject *M_Particle_New( PyObject * self, PyObject * args );
+PyObject *M_Particle_Get( PyObject * self, PyObject * args );
@@ -58,63 +59,63 @@ PyObject *M_Particle_Get (PyObject *self, PyObject *args);
/*****************************************************************************/
/* Python BPy_Particle methods declarations: */
/*****************************************************************************/
-PyObject *Effect_getType(BPy_Effect *self);
-PyObject *Effect_setType(BPy_Effect *self, PyObject *args);
-PyObject *Effect_getFlag(BPy_Effect *self);
-PyObject *Effect_setFlag(BPy_Effect *self, PyObject *args);
-PyObject *Particle_getSta(BPy_Particle *self);
-PyObject *Particle_setSta(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getEnd(BPy_Particle *self);
-PyObject *Particle_setEnd(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getLifetime(BPy_Particle *self);
-PyObject *Particle_setLifetime(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getNormfac(BPy_Particle *self);
-PyObject *Particle_setNormfac(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getObfac(BPy_Particle *self);
-PyObject *Particle_setObfac(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getRandfac(BPy_Particle *self);
-PyObject *Particle_setRandfac(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getTexfac(BPy_Particle *self);
-PyObject *Particle_setTexfac(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getRandlife(BPy_Particle *self);
-PyObject *Particle_setRandlife(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getNabla(BPy_Particle *self);
-PyObject *Particle_setNabla(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getVectsize(BPy_Particle *self);
-PyObject *Particle_setVectsize(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getTotpart(BPy_Particle *self);
-PyObject *Particle_setTotpart(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getTotkey(BPy_Particle *self);
-PyObject *Particle_setTotkey(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getSeed(BPy_Particle *self);
-PyObject *Particle_setSeed(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getForce(BPy_Particle *self);
-PyObject *Particle_setForce(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getMult(BPy_Particle *self);
-PyObject *Particle_setMult(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getLife(BPy_Particle *self);
-PyObject *Particle_setLife(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getMat(BPy_Particle *self);
-PyObject *Particle_setMat(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getChild(BPy_Particle *self);
-PyObject *Particle_setChild(BPy_Particle *self,PyObject*a);
-PyObject *Particle_getDefvec(BPy_Particle *self);
-PyObject *Particle_setDefvec(BPy_Particle *self,PyObject*a);
+PyObject *Effect_getType( BPy_Effect * self );
+PyObject *Effect_setType( BPy_Effect * self, PyObject * args );
+PyObject *Effect_getFlag( BPy_Effect * self );
+PyObject *Effect_setFlag( BPy_Effect * self, PyObject * args );
+PyObject *Particle_getSta( BPy_Particle * self );
+PyObject *Particle_setSta( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getEnd( BPy_Particle * self );
+PyObject *Particle_setEnd( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getLifetime( BPy_Particle * self );
+PyObject *Particle_setLifetime( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getNormfac( BPy_Particle * self );
+PyObject *Particle_setNormfac( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getObfac( BPy_Particle * self );
+PyObject *Particle_setObfac( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getRandfac( BPy_Particle * self );
+PyObject *Particle_setRandfac( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getTexfac( BPy_Particle * self );
+PyObject *Particle_setTexfac( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getRandlife( BPy_Particle * self );
+PyObject *Particle_setRandlife( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getNabla( BPy_Particle * self );
+PyObject *Particle_setNabla( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getVectsize( BPy_Particle * self );
+PyObject *Particle_setVectsize( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getTotpart( BPy_Particle * self );
+PyObject *Particle_setTotpart( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getTotkey( BPy_Particle * self );
+PyObject *Particle_setTotkey( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getSeed( BPy_Particle * self );
+PyObject *Particle_setSeed( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getForce( BPy_Particle * self );
+PyObject *Particle_setForce( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getMult( BPy_Particle * self );
+PyObject *Particle_setMult( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getLife( BPy_Particle * self );
+PyObject *Particle_setLife( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getMat( BPy_Particle * self );
+PyObject *Particle_setMat( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getChild( BPy_Particle * self );
+PyObject *Particle_setChild( BPy_Particle * self, PyObject * a );
+PyObject *Particle_getDefvec( BPy_Particle * self );
+PyObject *Particle_setDefvec( BPy_Particle * self, PyObject * a );
/*****************************************************************************/
/* Python Particle_Type callback function prototypes: */
/*****************************************************************************/
-void ParticleDeAlloc (BPy_Particle *msh);
+void ParticleDeAlloc( BPy_Particle * msh );
//int ParticlePrint (BPy_Particle *msh, FILE *fp, int flags);
-int ParticleSetAttr (BPy_Particle *msh, char *name, PyObject *v);
-PyObject *ParticleGetAttr (BPy_Particle *msh, char *name);
-PyObject *ParticleRepr (BPy_Particle *msh);
-PyObject* ParticleCreatePyObject (struct Effect *particle);
-int ParticleCheckPyObject (PyObject *py_obj);
-struct Particle* ParticleFromPyObject (PyObject *py_obj);
+int ParticleSetAttr( BPy_Particle * msh, char *name, PyObject * v );
+PyObject *ParticleGetAttr( BPy_Particle * msh, char *name );
+PyObject *ParticleRepr( BPy_Particle * msh );
+PyObject *ParticleCreatePyObject( struct Effect *particle );
+int ParticleCheckPyObject( PyObject * py_obj );
+struct Particle *ParticleFromPyObject( PyObject * py_obj );
-#endif /* EXPP_PARTICLE_H */
+#endif /* EXPP_PARTICLE_H */