Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/BPy_Nature.cpp
| Show All 20 Lines | |||||
| #include "BPy_Nature.h" | #include "BPy_Nature.h" | ||||
| #include "BPy_Convert.h" | #include "BPy_Convert.h" | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| using namespace Freestyle; | |||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| static PyObject *BPy_Nature_and(PyObject *a, PyObject *b); | static PyObject *BPy_Nature_and(PyObject *a, PyObject *b); | ||||
| static PyObject *BPy_Nature_xor(PyObject *a, PyObject *b); | static PyObject *BPy_Nature_xor(PyObject *a, PyObject *b); | ||||
| static PyObject *BPy_Nature_or(PyObject *a, PyObject *b); | static PyObject *BPy_Nature_or(PyObject *a, PyObject *b); | ||||
| /*-----------------------BPy_Nature number method definitions --------------------*/ | /*-----------------------BPy_Nature number method definitions --------------------*/ | ||||
| ▲ Show 20 Lines • Show All 252 Lines • Show Last 20 Lines | |||||