#include "py_commands.h"#include "VMDApp.h"Go to the source code of this file.
[static]
Definition at line 28 of file py_render.C.
References as_pystring, VMDApp::filerender_name, VMDApp::filerender_num, get_vmdapp, and NULL.
[static]
Definition at line 66 of file py_render.C.
References VMDApp::filerender_render, get_vmdapp, and NULL.
[static]
Initial value:
"List all supported render methods\n\n" "Returns:\n" " (list of str): Supported render methods, suitable for calls to `render()`"
Definition at line 24 of file py_render.C.
[static]
Initial value:
{
{"listall", (PyCFunction)py_listall, METH_NOARGS, listall_doc},
{"render", (PyCFunction)py_render, METH_VARARGS | METH_KEYWORDS, render_doc},
{NULL, NULL}
}Definition at line 88 of file py_render.C.
Referenced by initrender.
[static]
Initial value:
"Render the current scene with an external or internal renderer. For some\n" "rendering engines this entails writing an input file and then invoking an\n" "external program\n\n" "Args:\n" " method (str): Render method. See `render.listall()` for supported values\n" " filename (str): File name to render to. For external rendering engines,\n" " filename may be input file to external program"
Definition at line 58 of file py_render.C.
[static]
Initial value:
"Methods to render the current scene using a specified rendering engine"
Definition at line 95 of file py_render.C.
Referenced by initrender.