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.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
|
||||
*
|
||||
@@ -41,19 +42,18 @@
|
||||
* objects, so this header file must contain only 'public' declarations */
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Python BPy_rgbTuple structure definition: */
|
||||
/* Python BPy_rgbTuple structure definition: */
|
||||
/*****************************************************************************/
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
float *rgb[3]; /* array of three pointers to floats */
|
||||
PyObject_HEAD float *rgb[3]; /* array of three pointers to floats */
|
||||
|
||||
} BPy_rgbTuple;
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Python API function prototypes for the rgbTuple helper module. */
|
||||
/*****************************************************************************/
|
||||
PyObject *rgbTuple_New (float *rgb[3]);
|
||||
PyObject *rgbTuple_getCol (BPy_rgbTuple *self);
|
||||
PyObject *rgbTuple_setCol (BPy_rgbTuple *self, PyObject *args);
|
||||
PyObject *rgbTuple_New( float *rgb[3] );
|
||||
PyObject *rgbTuple_getCol( BPy_rgbTuple * self );
|
||||
PyObject *rgbTuple_setCol( BPy_rgbTuple * self, PyObject * args );
|
||||
|
||||
#endif /* EXPP_rgbTuple_H */
|
||||
#endif /* EXPP_rgbTuple_H */
|
||||
|
||||
Reference in New Issue
Block a user