Blender
V3.3
|
Go to the source code of this file.
Functions | |
int | Id_Init (PyObject *module) |
PyDoc_STRVAR (Id_doc, "Class for representing an object Id.\n" "\n" ".. method:: __init__(brother)\n" " __init__(first=0, second=0)\n" "\n" " Build the Id from two numbers or another :class:`Id` using the copy constructor.\n" "\n" " :arg brother: An Id object.\n" " :type brother: :class:`Id`" " :arg first: The first number.\n" " :type first: int\n" " :arg second: The second number.\n" " :type second: int\n") | |
static int | Id_init (BPy_Id *self, PyObject *args, PyObject *kwds) |
static void | Id_dealloc (BPy_Id *self) |
static PyObject * | Id_repr (BPy_Id *self) |
static PyObject * | Id_RichCompare (BPy_Id *o1, BPy_Id *o2, int opid) |
PyDoc_STRVAR (Id_first_doc, "The first number constituting the Id.\n" "\n" ":type: int") | |
static PyObject * | Id_first_get (BPy_Id *self, void *UNUSED(closure)) |
static int | Id_first_set (BPy_Id *self, PyObject *value, void *UNUSED(closure)) |
PyDoc_STRVAR (Id_second_doc, "The second number constituting the Id.\n" "\n" ":type: int") | |
static PyObject * | Id_second_get (BPy_Id *self, void *UNUSED(closure)) |
static int | Id_second_set (BPy_Id *self, PyObject *value, void *UNUSED(closure)) |
Variables | |
static PyGetSetDef | BPy_Id_getseters [] |
PyTypeObject | Id_Type |
Definition at line 74 of file BPy_Id.cpp.
Definition at line 112 of file BPy_Id.cpp.
References self.
Definition at line 117 of file BPy_Id.cpp.
|
static |
Definition at line 53 of file BPy_Id.cpp.
References Id_Type.
int Id_Init | ( | PyObject * | module | ) |
Definition at line 20 of file BPy_Id.cpp.
References Id_Type, and module.
Referenced by Freestyle_Init().
|
static |
Definition at line 80 of file BPy_Id.cpp.
References self.
Definition at line 86 of file BPy_Id.cpp.
References BPy_Id::id, and PyBool_from_bool().
Definition at line 133 of file BPy_Id.cpp.
References self.
Definition at line 138 of file BPy_Id.cpp.
PyDoc_STRVAR | ( | Id_doc | , |
"Class for representing an object Id.\n" "\n" ".. method:: __init__(brother)\n" " __init__(first=0, second=0)\n" "\n" " Build the Id from two numbers or another :class:`Id` using the copy constructor.\n" "\n" " :arg brother: An Id object.\n" " :type brother: :class:`Id`" " :arg first: The first number.\n" " :type first: int\n" " :arg second: The second number.\n" " :type second: int\n" | |||
) |
PyDoc_STRVAR | ( | Id_first_doc | , |
"The first number constituting the Id.\n" "\n" ":type: int" | |||
) |
PyDoc_STRVAR | ( | Id_second_doc | , |
"The second number constituting the Id.\n" "\n" ":type: int" | |||
) |
|
static |
Definition at line 149 of file BPy_Id.cpp.
PyTypeObject Id_Type |
Definition at line 157 of file BPy_Id.cpp.
Referenced by BPy_Id_from_Id(), Chain_init(), FrsCurve_init(), Id_init(), Id_Init(), and SVertex_init().