40 "Class for representing a bounding box.\n"
42 ".. method:: __init__()\n"
44 " Default constructor.");
48 static const char *kwlist[] = {
nullptr};
50 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"", (
char **)kwlist)) {
60 Py_TYPE(
self)->tp_free((PyObject *)
self);
65 return PyUnicode_FromFormat(
"BBox - address: %p",
self->bb);
71 PyVarObject_HEAD_INIT(
nullptr, 0)
90 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(BBox_doc, "Class for representing a bounding box.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.")
static struct PyModuleDef module