OpenVDB
9.0.1
|
Functions | |
boost::python::object | getPyObjectFromGrid (const openvdb::GridBase::Ptr &) |
Return a new Python object that holds the given OpenVDB grid. More... | |
openvdb::GridBase::Ptr | getGridFromPyObject (PyObject *) |
Return a pointer to the OpenVDB grid held by the given Python object. More... | |
openvdb::GridBase::Ptr | getGridFromPyObject (const boost::python::object &) |
Return a pointer to the OpenVDB grid held by the given Python object. More... | |
openvdb::GridBase::Ptr pyopenvdb::getGridFromPyObject | ( | PyObject * | ) |
Return a pointer to the OpenVDB grid held by the given Python object.
openvdb::TypeError | if the Python object is not one of the pyOpenVDB grid types. (See the Python module's GridTypes global variable for the list of supported grid types.) |
openvdb::GridBase::Ptr pyopenvdb::getGridFromPyObject | ( | const boost::python::object & | ) |
Return a pointer to the OpenVDB grid held by the given Python object.
openvdb::TypeError | if the Python object is not one of the pyOpenVDB grid types. (See the Python module's GridTypes global variable for the list of supported grid types.) |
boost::python::object pyopenvdb::getPyObjectFromGrid | ( | const openvdb::GridBase::Ptr & | ) |
Return a new Python object that holds the given OpenVDB grid.
None
if the given grid pointer is null. openvdb::TypeError | if the grid is not of a supported type. (See the Python module's GridTypes global variable for the list of supported grid types.) |