soc-2008-mxcurioni: implemented and integrated all 21 original stroke shaders.

This commit is contained in:
Maxime Curioni
2008-07-27 13:40:33 +00:00
parent 2b2df54aef
commit 362e4f763f
48 changed files with 3275 additions and 103 deletions

View File

@@ -0,0 +1,31 @@
#ifndef FREESTYLE_PYTHON_INCREASINGTHICKNESSSHADER_H
#define FREESTYLE_PYTHON_INCREASINGTHICKNESSSHADER_H
#include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h>
extern PyTypeObject IncreasingThicknessShader_Type;
#define BPy_IncreasingThicknessShader_Check(v) (( (PyObject *) v)->ob_type == &IncreasingThicknessShader_Type)
/*---------------------------Python BPy_IncreasingThicknessShader structure definition----------*/
typedef struct {
BPy_StrokeShader py_ss;
} BPy_IncreasingThicknessShader;
///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif /* FREESTYLE_PYTHON_INCREASINGTHICKNESSSHADER_H */