|
Blender V4.5
|
#include "BPy_ViewMap.h"#include "BPy_BBox.h"#include "BPy_Convert.h"#include "Interface1D/BPy_FEdge.h"#include "Interface1D/BPy_ViewEdge.h"Go to the source code of this file.
Functions | |
| 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 *) |
Variables | |
| static PyMethodDef | BPy_ViewMap_methods [] |
| static PyGetSetDef | BPy_ViewMap_getseters [] |
| PyTypeObject | ViewMap_Type |
| PyDoc_STRVAR | ( | ViewMap_doc | , |
| "Class defining the ViewMap.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor." | ) |
References PyDoc_STRVAR().
| 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`" | ) |
References PyDoc_STRVAR().
| 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`" | ) |
References PyDoc_STRVAR().
| PyDoc_STRVAR | ( | ViewMap_scene_bbox_doc | , |
| "The 3D bounding box of the scene.\n" "\n" ":type: :class:`BBox`" | ) |
References PyDoc_STRVAR().
|
static |
Definition at line 57 of file BPy_ViewMap.cpp.
References ViewMap_dealloc(), and BPy_ViewMap::vm.
Referenced by ViewMap_dealloc().
|
static |
Definition at line 111 of file BPy_ViewMap.cpp.
References Any_BPy_FEdge_from_FEdge(), Freestyle::ViewMap::getClosestFEdge(), ViewMap_get_closest_fedge(), BPy_ViewMap::vm, x, and y.
Referenced by ViewMap_get_closest_fedge().
|
static |
Definition at line 82 of file BPy_ViewMap.cpp.
References BPy_ViewEdge_from_ViewEdge(), Freestyle::ViewMap::getClosestViewEdge(), ViewMap_get_closest_viewedge(), BPy_ViewMap::vm, x, and y.
Referenced by ViewMap_get_closest_viewedge().
| int ViewMap_Init | ( | PyObject * | module | ) |
Definition at line 21 of file BPy_ViewMap.cpp.
References ViewMap_Init(), and ViewMap_Type.
Referenced by Freestyle_Init(), and ViewMap_Init().
|
static |
Definition at line 46 of file BPy_ViewMap.cpp.
References Freestyle::ViewMap::ViewMap(), ViewMap_init(), and BPy_ViewMap::vm.
Referenced by ViewMap_init().
|
static |
Definition at line 63 of file BPy_ViewMap.cpp.
References ViewMap_repr(), and BPy_ViewMap::vm.
Referenced by ViewMap_repr().
|
static |
Definition at line 167 of file BPy_ViewMap.cpp.
References BPy_BBox_from_BBox(), Freestyle::ViewMap::getScene3dBBox(), ViewMap_scene_bbox_get(), and BPy_ViewMap::vm.
Referenced by ViewMap_scene_bbox_get().
|
static |
Definition at line 172 of file BPy_ViewMap.cpp.
References BPy_BBox_Check, Freestyle::ViewMap::setScene3dBBox(), ViewMap_scene_bbox_set(), and BPy_ViewMap::vm.
Referenced by ViewMap_scene_bbox_set().
|
static |
Definition at line 182 of file BPy_ViewMap.cpp.
|
static |
Definition at line 138 of file BPy_ViewMap.cpp.
| PyTypeObject ViewMap_Type |
Definition at line 193 of file BPy_ViewMap.cpp.
Referenced by ViewMap_Init().