51 "Class for representing a bounding box.\n"
53 ".. method:: __init__()\n"
55 " Default constructor.");
59 static const char *kwlist[] = {
nullptr};
61 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"", (
char **)kwlist)) {
71 Py_TYPE(
self)->tp_free((PyObject *)
self);
76 return PyUnicode_FromFormat(
"BBox - address: %p",
self->bb);
82 PyVarObject_HEAD_INIT(
nullptr, 0)
"BBox",
100 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