37 "Class for representing a bounding box.\n"
39 ".. method:: __init__()\n"
41 " Default constructor.");
45 static const char *kwlist[] = {
nullptr};
47 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"", (
char **)kwlist)) {
57 Py_TYPE(
self)->tp_free((PyObject *)
self);
62 return PyUnicode_FromFormat(
"BBox - address: %p",
self->bb);
68 PyVarObject_HEAD_INIT(
nullptr, 0)
"BBox",
86 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
static PyObject * BBox_repr(BPy_BBox *self)
static void BBox_dealloc(BPy_BBox *self)
int BBox_Init(PyObject *module)
static int BBox_init(BPy_BBox *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(BBox_doc, "Class for representing a bounding box.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.")
static struct PyModuleDef module