Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/BPy_BBox.cpp
| Show All 18 Lines | |||||
| */ | */ | ||||
| #include "BPy_BBox.h" | #include "BPy_BBox.h" | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| using namespace Freestyle; | |||||
| using namespace Freestyle::Geometry; | |||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| //-------------------MODULE INITIALIZATION-------------------------------- | //-------------------MODULE INITIALIZATION-------------------------------- | ||||
| int BBox_Init(PyObject *module) | int BBox_Init(PyObject *module) | ||||
| { | { | ||||
| if (module == nullptr) { | if (module == nullptr) { | ||||
| return -1; | return -1; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||