Go to the source code of this file.
|
| int | ViewMap_Init (PyObject *module) |
| |
| | PyDoc_STRVAR (ViewMap_doc, "Class defining the ViewMap.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.") |
| |
| static int | ViewMap_init (BPy_ViewMap *self, PyObject *args, PyObject *kwds) |
| |
| static void | ViewMap_dealloc (BPy_ViewMap *self) |
| |
| static PyObject * | ViewMap_repr (BPy_ViewMap *self) |
| |
| | PyDoc_STRVAR (ViewMap_get_closest_viewedge_doc, ".. method:: get_closest_viewedge(x, y)\n" "\n" " Gets the ViewEdge nearest to the 2D point specified as arguments.\n" "\n" " :arg x: X coordinate of a 2D point.\n" " :type x: float\n" " :arg y: Y coordinate of a 2D point.\n" " :type y: float\n" " :return: The ViewEdge nearest to the specified 2D point.\n" " :rtype: :class:`ViewEdge`") |
| |
| static PyObject * | ViewMap_get_closest_viewedge (BPy_ViewMap *self, PyObject *args, PyObject *kwds) |
| |
| | PyDoc_STRVAR (ViewMap_get_closest_fedge_doc, ".. method:: get_closest_fedge(x, y)\n" "\n" " Gets the FEdge nearest to the 2D point specified as arguments.\n" "\n" " :arg x: X coordinate of a 2D point.\n" " :type x: float\n" " :arg y: Y coordinate of a 2D point.\n" " :type y: float\n" " :return: The FEdge nearest to the specified 2D point.\n" " :rtype: :class:`FEdge`") |
| |
| static PyObject * | ViewMap_get_closest_fedge (BPy_ViewMap *self, PyObject *args, PyObject *kwds) |
| |
| | PyDoc_STRVAR (ViewMap_scene_bbox_doc, "The 3D bounding box of the scene.\n" "\n" ":type: :class:`BBox`") |
| |
| static PyObject * | ViewMap_scene_bbox_get (BPy_ViewMap *self, void *) |
| |
| static int | ViewMap_scene_bbox_set (BPy_ViewMap *self, PyObject *value, void *) |
| |
◆ PyDoc_STRVAR() [1/4]
| PyDoc_STRVAR |
( |
ViewMap_doc | , |
|
|
"Class defining the ViewMap.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor." | ) |
◆ PyDoc_STRVAR() [2/4]
| PyDoc_STRVAR |
( |
ViewMap_get_closest_fedge_doc | , |
|
|
".. method:: get_closest_fedge(x, y)\n" "\n" " Gets the FEdge nearest to the 2D point specified as arguments.\n" "\n" " :arg x: X coordinate of a 2D point.\n" " :type x: float\n" " :arg y: Y coordinate of a 2D point.\n" " :type y: float\n" " :return: The FEdge nearest to the specified 2D point.\n" " :rtype: :class:`FEdge`" | ) |
◆ PyDoc_STRVAR() [3/4]
| PyDoc_STRVAR |
( |
ViewMap_get_closest_viewedge_doc | , |
|
|
".. method:: get_closest_viewedge(x, y)\n" "\n" " Gets the ViewEdge nearest to the 2D point specified as arguments.\n" "\n" " :arg x: X coordinate of a 2D point.\n" " :type x: float\n" " :arg y: Y coordinate of a 2D point.\n" " :type y: float\n" " :return: The ViewEdge nearest to the specified 2D point.\n" " :rtype: :class:`ViewEdge`" | ) |
◆ PyDoc_STRVAR() [4/4]
| PyDoc_STRVAR |
( |
ViewMap_scene_bbox_doc | , |
|
|
"The 3D bounding box of the scene.\n" "\n" ":type: :class:`BBox`" | ) |
◆ ViewMap_dealloc()
◆ ViewMap_get_closest_fedge()
| static PyObject * ViewMap_get_closest_fedge |
( |
BPy_ViewMap * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ ViewMap_get_closest_viewedge()
| static PyObject * ViewMap_get_closest_viewedge |
( |
BPy_ViewMap * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ ViewMap_Init()
| int ViewMap_Init |
( |
PyObject * | module | ) |
|
◆ ViewMap_init()
| static int ViewMap_init |
( |
BPy_ViewMap * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ ViewMap_repr()
◆ ViewMap_scene_bbox_get()
| static PyObject * ViewMap_scene_bbox_get |
( |
BPy_ViewMap * | self, |
|
|
void * | ) |
|
static |
◆ ViewMap_scene_bbox_set()
| static int ViewMap_scene_bbox_set |
( |
BPy_ViewMap * | self, |
|
|
PyObject * | value, |
|
|
void * | ) |
|
static |
◆ BPy_ViewMap_getseters
| PyGetSetDef BPy_ViewMap_getseters[] |
|
static |
Initial value:= {
{"scene_bbox",
ViewMap_scene_bbox_doc,
nullptr},
{nullptr, nullptr, nullptr, nullptr, nullptr}
}
static PyObject * ViewMap_scene_bbox_get(BPy_ViewMap *self, void *)
static int ViewMap_scene_bbox_set(BPy_ViewMap *self, PyObject *value, void *)
Definition at line 168 of file BPy_ViewMap.cpp.
◆ BPy_ViewMap_methods
| PyMethodDef BPy_ViewMap_methods[] |
|
static |
Initial value:= {
{"get_closest_viewedge",
METH_VARARGS | METH_KEYWORDS,
ViewMap_get_closest_viewedge_doc},
{"get_closest_fedge",
METH_VARARGS | METH_KEYWORDS,
ViewMap_get_closest_fedge_doc},
{nullptr, nullptr, 0, nullptr},
}
static PyObject * ViewMap_get_closest_viewedge(BPy_ViewMap *self, PyObject *args, PyObject *kwds)
static PyObject * ViewMap_get_closest_fedge(BPy_ViewMap *self, PyObject *args, PyObject *kwds)
Definition at line 132 of file BPy_ViewMap.cpp.
◆ ViewMap_Type
| PyTypeObject ViewMap_Type |