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(BBox_doc, "Class for representing a bounding box.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.")
static struct PyModuleDef module