#include "py_commands.h"
#include "CommandQueue.h"
#include "VMDApp.h"
#include "Axes.h"
Go to the source code of this file.
Functions | |
PyObject * | py_get_location (PyObject *self, PyObject *args) |
PyObject * | py_set_location (PyObject *self, PyObject *args, PyObject *kwargs) |
PyObject * | initaxes (void) |
Variables | |
char | getloc_doc [] |
char | setloc_doc [] |
PyMethodDef | methods [] |
const char | axes_moddoc [] |
|
Definition at line 90 of file py_axes.C. References VMDApp::axes, axes_moddoc, get_vmdapp, Axes::loc_description, methods, and NULL. |
|
Definition at line 32 of file py_axes.C. References as_pystring, VMDApp::axes, get_vmdapp, Axes::loc_description, Axes::location, and NULL. |
|
Definition at line 47 of file py_axes.C. References VMDApp::axes_set_location, get_vmdapp, and NULL. |
|
Initial value: "Methods to get and set the axes location" Definition at line 75 of file py_axes.C. Referenced by initaxes. |
|
Initial value: "Get current axes location.\n\n" "Returns:\n" " (str) Axes location, one of [OFF, ORIGIN, LOWERLEFT,\n" " LOWERRIGHT, UPPERLEFT, UPPERRIGHT]" |
|
Initial value: { {"get_location", (PyCFunction)py_get_location, METH_NOARGS, getloc_doc}, {"set_location", (PyCFunction)py_set_location, METH_VARARGS | METH_KEYWORDS, setloc_doc}, {NULL, NULL} } Definition at line 68 of file py_axes.C. Referenced by initaxes. |
|
Initial value: "Set current axes location.\n\n" "Args:\n" " location (str): New axes location, in [OFF, ORIGIN, LOWERLEFT,\n" " LOWERRIGHT, UPPERLEFT, UPPERRIGHT]" |