{"getClosestViewEdge",(PyCFunction)ViewMap_getClosestViewEdge,METH_VARARGS,"(double x, double y) Gets the viewedge the nearest to the 2D position specified as argument "},
{"getClosestFEdge",(PyCFunction)ViewMap_getClosestFEdge,METH_VARARGS,"(double x, double y) Gets the Fedge the nearest to the 2D position specified as argument "},
{"getScene3dBBox",(PyCFunction)ViewMap_getScene3dBBox,METH_NOARGS,"() Returns the scene 3D bounding box. "},
{"setScene3dBBox",(PyCFunction)ViewMap_setScene3dBBox,METH_VARARGS,"(BBox bb) Sets the scene 3D bounding box."},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_ViewMap type definition ------------------------------*/
PyTypeObjectViewMap_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"ViewMap",/* tp_name */
sizeof(BPy_ViewMap),/* tp_basicsize */
0,/* tp_itemsize */
/* methods */
(destructor)ViewMap___dealloc__,/* tp_dealloc */
NULL,/* printfunc tp_print; */
NULL,/* getattrfunc tp_getattr; */
NULL,/* setattrfunc tp_setattr; */
NULL,/* tp_compare */
(reprfunc)ViewMap___repr__,/* tp_repr */
/* Method suites for standard classes */
NULL,/* PyNumberMethods *tp_as_number; */
NULL,/* PySequenceMethods *tp_as_sequence; */
NULL,/* PyMappingMethods *tp_as_mapping; */
/* More standard operations (here for binary compatibility) */
NULL,/* hashfunc tp_hash; */
NULL,/* ternaryfunc tp_call; */
NULL,/* reprfunc tp_str; */
NULL,/* getattrofunc tp_getattro; */
NULL,/* setattrofunc tp_setattro; */
/* Functions to access object as input/output buffer */
NULL,/* PyBufferProcs *tp_as_buffer; */
/*** Flags to define presence of optional/expanded features ***/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,/* long tp_flags; */
NULL,/* char *tp_doc; Documentation string */
/*** Assigned meaning in release 2.0 ***/
/* call function for all accessible objects */
NULL,/* traverseproc tp_traverse; */
/* delete references to contained objects */
NULL,/* inquiry tp_clear; */
/*** Assigned meaning in release 2.1 ***/
/*** rich comparisons ***/
NULL,/* richcmpfunc tp_richcompare; */
/*** weak reference enabler ***/
0,/* long tp_weaklistoffset; */
/*** Added in release 2.2 ***/
/* Iterators */
NULL,/* getiterfunc tp_iter; */
NULL,/* iternextfunc tp_iternext; */
/*** Attribute descriptor and subclassing stuff ***/