19 if (module ==
nullptr) {
26 PyModule_AddObjectRef(module,
"BBox", (PyObject *)&
BBox_Type);
36 "Class for representing a bounding box.\n"
38 ".. method:: __init__()\n"
40 " Default constructor.");
44 static const char *kwlist[] = {
nullptr};
46 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"", (
char **)kwlist)) {
56 Py_TYPE(self)->tp_free((PyObject *)self);
61 return PyUnicode_FromFormat(
"BBox - address: %p", self->
bb);
67 PyVarObject_HEAD_INIT(
nullptr, 0)
86 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
static void BBox_dealloc(BPy_BBox *self)
int BBox_Init(PyObject *module)
static PyObject * BBox_repr(BPy_BBox *self)
static int BBox_init(BPy_BBox *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(FalseBP1D___doc__, "Class hierarchy: :class:`freestyle.types.BinaryPredicate1D` > :class:`FalseBP1D`\n" "\n" ".. method:: __call__(inter1, inter2)\n" "\n" " Always returns false.\n" "\n" " :arg inter1: The first Interface1D object.\n" " :type inter1: :class:`freestyle.types.Interface1D`\n" " :arg inter2: The second Interface1D object.\n" " :type inter2: :class:`freestyle.types.Interface1D`\n" " :return: False.\n" " :rtype: bool\n")
PyObject_HEAD Freestyle::BBox< Freestyle::Geometry::Vec3r > * bb