10#define SWIG_VERSION 0x040300
12#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
14#define SWIG_name "_plplotc"
21#ifndef SWIGTEMPLATEDISAMBIGUATOR
22# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
23# define SWIGTEMPLATEDISAMBIGUATOR template
24# elif defined(__HP_aCC)
27# define SWIGTEMPLATEDISAMBIGUATOR template
29# define SWIGTEMPLATEDISAMBIGUATOR
35# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
36# define SWIGINLINE inline
45# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
46# define SWIGUNUSED __attribute__ ((__unused__))
51# define SWIGUNUSED __attribute__ ((__unused__))
57#ifndef SWIG_MSC_UNSUPPRESS_4505
59# pragma warning(disable : 4505)
65# define SWIGUNUSEDPARM(p)
67# define SWIGUNUSEDPARM(p) p SWIGUNUSED
73# define SWIGINTERN static SWIGUNUSED
77#ifndef SWIGINTERNINLINE
78# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
83# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
84# ifndef GCC_HASCLASSVISIBILITY
85# define GCC_HASCLASSVISIBILITY
91# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
92# if defined(STATIC_LINKED)
95# define SWIGEXPORT __declspec(dllexport)
98# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
99# define SWIGEXPORT __attribute__ ((visibility("default")))
108# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
109# define SWIGSTDCALL __stdcall
116#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
117# define _CRT_SECURE_NO_DEPRECATE
121#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
122# define _SCL_SECURE_NO_DEPRECATE
126#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
127# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
135#ifdef __INTEL_COMPILER
136# pragma warning disable 592
139#if defined(__cplusplus) && __cplusplus >=201103L
140# define SWIG_NULLPTR nullptr
142# define SWIG_NULLPTR NULL
158#if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
159 (defined __cplusplus && __cplusplus >= 201103L) || \
160 defined SWIG_HAVE_SNPRINTF) && \
161 !defined SWIG_NO_SNPRINTF
162# define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
163# define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
169# define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
170# define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
174#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
179#if !defined(PY_SSIZE_T_CLEAN) && !defined(SWIG_NO_PY_SSIZE_T_CLEAN)
180#define PY_SSIZE_T_CLEAN
184#pragma GCC diagnostic push
185#if defined(__cplusplus) && __cplusplus >=201703L
186#pragma GCC diagnostic ignored "-Wregister"
190#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
193#if defined(_MSC_VER) && _MSC_VER >= 1929
205#include <structmember.h>
208#pragma GCC diagnostic pop
223#define SWIG_RUNTIME_VERSION "4"
226#ifdef SWIG_TYPE_TABLE
227# define SWIG_QUOTE_STRING(x) #x
228# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
229# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
231# define SWIG_TYPE_TABLE_NAME
244# define SWIGRUNTIME SWIGINTERN
247#ifndef SWIGRUNTIMEINLINE
248# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
252#ifndef SWIG_BUFFER_SIZE
253# define SWIG_BUFFER_SIZE 1024
257#define SWIG_POINTER_DISOWN 0x1
258#define SWIG_CAST_NEW_MEMORY 0x2
259#define SWIG_POINTER_NO_NULL 0x4
260#define SWIG_POINTER_CLEAR 0x8
261#define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
264#define SWIG_POINTER_OWN 0x1
348#define SWIG_ERROR (-1)
352#define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
354#define SWIG_IsOK(r) (r >= 0)
355#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
358#define SWIG_CASTRANKLIMIT (1 << 8)
360#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
362#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
364#define SWIG_BADOBJ (SWIG_ERROR)
365#define SWIG_OLDOBJ (SWIG_OK)
366#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
367#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
369#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
370#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
371#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
372#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
373#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
374#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
377#if defined(SWIG_CASTRANK_MODE)
378# ifndef SWIG_TypeRank
379# define SWIG_TypeRank unsigned long
381# ifndef SWIG_MAXCASTRANK
382# define SWIG_MAXCASTRANK (2)
384# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
385# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
390 return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
393# define SWIG_AddCast(r) (r)
394# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
404typedef void *(*swig_converter_func)(
void *,
int *);
446 const char *f2,
const char *l2) {
447 for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
448 while ((*f1 ==
' ') && (f1 != l1)) ++f1;
449 while ((*f2 ==
' ') && (f2 != l2)) ++f2;
450 if (*f1 != *f2)
return (*f1 > *f2) ? 1 : -1;
452 return (
int)((l1 - f1) - (l2 - f2));
462 const char* te = tb + strlen(tb);
464 while (equiv != 0 && *ne) {
465 for (nb = ne; *ne; ++ne) {
466 if (*ne ==
'|')
break;
491 if (strcmp(iter->
type->
name, c) == 0) {
492 if (iter == ty->
cast)
518 if (iter->
type == from) {
519 if (iter == ty->
cast)
551 if (!ty || !ty->
dcast)
return ty;
552 while (ty && (ty->
dcast)) {
553 ty = (*ty->
dcast)(ptr);
577 if (!type)
return NULL;
578 if (type->str != NULL) {
579 const char *last_name = type->str;
581 for (s = type->str; *s; s++)
582 if (*s ==
'|') last_name = s+1;
630 size_t r = iter->
size - 1;
633 size_t i = (l + r) >> 1;
634 const char *iname = iter->
types[i]->
name;
636 int compare = strcmp(
name, iname);
638 return iter->
types[i];
639 }
else if (compare < 0) {
645 }
else if (compare > 0) {
654 }
while (iter != end);
681 for (; i < iter->
size; ++i) {
683 return iter->
types[i];
686 }
while (iter != end);
698 static const char hex[17] =
"0123456789abcdef";
699 const unsigned char *u = (
unsigned char *) ptr;
700 const unsigned char *eu = u + sz;
701 for (; u != eu; ++u) {
702 unsigned char uu = *u;
703 *(c++) = hex[(uu & 0xf0) >> 4];
704 *(c++) = hex[uu & 0xf];
714 unsigned char *u = (
unsigned char *) ptr;
715 const unsigned char *eu = u + sz;
716 for (; u != eu; ++u) {
719 if ((d >=
'0') && (d <=
'9'))
720 uu = (
unsigned char)((d -
'0') << 4);
721 else if ((d >=
'a') && (d <=
'f'))
722 uu = (
unsigned char)((d - (
'a'-10)) << 4);
726 if ((d >=
'0') && (d <=
'9'))
727 uu |= (
unsigned char)(d -
'0');
728 else if ((d >=
'a') && (d <=
'f'))
729 uu |= (
unsigned char)(d - (
'a'-10));
743 if ((2*
sizeof(
void *) + 2) > bsz)
return 0;
746 if (strlen(
name) + 1 > (bsz - (r - buff)))
return 0;
754 if (strcmp(c,
"NULL") == 0) {
767 size_t lname = (
name ? strlen(
name) : 0);
768 if ((2*sz + 2 + lname) > bsz)
return 0;
772 strncpy(r,
name,lname+1);
782 if (strcmp(c,
"NULL") == 0) {
797#define SWIG_UnknownError -1
798#define SWIG_IOError -2
799#define SWIG_RuntimeError -3
800#define SWIG_IndexError -4
801#define SWIG_TypeError -5
802#define SWIG_DivisionByZero -6
803#define SWIG_OverflowError -7
804#define SWIG_SyntaxError -8
805#define SWIG_ValueError -9
806#define SWIG_SystemError -10
807#define SWIG_AttributeError -11
808#define SWIG_MemoryError -12
809#define SWIG_NullReferenceError -13
813#if PY_VERSION_HEX >= 0x03000000
815#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
816#define PyInt_Check(x) PyLong_Check(x)
817#define PyInt_AsLong(x) PyLong_AsLong(x)
818#define PyInt_FromLong(x) PyLong_FromLong(x)
819#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
820#define PyString_Check(name) PyBytes_Check(name)
821#define PyString_FromString(x) PyUnicode_FromString(x)
822#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
823#define PyString_AsString(str) PyBytes_AsString(str)
824#define PyString_Size(str) PyBytes_Size(str)
825#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
826#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
827#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
833#if PY_VERSION_HEX >= 0x03000000
834# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
836# define SWIG_Python_str_FromFormat PyString_FromFormat
844#if PY_VERSION_HEX >= 0x03030000
845# if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
847 return PyUnicode_AsUTF8AndSize(str, psize);
850 *pbytes = PyUnicode_AsUTF8String(str);
851 chars = *pbytes ? PyBytes_AsString(*pbytes) : NULL;
853 *psize = PyBytes_Size(*pbytes);
859 PyString_AsStringAndSize(str, &chars, psize);
867#if PY_VERSION_HEX >= 0x03000000
868 return PyUnicode_FromString(c);
870 return PyString_FromString(c);
875# define SWIGPY_USE_CAPSULE
876#ifdef SWIGPYTHON_BUILTIN
877# define SWIGPY_CAPSULE_ATTR_NAME "type_pointer_capsule_builtin" SWIG_TYPE_TABLE_NAME
879# define SWIGPY_CAPSULE_ATTR_NAME "type_pointer_capsule" SWIG_TYPE_TABLE_NAME
881# define SWIGPY_CAPSULE_NAME ("swig_runtime_data" SWIG_RUNTIME_VERSION "." SWIGPY_CAPSULE_ATTR_NAME)
883#if PY_VERSION_HEX < 0x03020000
884#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
885#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
886#define Py_hash_t long
890# define PyTuple_GET_ITEM PyTuple_GetItem
893# define PyTuple_SET_ITEM PyTuple_SetItem
894# define PyTuple_GET_SIZE PyTuple_Size
895# define PyCFunction_GET_FLAGS PyCFunction_GetFlags
896# define PyCFunction_GET_FUNCTION PyCFunction_GetFunction
897# define PyCFunction_GET_SELF PyCFunction_GetSelf
898# define PyList_GET_ITEM PyList_GetItem
899# define PyList_SET_ITEM PyList_SetItem
900# define PySliceObject PyObject
905# define SWIG_Py_INCREF Py_IncRef
906# define SWIG_Py_XINCREF Py_IncRef
907# define SWIG_Py_DECREF Py_DecRef
908# define SWIG_Py_XDECREF Py_DecRef
910# define SWIG_Py_INCREF Py_INCREF
911# define SWIG_Py_XINCREF Py_XINCREF
912# define SWIG_Py_DECREF Py_DECREF
913# define SWIG_Py_XDECREF Py_XDECREF
925 type = PyExc_MemoryError;
928 type = PyExc_IOError;
931 type = PyExc_RuntimeError;
934 type = PyExc_IndexError;
937 type = PyExc_TypeError;
940 type = PyExc_ZeroDivisionError;
943 type = PyExc_OverflowError;
946 type = PyExc_SyntaxError;
949 type = PyExc_ValueError;
952 type = PyExc_SystemError;
955 type = PyExc_AttributeError;
958 type = PyExc_TypeError;
961 type = PyExc_RuntimeError;
972 PyObject *traceback = 0;
974 if (PyErr_Occurred())
975 PyErr_Fetch(&type, &
value, &traceback);
977 PyObject *old_str = PyObject_Str(
value);
978 PyObject *bytes = NULL;
983 PyErr_Format(type,
"%s %s", tmp, mesg);
985 PyErr_Format(type,
"%s", mesg);
990 PyErr_SetString(PyExc_RuntimeError, mesg);
1000 error = PyErr_Occurred();
1001 return error && PyErr_GivenExceptionMatches(
error, PyExc_TypeError);
1010 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
1011 PyErr_Fetch(&type, &
value, &traceback);
1012#if PY_VERSION_HEX >= 0x03000000
1013 newvalue = PyUnicode_FromFormat(
"%S\nAdditional information:\n%s",
value, message);
1015 newvalue = PyString_FromFormat(
"%s\nAdditional information:\n%s", PyString_AsString(
value), message);
1019 PyErr_Restore(type, newvalue, traceback);
1021 PyErr_Restore(type,
value, traceback);
1025 PyErr_SetString(PyExc_TypeError, message);
1029#if defined(SWIG_PYTHON_NO_THREADS)
1030# if defined(SWIG_PYTHON_THREADS)
1031# undef SWIG_PYTHON_THREADS
1034#if defined(SWIG_PYTHON_THREADS)
1035# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
1036# define SWIG_PYTHON_USE_GIL
1038# if defined(SWIG_PYTHON_USE_GIL)
1039# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1040# if PY_VERSION_HEX < 0x03070000
1041# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
1043# define SWIG_PYTHON_INITIALIZE_THREADS
1047 class SWIG_Python_Thread_Block {
1049 PyGILState_STATE state;
1051 void end() {
if (status) { PyGILState_Release(state); status =
false;} }
1052 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
1053 ~SWIG_Python_Thread_Block() { end(); }
1055 class SWIG_Python_Thread_Allow {
1057 PyThreadState *save;
1059 void end() {
if (status) { status =
false; PyEval_RestoreThread(save); }}
1060 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
1061 ~SWIG_Python_Thread_Allow() { end(); }
1063# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
1064# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
1065# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
1066# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
1068# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
1069# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
1070# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
1071# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
1074# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1075# define SWIG_PYTHON_INITIALIZE_THREADS
1077# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
1078# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1080# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
1081# define SWIG_PYTHON_THREAD_END_BLOCK
1083# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
1084# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1086# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
1087# define SWIG_PYTHON_THREAD_END_ALLOW
1091# define SWIG_PYTHON_INITIALIZE_THREADS
1092# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1093# define SWIG_PYTHON_THREAD_END_BLOCK
1094# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1095# define SWIG_PYTHON_THREAD_END_ALLOW
1111#define SWIG_PY_POINTER 4
1112#define SWIG_PY_BINARY 5
1138#if PY_VERSION_HEX < 0x02070000
1139# error "This version of SWIG only supports Python >= 2.7"
1142#if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03030000
1143# error "This version of SWIG only supports Python 3 >= 3.3"
1149#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
1150#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
1151#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
1153#ifdef SWIGPYTHON_BUILTIN
1154#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
1156#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1159#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1161#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
1162#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
1163#define swig_owntype int
1166#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1167#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1170#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1171#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1174#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1175#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
1178#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1179#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1184#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
1185#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1186#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
1188#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1189#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1190#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1191#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1192#define SWIG_fail goto fail
1202 PyErr_SetObject(errtype, obj);
1210 PyErr_SetString(errtype, msg);
1214#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1218#if defined(SWIGPYTHON_BUILTIN)
1221SwigPyBuiltin_AddPublicSymbol(PyObject *seq,
const char *key) {
1222 PyObject *s = PyString_InternFromString(key);
1223 PyList_Append(seq, s);
1229 PyDict_SetItemString(d,
name, obj);
1231 if (public_interface)
1232 SwigPyBuiltin_AddPublicSymbol(public_interface,
name);
1239 PyDict_SetItemString(d,
name, obj);
1251 }
else if (result == Py_None && is_void) {
1255 if (!PyList_Check(result)) {
1256 PyObject *o2 = result;
1257 result = PyList_New(1);
1259 PyList_SET_ITEM(result, 0, o2);
1265 PyList_Append(result,obj);
1280 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got none",
1285 if (!PyTuple_Check(args)) {
1289 for (i = 1; i <
max; ++i) {
1294 PyErr_SetString(PyExc_SystemError,
"UnpackTuple() argument list is not a tuple");
1297 Py_ssize_t l = PyTuple_GET_SIZE(args);
1299 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1302 }
else if (l >
max) {
1303 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1308 for (i = 0; i < l; ++i) {
1309 objs[i] = PyTuple_GET_ITEM(args, i);
1311 for (; l <
max; ++l) {
1323 assert(PyDict_Check(kwargs));
1324 if (PyDict_Size(kwargs) > 0) {
1325 PyErr_Format(PyExc_TypeError,
"%s() does not take keyword arguments",
name);
1333#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1340#define SWIG_STATIC_POINTER(var) var
1342#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1350#define SWIG_newvarlink() SWIG_Python_newvarlink()
1351#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
1352#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
1360 PyObject *(*get_attr)(void);
1372#if PY_VERSION_HEX >= 0x03000000
1373 return PyUnicode_InternFromString(
"<Swig global variables>");
1375 return PyString_FromString(
"<Swig global variables>");
1382#if PY_VERSION_HEX >= 0x03000000
1383 PyObject *str = PyUnicode_InternFromString(
"(");
1387 for (var = v->
vars; var; var=var->
next) {
1388 tail = PyUnicode_FromString(var->
name);
1389 joined = PyUnicode_Concat(str,
tail);
1394 tail = PyUnicode_InternFromString(
", ");
1395 joined = PyUnicode_Concat(str,
tail);
1401 tail = PyUnicode_InternFromString(
")");
1402 joined = PyUnicode_Concat(str,
tail);
1407 PyObject *str = PyString_FromString(
"(");
1409 for (var = v->
vars; var; var=var->
next) {
1410 PyString_ConcatAndDel(&str,PyString_FromString(var->
name));
1411 if (var->
next) PyString_ConcatAndDel(&str,PyString_FromString(
", "));
1413 PyString_ConcatAndDel(&str,PyString_FromString(
")"));
1433 PyObject *res = NULL;
1436 if (strcmp(var->
name,n) == 0) {
1442 if (res == NULL && !PyErr_Occurred()) {
1443 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1454 if (strcmp(var->
name,n) == 0) {
1460 if (res == 1 && !PyErr_Occurred()) {
1461 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1466#if !defined(SWIGPYTHON_BUILTIN) && PY_VERSION_HEX >= 0x03030000
1467#define SWIG_HEAPTYPES
1472 static char varlink__doc__[] =
"Swig var link object";
1473#ifndef SWIG_HEAPTYPES
1474 static PyTypeObject varlink_type;
1475 static int type_init = 0;
1477 const PyTypeObject tmp = {
1478#if PY_VERSION_HEX >= 0x03000000
1479 PyVarObject_HEAD_INIT(NULL, 0)
1481 PyObject_HEAD_INIT(NULL)
1488#if PY_VERSION_HEX < 0x030800b4
1512 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1515#if PY_VERSION_HEX >= 0x03040000
1518#if PY_VERSION_HEX >= 0x03080000
1521#if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
1524#if PY_VERSION_HEX >= 0x030C0000
1527#if PY_VERSION_HEX >= 0x030d00a4
1540 if (PyType_Ready(&varlink_type) < 0)
1543 return &varlink_type;
1545 PyType_Slot slots[] = {
1551 { Py_tp_doc, (
void *)varlink__doc__ },
1554 PyType_Spec spec = {
1561 return (PyTypeObject *)PyType_FromSpec(&spec);
1572 return ((PyObject*) result);
1580 size_t size = strlen(
name)+1;
1581 gv->
name = (
char *)malloc(size);
1612#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1613#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1615#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1617#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
1618#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
1629 PyObject *none = Py_None;
1650 int fail = data ? data->implicitconv : 0;
1652 PyErr_SetString(PyExc_TypeError,
"Implicit conversion is prohibited for explicit constructors.");
1659 PyObject *klass = data ? data->klass : 0;
1660 return (klass ? klass : PyExc_RuntimeError);
1675 if (PyClass_Check(obj)) {
1678 data->newargs = obj;
1680 data->newraw = PyObject_GetAttrString(data->klass,
"__new__");
1682 data->newargs = PyTuple_New(1);
1683 if (data->newargs) {
1685 PyTuple_SET_ITEM(data->newargs, 0, obj);
1694 data->newargs = obj;
1698 data->destroy = PyObject_GetAttrString(data->klass,
"__swig_destroy__");
1699 if (PyErr_Occurred()) {
1703 if (data->destroy) {
1704 data->delargs = !(PyCFunction_GET_FLAGS(data->destroy) & METH_O);
1708 data->implicitconv = 0;
1732#ifdef SWIGPYTHON_BUILTIN
1738#ifdef SWIGPYTHON_BUILTIN
1741SwigPyObject_get___dict__(PyObject *v, PyObject *
SWIGUNUSEDPARM(args))
1746 sobj->dict = PyDict_New();
1757 return PyLong_FromVoidPtr(v->
ptr);
1763 PyObject *res = NULL;
1764 PyObject *args = PyTuple_New(1);
1769 PyTuple_SET_ITEM(args, 0, val);
1772#if PY_VERSION_HEX >= 0x03000000
1773 res = PyUnicode_Format(ofmt,args);
1775 res = PyString_Format(ofmt,args);
1802 if (repr && v->
next) {
1805# if PY_VERSION_HEX >= 0x03000000
1806 PyObject *joined = PyUnicode_Concat(repr, nrep);
1811 PyString_ConcatAndDel(&repr,nrep);
1834 return (i < j) ? -1 : ((i > j) ? 1 : 0);
1841 PyObject* res = NULL;
1842 if (!PyErr_Occurred()) {
1843 if (op != Py_EQ && op != Py_NE) {
1845 return Py_NotImplemented;
1855#ifdef SWIGPYTHON_BUILTIN
1860 assert(SwigPyObject_stype);
1877 PyTypeObject *op_type = Py_TYPE(op);
1878#ifdef SWIGPYTHON_BUILTIN
1879 if (PyType_IsSubtype(op_type, target_tp))
1881 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1883# ifdef Py_LIMITED_API
1887 if (op_type == target_tp)
1889# ifdef Py_LIMITED_API
1890 tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
1893 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyObject");
1897 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1911 PyObject *next = sobj->
next;
1915 PyObject *destroy = data ? data->destroy : 0;
1927 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
1928 PyErr_Fetch(&type, &
value, &traceback);
1930 if (data->delargs) {
1940 PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
1941 PyObject *mself = PyCFunction_GET_SELF(destroy);
1942 res = ((*meth)(mself, v));
1945 PyErr_WriteUnraisable(destroy);
1947 PyErr_Restore(type,
value, traceback);
1951#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1954 printf(
"swig/python detected a memory leak of type '%s', no destructor found.\n", (
name ?
name :
"unknown"));
1960#ifdef SWIGPYTHON_BUILTIN
1971 PyErr_SetString(PyExc_TypeError,
"Attempt to append a non SwigPyObject");
2012 if (!PyArg_UnpackTuple(args,
"own", 0, 1, &val)) {
2016 PyObject *obj = PyBool_FromLong(sobj->
own);
2018 if (PyObject_IsTrue(val)) {
2032 {
"own",
SwigPyObject_own, METH_VARARGS,
"returns/sets ownership of the pointer"},
2041 static char swigobject_doc[] =
"Swig object carries a C/C++ instance pointer";
2042#ifndef SWIG_HEAPTYPES
2043 static PyNumberMethods SwigPyObject_as_number = {
2048#
if PY_VERSION_HEX < 0x03000000
2064#
if PY_VERSION_HEX < 0x03000000
2068#if PY_VERSION_HEX < 0x03000000
2074#if PY_VERSION_HEX < 0x03000000
2078#if PY_VERSION_HEX >= 0x03050000
2079 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2080#elif PY_VERSION_HEX >= 0x03000000
2081 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2083 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2087 static PyTypeObject swigpyobject_type;
2088 static int type_init = 0;
2090 const PyTypeObject tmp = {
2091#if PY_VERSION_HEX >= 0x03000000
2092 PyVarObject_HEAD_INIT(NULL, 0)
2094 PyObject_HEAD_INIT(NULL)
2101#if PY_VERSION_HEX < 0x030800b4
2108#if PY_VERSION_HEX >= 0x03000000
2114 &SwigPyObject_as_number,
2120 PyObject_GenericGetAttr,
2151#
if PY_VERSION_HEX >= 0x03040000
2154#
if PY_VERSION_HEX >= 0x03080000
2157#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2160#
if PY_VERSION_HEX >= 0x030C0000
2163#
if PY_VERSION_HEX >= 0x030d00a4
2174 swigpyobject_type = tmp;
2176 if (PyType_Ready(&swigpyobject_type) != 0)
2179 return &swigpyobject_type;
2181 PyType_Slot slots[] = {
2184 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2185 { Py_tp_doc, (
void *)swigobject_doc },
2191 PyType_Spec spec = {
2195 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,
2198 return (PyTypeObject *)PyType_FromSpec(&spec);
2211#ifdef SWIGPYTHON_BUILTIN
2221 return (PyObject *)sobj;
2262 int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
2263 return s ? s : strncmp((
const char *)v->
pack, (
const char *)w->
pack, 2*v->
size);
2276#ifdef Py_LIMITED_API
2280 PyTypeObject* op_type = Py_TYPE(op);
2283#ifdef Py_LIMITED_API
2284 tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
2287 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyPacked");
2291 return (strcmp(op_type->tp_name,
"SwigPyPacked") == 0);
2307 static char swigpacked_doc[] =
"Swig object carries a C/C++ instance pointer";
2308#ifndef SWIG_HEAPTYPES
2309 static PyTypeObject swigpypacked_type;
2310 static int type_init = 0;
2312 const PyTypeObject tmp = {
2313#if PY_VERSION_HEX>=0x03000000
2314 PyVarObject_HEAD_INIT(NULL, 0)
2316 PyObject_HEAD_INIT(NULL)
2323#if PY_VERSION_HEX < 0x030800b4
2330#if PY_VERSION_HEX>=0x03000000
2342 PyObject_GenericGetAttr,
2373#
if PY_VERSION_HEX >= 0x03040000
2376#
if PY_VERSION_HEX >= 0x03080000
2379#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2382#
if PY_VERSION_HEX >= 0x030C0000
2385#
if PY_VERSION_HEX >= 0x030d00a4
2396 swigpypacked_type = tmp;
2398 if (PyType_Ready(&swigpypacked_type) != 0)
2401 return &swigpypacked_type;
2403 PyType_Slot slots[] = {
2407 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2408 { Py_tp_doc, (
void *)swigpacked_doc },
2411 PyType_Spec spec = {
2418 return (PyTypeObject *)PyType_FromSpec(&spec);
2427 void *pack = malloc(size);
2429 memcpy(pack, ptr, size);
2434 PyObject_Free((PyObject *)sobj);
2438 return (PyObject *) sobj;
2446 if (sobj->
size != size)
return 0;
2447 memcpy(ptr, sobj->
pack, size);
2471#if PY_VERSION_HEX>=0x03000000
2472#define SWIG_PYTHON_SLOW_GETSET_THIS
2483#ifdef SWIGPYTHON_BUILTIN
2485# ifdef PyWeakref_CheckProxy
2486 if (PyWeakref_CheckProxy(pyobj)) {
2487#if PY_VERSION_HEX >= 0x030D0000
2488 PyWeakref_GetRef(pyobj, &pyobj);
2491 pyobj = PyWeakref_GET_OBJECT(pyobj);
2502#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2503 if (PyInstance_Check(pyobj)) {
2504 obj = _PyInstance_Lookup(pyobj,
SWIG_This());
2506 PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
2507 if (dictptr != NULL) {
2508 PyObject *dict = *dictptr;
2509 obj = dict ? PyDict_GetItem(dict,
SWIG_This()) : 0;
2511#ifdef PyWeakref_CheckProxy
2512 if (PyWeakref_CheckProxy(pyobj)) {
2513 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
2517 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2521 if (PyErr_Occurred()) PyErr_Clear();
2527 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2531 if (PyErr_Occurred()) PyErr_Clear();
2551 int oldown = sobj->
own;
2569 if (obj == Py_None && !implicit_conv) {
2581 void *vptr = sobj->
ptr;
2586 if (ptr) *ptr = vptr;
2606 if (ptr) *ptr = vptr;
2615 *own = *own | sobj->
own;
2625 if (implicit_conv) {
2627 if (data && !data->implicitconv) {
2628 PyObject *klass = data->klass;
2631 data->implicitconv = 1;
2633 data->implicitconv = 0;
2634 if (PyErr_Occurred()) {
2659 if (!
SWIG_IsOK(res) && obj == Py_None) {
2662 if (PyErr_Occurred())
2675 if (!PyCFunction_Check(obj)) {
2682#ifndef Py_LIMITED_API
2683 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
2685 PyObject* pystr_doc = PyObject_GetAttrString(obj,
"__doc__");
2686 PyObject *bytes = NULL;
2689 const char *desc = doc ? strstr(doc,
"swig_ptr: ") : 0;
2692#ifdef Py_LIMITED_API
2739 PyObject *newraw = data->newraw;
2741 inst = PyObject_Call(newraw, data->newargs, NULL);
2743#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2744 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2745 if (dictptr != NULL) {
2746 PyObject *dict = *dictptr;
2748 dict = PyDict_New();
2752 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2759 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2766#if PY_VERSION_HEX >= 0x03000000
2767 PyObject *empty_args = PyTuple_New(0);
2769 PyObject *empty_kwargs = PyDict_New();
2771#ifndef Py_LIMITED_API
2772 newfunc newfn = ((PyTypeObject *)data->newargs)->tp_new;
2774 newfunc newfn = (newfunc)PyType_GetSlot((PyTypeObject *)data->newargs, Py_tp_new);
2776 inst = newfn((PyTypeObject *)data->newargs, empty_args, empty_kwargs);
2779 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2783 PyType_Modified(Py_TYPE(inst));
2790 PyObject *dict = PyDict_New();
2792 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2793 inst = PyInstance_NewRaw(data->newargs, dict);
2804#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2805 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2806 if (dictptr != NULL) {
2807 PyObject *dict = *dictptr;
2809 dict = PyDict_New();
2813 return PyDict_SetItem(dict,
SWIG_This(), swig_this);
2819 return PyObject_SetAttr(inst,
SWIG_This(), swig_this);
2853 if (clientdata && clientdata->
pytype) {
2858#ifndef Py_LIMITED_API
2859 allocfunc alloc = clientdata->
pytype->tp_alloc;
2861 allocfunc alloc = (allocfunc)PyType_GetSlot(clientdata->
pytype, Py_tp_alloc);
2863 PyObject *next_self = alloc(clientdata->
pytype, 0);
2864 while (newobj->
next)
2866 newobj->
next = next_self;
2868#ifdef SWIGPYTHON_BUILTIN
2874#ifdef SWIGPYTHON_BUILTIN
2885 return (PyObject*) newobj;
2912#ifdef SWIG_LINK_RUNTIME
2913void *SWIG_ReturnGlobalTypeList(
void *);
2929#ifdef SWIG_LINK_RUNTIME
2930 static void *type_pointer = (
void *)0;
2932 if (!type_pointer) {
2933 type_pointer = SWIG_ReturnGlobalTypeList((
void *)0);
2937 if (PyErr_Occurred()) {
2939 type_pointer = (
void *)0;
2975#if PY_VERSION_HEX >= 0x03000000
2979 static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };
2980 PyObject *module = Py_InitModule(
"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
2983 if (pointer && module) {
3000 PyObject *obj = PyDict_GetItem(cache, key);
3008 obj = PyCapsule_New((
void*) descriptor, NULL, NULL);
3010 PyDict_SetItem(cache, key, obj);
3022#define SWIG_POINTER_EXCEPTION 0
3023#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
3024#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
3029 if (PyErr_Occurred()) {
3031 PyObject *
value = 0;
3032 PyObject *traceback = 0;
3033 PyErr_Fetch(&type, &
value, &traceback);
3035 PyObject *old_str = PyObject_Str(
value);
3036 PyObject *bytes = NULL;
3038 const char *errmesg = tmp ? tmp :
"Invalid error message";
3042 PyErr_Format(type,
"%s %s", mesg, errmesg);
3044 PyErr_Format(type,
"%s %s", errmesg, mesg);
3058 if (PyErr_Occurred()) {
3061 PyOS_snprintf(mesg,
sizeof(mesg),
"argument number %d:", argnum);
3073 return ty ? ty->
str :
"";
3081#if defined(SWIG_COBJECT_TYPES)
3085 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, 'SwigPyObject(%s)' is received",
3092#ifndef Py_LIMITED_API
3094 const char *otype = (obj ? obj->ob_type->tp_name : 0);
3096 PyObject *str = PyObject_Str(obj);
3097 PyObject *bytes = NULL;
3100 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s(%s)' is received",
3103 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s' is received",
3112 PyErr_Format(PyExc_TypeError,
"a '%s' is expected", type);
3114 PyErr_Format(PyExc_TypeError,
"unexpected type is received");
3129#ifdef SWIGPYTHON_BUILTIN
3131SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *
name, PyObject *
value) {
3132 PyTypeObject *tp = obj->ob_type;
3134 PyObject *encoded_name;
3138# ifdef Py_USING_UNICODE
3139 if (PyString_Check(
name)) {
3140 name = PyUnicode_Decode(PyString_AsString(
name), PyString_Size(
name), NULL, NULL);
3143 }
else if (!PyUnicode_Check(
name))
3145 if (!PyString_Check(
name))
3148 PyErr_Format(PyExc_TypeError,
"attribute name must be string, not '%.200s'",
name->ob_type->tp_name);
3155 if (PyType_Ready(tp) != 0)
3159 descr = _PyType_Lookup(tp,
name);
3162 f = descr->ob_type->tp_descr_set;
3164 if (PyString_Check(
name)) {
3165 encoded_name =
name;
3168 encoded_name = PyUnicode_AsUTF8String(
name);
3172 PyErr_Format(PyExc_AttributeError,
"'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
3175 res = f(descr, obj,
value);
3191#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
3193#define SWIG_contract_assert(expr, msg) do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
3199#define SWIGTYPE_p_PLGraphicsIn swig_types[0]
3200#define SWIGTYPE_p_PLcGrid swig_types[1]
3201#define SWIGTYPE_p_PLcGrid2 swig_types[2]
3202#define SWIGTYPE_p_char swig_types[3]
3203#define SWIGTYPE_p_double swig_types[4]
3204#define SWIGTYPE_p_f_double_double__int swig_types[5]
3205#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void swig_types[6]
3206#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void swig_types[7]
3207#define SWIGTYPE_p_f_int_p_double_p_double__void swig_types[8]
3208#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void swig_types[9]
3209#define SWIGTYPE_p_int swig_types[10]
3210#define SWIGTYPE_p_p_char swig_types[11]
3211#define SWIGTYPE_p_p_double swig_types[12]
3212#define SWIGTYPE_p_unsigned_int swig_types[13]
3215#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
3216#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
3220#ifdef SWIG_TypeQuery
3221# undef SWIG_TypeQuery
3223#define SWIG_TypeQuery SWIG_Python_TypeQuery
3228#if PY_VERSION_HEX >= 0x03000000
3229# define SWIG_init PyInit__plplotc
3232# define SWIG_init init_plplotc
3236#define SWIG_as_voidptr(a) (void *)((const void *)(a))
3237#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
3240#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
3241#include <arrayobject.h>
3245#define NPY_PLINT NPY_INT32
3248#define NPY_PLFLT NPY_FLOAT64
3250#define NPY_PLFLT NPY_FLOAT32
3254#if !defined ( PySequence_Fast_GET_ITEM )
3255 #define PySequence_Fast_GET_ITEM PySequence_GetItem
3257#define PySequence_Size PySequence_Length
3268 if (PyFloat_Check(obj)) {
3269 if (val) *val = PyFloat_AsDouble(obj);
3271#if PY_VERSION_HEX < 0x03000000
3272 }
else if (PyInt_Check(obj)) {
3273 if (val) *val = (double) PyInt_AsLong(obj);
3276 }
else if (PyLong_Check(obj)) {
3277 double v = PyLong_AsDouble(obj);
3278 if (!PyErr_Occurred()) {
3285#ifdef SWIG_PYTHON_CAST_MODE
3288 double d = PyFloat_AsDouble(obj);
3289 if (!PyErr_Occurred()) {
3296 long v = PyLong_AsLong(obj);
3297 if (!PyErr_Occurred()) {
3310 #define SWIG_From_double PyFloat_FromDouble
3325 return PyInt_FromLong((
long)
value);
3330#if !defined(SWIG_NO_LLONG_MAX)
3331# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
3332# define LLONG_MAX __LONG_LONG_MAX__
3333# define LLONG_MIN (-LLONG_MAX - 1LL)
3334# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
3348 if ((
min <= x && x <=
max)) {
3353 rd = ((x - fx) < 0.5) ? fx : cx;
3354 if ((errno == EDOM) || (errno == ERANGE)) {
3357 double summ, reps, diff;
3360 }
else if (rd > x) {
3367 if (reps < 8*DBL_EPSILON) {
3380#if PY_VERSION_HEX < 0x03000000
3381 if (PyInt_Check(obj)) {
3382 if (val) *val = PyInt_AsLong(obj);
3386 if (PyLong_Check(obj)) {
3387 long v = PyLong_AsLong(obj);
3388 if (!PyErr_Occurred()) {
3396#ifdef SWIG_PYTHON_CAST_MODE
3399 long v = PyInt_AsLong(obj);
3400 if (!PyErr_Occurred()) {
3412 const double long_max =
sizeof(long) == 8 ? 0x7ffffffffffffc00LL : LONG_MAX;
3415 if (val) *val = (long)(d);
3431 if ((v < INT_MIN || v > INT_MAX)) {
3434 if (val) *val = (int)(v);
3444#if PY_VERSION_HEX < 0x03000000
3445 if (PyInt_Check(obj)) {
3446 long v = PyInt_AsLong(obj);
3455 if (PyLong_Check(obj)) {
3456 unsigned long v = PyLong_AsUnsignedLong(obj);
3457 if (!PyErr_Occurred()) {
3465#ifdef SWIG_PYTHON_CAST_MODE
3468 unsigned long v = PyLong_AsUnsignedLong(obj);
3469 if (!PyErr_Occurred()) {
3481 const double ulong_max =
sizeof(
unsigned long) == 8 ? 0xfffffffffffff800ULL : ULONG_MAX;
3483 if (val) *val = (
unsigned long)(d);
3499 if ((v > UINT_MAX)) {
3502 if (val) *val = (
unsigned int)(v);
3512 return PyInt_FromSize_t((
size_t)
value);
3519 static int init = 0;
3534#if PY_VERSION_HEX>=0x03000000
3535#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3536 if (PyBytes_Check(obj))
3538 if (PyUnicode_Check(obj))
3541 if (PyString_Check(obj))
3544 char *cstr; Py_ssize_t len;
3545 PyObject *bytes = NULL;
3549#if PY_VERSION_HEX>=0x03000000 && defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3550 if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1)
3557 if (bytes && cptr) {
3559 cstr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3567 if (cptr) *cptr = cstr;
3568 if (psize) *psize = len + 1;
3572#if defined(SWIG_PYTHON_2_UNICODE)
3573#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3574#error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once"
3576#if PY_VERSION_HEX<0x03000000
3577 if (PyUnicode_Check(obj)) {
3578 char *cstr; Py_ssize_t len;
3579 if (!alloc && cptr) {
3582 obj = PyUnicode_AsUTF8String(obj);
3585 if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) {
3588 *cptr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3590 if (psize) *psize = len + 1;
3602 if (pchar_descriptor) {
3605 if (cptr) *cptr = (
char *) vptr;
3606 if (psize) *psize = vptr ? (strlen((
char *)vptr) + 1) : 0;
3619 char* cptr = 0;
size_t csize = 0;
int alloc =
SWIG_OLDOBJ;
3623 if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize;
3624 if (csize <= size) {
3626 if (csize) memcpy(val, cptr, csize*
sizeof(
char));
3627 if (csize < size) memset(val + csize, 0, (size - csize)*
sizeof(
char));
3645 if (size > INT_MAX) {
3647 return pchar_descriptor ?
3650#if PY_VERSION_HEX >= 0x03000000
3651#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3652 return PyBytes_FromStringAndSize(carray, (Py_ssize_t)(size));
3654 return PyUnicode_DecodeUTF8(carray, (Py_ssize_t)(size),
"surrogateescape");
3657 return PyString_FromStringAndSize(carray, (Py_ssize_t)(size));
3670 for (p = s; maxlen-- && *p; p++)
3687 if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) {
3688 if (val) *val = (char)(v);
3706 PyArrayObject* tmp = (PyArrayObject *) PyArray_ContiguousFromObject( in,
NPY_PLINT,
3711 if ( PyArray_Check( in ) )
3714 tmp = (PyArrayObject *) PyArray_Cast( (PyArrayObject *) in,
NPY_PLINT );
3721#define myArray_ContiguousFromObject PyArray_ContiguousFromObject
3724 PyObject *resultobj = 0;
3738 PyObject *swig_obj[2] ;
3751 arg1 = (
PLFLT)(val1);
3756 arg2 = (
PLFLT)(val2);
3757 pltr0(arg1,arg2,arg3,arg4,arg5);
3792 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3801 PyErr_SetString( PyExc_ValueError,
"Expected a sequence to two 1D arrays." );
3810 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3818 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3840 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3849 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two 2D arrays." );
3855 PyErr_SetString( PyExc_ValueError,
"Arrays must be same size." );
3864 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3872 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3896 PyObject *resultobj = 0;
3910 PyObject *swig_obj[3] ;
3920 arg1 = (
PLFLT)(val1);
3925 arg2 = (
PLFLT)(val2);
3931 pltr1(arg1,arg2,arg3,arg4,arg5);
3958 PyObject *resultobj = 0;
3972 PyObject *swig_obj[3] ;
3982 arg1 = (
PLFLT)(val1);
3987 arg2 = (
PLFLT)(val2);
3993 pltr2(arg1,arg2,arg3,arg4,arg5);
4022 static PyInterpreterState *save_interp = NULL;
4032#define MY_BLOCK_THREADS { \
4033 PyThreadState *prev_state, *new_state; \
4036 PyEval_AcquireLock(); \
4037 new_state = PyThreadState_New( save_interp ); \
4038 prev_state = PyThreadState_Swap( new_state );
4039#define MY_UNBLOCK_THREADS \
4040 new_state = PyThreadState_Swap( prev_state ); \
4041 PyThreadState_Clear( new_state ); \
4042 PyEval_ReleaseLock(); \
4043 PyThreadState_Delete( new_state ); \
4046#define MY_BLOCK_THREADS
4047#define MY_UNBLOCK_THREADS
4070 PyObject *pdata, *arglist, *result;
4074 pdata = (PyObject *) data;
4081 Py_XINCREF( pdata );
4086 arglist = Py_BuildValue(
"(ddO)", x, y, pdata );
4088 arglist = Py_BuildValue(
"(ffO)", x, y, pdata );
4090 if ( arglist == NULL )
4092 fprintf( stderr,
"Py_BuildValue failed to make argument list.\n" );
4097 result = PyObject_CallObject(
python_pltr, arglist );
4099 Py_CLEAR( arglist );
4101 if ( result == NULL )
4103 fprintf( stderr,
"call to python pltr function with 3 arguments failed\n" );
4104 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must take 3 arguments." );
4110 if ( tmp == 0 || PyArray_DIMS( tmp )[0] != 2 )
4112 fprintf( stderr,
"pltr callback must return a 2 element array or sequence\n" );
4113 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must return a 2-sequence." );
4133 PyObject *pdata, *arglist, *result;
4134 PLFLT fresult = 0.0;
4137 pdata = (PyObject *) data;
4140 Py_XINCREF( pdata );
4144 arglist = Py_BuildValue(
"(iiO)", x, y, pdata );
4148 Py_CLEAR( arglist );
4150 if ( !PyFloat_Check( result ) )
4152 fprintf( stderr,
"f2eval callback must return a float\n" );
4153 PyErr_SetString( PyExc_RuntimeError,
"f2eval callback must return a float." );
4158 fresult = (
PLFLT) PyFloat_AsDouble( result );
4170 PyObject *pdata, *arglist, *result, *unicode_string;
4175 pdata = (PyObject *) data;
4180 Py_XINCREF( pdata );
4185 arglist = Py_BuildValue(
"(ldO)", axis,
value, pdata );
4187 arglist = Py_BuildValue(
"(lfO)", axis,
value, pdata );
4194 if ( result == NULL )
4196 fprintf( stderr,
"label callback failed with 3 arguments\n" );
4197 PyErr_SetString( PyExc_RuntimeError,
"label callback must take 3 arguments." );
4199 else if ( PyString_Check( result ) )
4202 pystring = PyString_AsString( result );
4203 strncpy(
string, pystring, len );
4205 else if ( PyUnicode_Check( result ) )
4208 unicode_string = PyUnicode_AsEncodedString( result,
"utf-8",
"Error ~" );
4209 pystring = PyBytes_AS_STRING( unicode_string );
4211 strncpy(
string, pystring, len );
4215 fprintf( stderr,
"label callback must return a string\n" );
4216 PyErr_SetString( PyExc_RuntimeError,
"label callback must return a string." );
4227 PyObject *px, *py, *pdata, *arglist, *result;
4232 pdata = (PyObject *) data;
4239 Py_XINCREF( pdata );
4243 px = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) xt );
4244 py = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) yt );
4245 arglist = Py_BuildValue(
"(ddOOO)", x, y, px, py, pdata );
4247 result = PyObject_CallObject(
python_ct, arglist );
4249 Py_CLEAR( arglist );
4254 if ( result == NULL )
4256 fprintf( stderr,
"call to python coordinate transform function with 5 arguments failed\n" );
4257 PyErr_SetString( PyExc_RuntimeError,
"coordinate transform callback must take 5 arguments." );
4268 PyObject *px, *py, *arglist, *result;
4279#ifdef PL_HAVE_PTHREAD
4280 px = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) x );
4281 py = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) y );
4283 px = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) x );
4284 py = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) y );
4286 arglist = Py_BuildValue(
"(iOO)", n, px, py );
4290 Py_CLEAR( arglist );
4294 if ( result == NULL )
4296 fprintf( stderr,
"call to python mapform function with 3 arguments failed\n" );
4297 PyErr_SetString( PyExc_RuntimeError,
"mapform callback must take 3 arguments." );
4310 PyObject * rep = PyObject_Repr( input );
4315 if ( PyUnicode_Check( rep ) )
4317 PyObject *uni_str = PyUnicode_AsEncodedString( rep,
"utf-8",
"Error ~" );
4318 str = PyBytes_AS_STRING( uni_str );
4322 str = PyString_AsString( rep );
4324 if ( strstr( str,
"function pltr0" ) != 0 )
4330 else if ( strstr( str,
"function pltr1" ) != 0 )
4336 else if ( strstr( str,
"function pltr2" ) != 0 )
4346 Py_XINCREF( input );
4354 Py_XINCREF( input );
4370 Py_XINCREF( input );
4385 Py_XINCREF( input );
4403 if ( input != Py_None )
4407 if ( input != Py_None )
4411 Py_XINCREF( input );
4415 fprintf( stderr,
"pltr_type is invalid\n" );
4436 fprintf( stderr,
"pltr_type is invalid\n" );
4445 PyObject *resultobj = 0;
4452 PyObject *swig_obj[2] ;
4466 if (arg1) (arg1)->type = arg2;
4475 PyObject *resultobj = 0;
4479 PyObject *swig_obj[1] ;
4490 result = (int) ((arg1)->type);
4499 PyObject *resultobj = 0;
4506 PyObject *swig_obj[2] ;
4519 arg2 = (
unsigned int)(val2);
4520 if (arg1) (arg1)->state = arg2;
4529 PyObject *resultobj = 0;
4533 PyObject *swig_obj[1] ;
4534 unsigned int result;
4544 result = (
unsigned int) ((arg1)->state);
4553 PyObject *resultobj = 0;
4560 PyObject *swig_obj[2] ;
4573 arg2 = (
unsigned int)(val2);
4574 if (arg1) (arg1)->keysym = arg2;
4583 PyObject *resultobj = 0;
4587 PyObject *swig_obj[1] ;
4588 unsigned int result;
4598 result = (
unsigned int) ((arg1)->keysym);
4607 PyObject *resultobj = 0;
4614 PyObject *swig_obj[2] ;
4627 arg2 = (
unsigned int)(val2);
4628 if (arg1) (arg1)->button = arg2;
4637 PyObject *resultobj = 0;
4641 PyObject *swig_obj[1] ;
4642 unsigned int result;
4652 result = (
unsigned int) ((arg1)->button);
4661 PyObject *resultobj = 0;
4668 PyObject *swig_obj[2] ;
4681 arg2 = (
PLINT)(val2);
4682 if (arg1) (arg1)->subwindow = arg2;
4691 PyObject *resultobj = 0;
4695 PyObject *swig_obj[1] ;
4706 result = (
PLINT) ((arg1)->subwindow);
4715 PyObject *resultobj = 0;
4717 char *arg2 = (
char *) (
char *)0 ;
4722 PyObject *swig_obj[2] ;
4735 arg2 = (
char *)(temp2);
4736 if (arg2) memcpy(arg1->
string,arg2,16*
sizeof(
char));
4737 else memset(arg1->
string,0,16*
sizeof(
char));
4746 PyObject *resultobj = 0;
4750 PyObject *swig_obj[1] ;
4761 result = (
char *)(
char *) ((arg1)->string);
4776 PyObject *resultobj = 0;
4783 PyObject *swig_obj[2] ;
4797 if (arg1) (arg1)->pX = arg2;
4806 PyObject *resultobj = 0;
4810 PyObject *swig_obj[1] ;
4821 result = (int) ((arg1)->pX);
4830 PyObject *resultobj = 0;
4837 PyObject *swig_obj[2] ;
4851 if (arg1) (arg1)->pY = arg2;
4860 PyObject *resultobj = 0;
4864 PyObject *swig_obj[1] ;
4875 result = (int) ((arg1)->pY);
4884 PyObject *resultobj = 0;
4891 PyObject *swig_obj[2] ;
4904 arg2 = (
PLFLT)(val2);
4905 if (arg1) (arg1)->dX = arg2;
4914 PyObject *resultobj = 0;
4918 PyObject *swig_obj[1] ;
4929 result = (
PLFLT) ((arg1)->dX);
4938 PyObject *resultobj = 0;
4945 PyObject *swig_obj[2] ;
4958 arg2 = (
PLFLT)(val2);
4959 if (arg1) (arg1)->dY = arg2;
4968 PyObject *resultobj = 0;
4972 PyObject *swig_obj[1] ;
4983 result = (
PLFLT) ((arg1)->dY);
4992 PyObject *resultobj = 0;
4999 PyObject *swig_obj[2] ;
5012 arg2 = (
PLFLT)(val2);
5013 if (arg1) (arg1)->wX = arg2;
5022 PyObject *resultobj = 0;
5026 PyObject *swig_obj[1] ;
5037 result = (
PLFLT) ((arg1)->wX);
5046 PyObject *resultobj = 0;
5053 PyObject *swig_obj[2] ;
5066 arg2 = (
PLFLT)(val2);
5067 if (arg1) (arg1)->wY = arg2;
5076 PyObject *resultobj = 0;
5080 PyObject *swig_obj[1] ;
5091 result = (
PLFLT) ((arg1)->wY);
5100 PyObject *resultobj = 0;
5114 PyObject *resultobj = 0;
5118 PyObject *swig_obj[1] ;
5128 free((
char *) arg1);
5148 PyObject *resultobj = 0;
5152 PyObject *swig_obj[1] ;
5161 arg1 = (
PLINT)(val1);
5171 PyObject *resultobj = 0;
5178 PyObject *swig_obj[2] ;
5186 arg1 = (
PLINT)(val1);
5191 arg2 = (
PLINT)(val2);
5201 PyObject *resultobj = 0;
5214 PyObject *swig_obj[4] ;
5222 arg1 = (
PLFLT)(val1);
5227 arg2 = (
PLFLT)(val2);
5232 arg3 = (
PLFLT)(val3);
5237 arg4 = (
PLINT)(val4);
5247 PyObject *resultobj = 0;
5251 PyObject *swig_obj[1] ;
5260 arg1 = (
PLINT)(val1);
5270 PyObject *resultobj = 0;
5295 PyObject *swig_obj[8] ;
5303 arg1 = (
PLFLT)(val1);
5308 arg2 = (
PLFLT)(val2);
5313 arg3 = (
PLFLT)(val3);
5318 arg4 = (
PLFLT)(val4);
5323 arg5 = (
PLFLT)(val5);
5328 arg6 = (
PLFLT)(val6);
5333 arg7 = (
PLFLT)(val7);
5339 plarc(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
5348 PyObject *resultobj = 0;
5351 char *arg3 = (
char *) 0 ;
5354 char *arg6 = (
char *) 0 ;
5375 PyObject *swig_obj[8] ;
5383 arg1 = (
PLFLT)(val1);
5388 arg2 = (
PLFLT)(val2);
5393 arg3 = (
char *)(buf3);
5398 arg4 = (
PLFLT)(val4);
5403 arg5 = (
PLINT)(val5);
5408 arg6 = (
char *)(buf6);
5413 arg7 = (
PLFLT)(val7);
5418 arg8 = (
PLINT)(val8);
5419 plaxes(arg1,arg2,(
char const *)arg3,arg4,arg5,(
char const *)arg6,arg7,arg8);
5432 PyObject *resultobj = 0;
5437 PyArrayObject *tmp1 = NULL ;
5438 PyArrayObject *tmp3 = NULL ;
5441 PyObject *swig_obj[3] ;
5449 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
5450 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
5456 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
5458 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
5461 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
5467 arg4 = (
PLINT)(val4);
5468 plbin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
5489 PyObject *resultobj = 0;
5511 PyObject *swig_obj[1] ;
5526 arg7 = (
PLFLT)(val7);
5527 plbtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5572 PyObject *resultobj = 0;
5585 PyObject *resultobj = 0;
5586 char *arg1 = (
char *) 0 ;
5589 char *arg4 = (
char *) 0 ;
5606 PyObject *swig_obj[6] ;
5614 arg1 = (
char *)(buf1);
5619 arg2 = (
PLFLT)(val2);
5624 arg3 = (
PLINT)(val3);
5629 arg4 = (
char *)(buf4);
5634 arg5 = (
PLFLT)(val5);
5639 arg6 = (
PLINT)(val6);
5640 plbox((
char const *)arg1,arg2,arg3,(
char const *)arg4,arg5,arg6);
5653 PyObject *resultobj = 0;
5654 char *arg1 = (
char *) 0 ;
5655 char *arg2 = (
char *) 0 ;
5658 char *arg5 = (
char *) 0 ;
5659 char *arg6 = (
char *) 0 ;
5662 char *arg9 = (
char *) 0 ;
5663 char *arg10 = (
char *) 0 ;
5696 PyObject *swig_obj[12] ;
5704 arg1 = (
char *)(buf1);
5709 arg2 = (
char *)(buf2);
5714 arg3 = (
PLFLT)(val3);
5719 arg4 = (
PLINT)(val4);
5724 arg5 = (
char *)(buf5);
5729 arg6 = (
char *)(buf6);
5734 arg7 = (
PLFLT)(val7);
5739 arg8 = (
PLINT)(val8);
5744 arg9 = (
char *)(buf9);
5749 arg10 = (
char *)(buf10);
5754 arg11 = (
PLFLT)(val11);
5759 arg12 = (
PLINT)(val12);
5760 plbox3((
char const *)arg1,(
char const *)arg2,arg3,arg4,(
char const *)arg5,(
char const *)arg6,arg7,arg8,(
char const *)arg9,(
char const *)arg10,arg11,arg12);
5781 PyObject *resultobj = 0;
5797 PyObject *swig_obj[2] ;
5808 arg1 = (
PLFLT)(val1);
5813 arg2 = (
PLFLT)(val2);
5841 PyObject *resultobj = 0;
5854 PyObject *resultobj = 0;
5858 PyObject *swig_obj[1] ;
5867 arg1 = (
PLINT)(val1);
5877 PyObject *resultobj = 0;
5881 PyObject *swig_obj[1] ;
5890 arg1 = (
PLFLT)(val1);
5900 PyObject *resultobj = 0;
5934 PyObject *swig_obj[11] ;
5942 arg1 = (
PLFLT)(val1);
5947 arg2 = (
PLFLT)(val2);
5952 arg3 = (
PLFLT)(val3);
5957 arg4 = (
PLINT)(val4);
5967 arg6 = (
PLINT)(val6);
5972 arg7 = (
PLINT)(val7);
5977 arg8 = (
PLINT)(val8);
5982 arg9 = (
PLINT)(val9);
5987 arg10 = (
PLINT)(val10);
5992 arg11 = (
PLFLT)(val11);
5993 plconfigtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
6002 PyObject *resultobj = 0;
6014 PyArrayObject *tmp1 = NULL ;
6023 PyArrayObject *tmp8 = NULL ;
6024 PyObject *swig_obj[8] ;
6040 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
6041 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
6043 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
6044 for ( i = 0; i < arg2; i++ )
6045 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
6051 arg4 = (
PLINT)(val4);
6056 arg5 = (
PLINT)(val5);
6061 arg6 = (
PLINT)(val6);
6066 arg7 = (
PLINT)(val7);
6071 arg9 = PyArray_DIMS( tmp8 )[0];
6072 arg8 = (
PLFLT *) PyArray_DATA( tmp8 );
6077 if ( swig_obj[6] == Py_None )
6083 if ( !PyCallable_Check( (PyObject *) swig_obj[6] ) )
6085 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
6094 if ( swig_obj[7] == Py_None )
6102 plcont((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,(
double const *)arg8,arg9,arg10,arg11);
6137 PyObject *resultobj = 0;
6159 PyObject *swig_obj[6] ;
6168 arg1 = (
PLINT)(val1);
6173 arg2 = (
PLINT)(val2);
6178 arg3 = (
PLINT)(val3);
6183 arg4 = (
PLINT)(val4);
6188 arg5 = (
PLINT)(val5);
6193 arg6 = (
PLFLT)(val6);
6194 plctime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
6209 PyObject *resultobj = 0;
6216 PyObject *swig_obj[2] ;
6224 arg1 = (
PLINT)(val1);
6239 PyObject *resultobj = 0;
6252 PyObject *resultobj = 0;
6265 PyObject *resultobj = 0;
6284 PyObject *swig_obj[6] ;
6292 arg1 = (
PLFLT)(val1);
6297 arg2 = (
PLFLT)(val2);
6302 arg3 = (
PLFLT)(val3);
6307 arg4 = (
PLFLT)(val4);
6312 arg5 = (
PLINT)(val5);
6317 arg6 = (
PLINT)(val6);
6318 plenv(arg1,arg2,arg3,arg4,arg5,arg6);
6327 PyObject *resultobj = 0;
6346 PyObject *swig_obj[6] ;
6354 arg1 = (
PLFLT)(val1);
6359 arg2 = (
PLFLT)(val2);
6364 arg3 = (
PLFLT)(val3);
6369 arg4 = (
PLFLT)(val4);
6374 arg5 = (
PLINT)(val5);
6379 arg6 = (
PLINT)(val6);
6380 plenv0(arg1,arg2,arg3,arg4,arg5,arg6);
6389 PyObject *resultobj = 0;
6402 PyObject *resultobj = 0;
6407 PyArrayObject *tmp1 = NULL ;
6408 PyArrayObject *tmp3 = NULL ;
6409 PyArrayObject *tmp4 = NULL ;
6410 PyObject *swig_obj[3] ;
6418 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6419 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6425 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6427 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6430 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6436 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6438 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6441 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6443 plerrx(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6470 PyObject *resultobj = 0;
6475 PyArrayObject *tmp1 = NULL ;
6476 PyArrayObject *tmp3 = NULL ;
6477 PyArrayObject *tmp4 = NULL ;
6478 PyObject *swig_obj[3] ;
6486 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6487 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6493 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6495 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6498 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6504 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6506 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6509 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6511 plerry(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6538 PyObject *resultobj = 0;
6551 PyObject *resultobj = 0;
6555 PyArrayObject *tmp1 = NULL ;
6556 PyArrayObject *tmp3 = NULL ;
6557 PyObject *swig_obj[2] ;
6565 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6566 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6572 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6574 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6577 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6579 plfill(arg1,(
double const *)arg2,(
double const *)arg3);
6600 PyObject *resultobj = 0;
6605 PyArrayObject *tmp1 = NULL ;
6606 PyArrayObject *tmp3 = NULL ;
6607 PyArrayObject *tmp4 = NULL ;
6608 PyObject *swig_obj[3] ;
6616 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6617 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6623 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6625 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6628 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6634 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6636 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6639 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6641 plfill3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6668 PyObject *resultobj = 0;
6673 PyArrayObject *tmp1 = NULL ;
6674 PyArrayObject *tmp3 = NULL ;
6677 PyObject *swig_obj[3] ;
6685 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6686 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6692 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6694 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6697 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6703 arg4 = (
PLFLT)(val4);
6704 plgradient(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
6725 PyObject *resultobj = 0;
6738 PyObject *resultobj = 0;
6742 PyObject *swig_obj[1] ;
6751 arg1 = (
PLINT)(val1);
6761 PyObject *resultobj = 0;
6765 PyObject *swig_obj[1] ;
6774 arg1 = (
PLINT)(val1);
6784 PyObject *resultobj = 0;
6817 PyObject *resultobj = 0;
6830 PyObject *swig_obj[1] ;
6842 arg1 = (
PLINT)(val1);
6870 PyObject *resultobj = 0;
6886 PyObject *swig_obj[1] ;
6899 arg1 = (
PLINT)(val1);
6900 plgcol0a(arg1,arg2,arg3,arg4,arg5);
6933 PyObject *resultobj = 0;
6976 PyObject *resultobj = 0;
7029 PyObject *resultobj = 0;
7052 PyObject *resultobj = 0;
7053 char *arg1 = (
char *) 0 ;
7064 PyObject *o = PyString_FromString( arg1 );
7074 PyObject *resultobj = 0;
7127 PyObject *resultobj = 0;
7150 PyObject *resultobj = 0;
7203 PyObject *resultobj = 0;
7246 PyObject *resultobj = 0;
7269 PyObject *resultobj = 0;
7270 char *arg1 = (
char *) 0 ;
7281 PyObject *o = PyString_FromString( arg1 );
7291 PyObject *resultobj = 0;
7334 PyObject *resultobj = 0;
7357 PyObject *resultobj = 0;
7385 plgpage(arg1,arg2,arg3,arg4,arg5,arg6);
7430 PyObject *resultobj = 0;
7443 PyObject *resultobj = 0;
7455 PyArrayObject *tmp1 = NULL ;
7456 PyArrayObject *tmp2 = NULL ;
7457 PyArrayObject *tmp3 = NULL ;
7458 PyArrayObject *tmp5 = NULL ;
7459 PyArrayObject *tmp7 = NULL ;
7460 PyObject *array7 = NULL ;
7465 PyObject *swig_obj[7] ;
7473 Alen = PyArray_DIMS( tmp1 )[0];
7474 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
7480 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
7482 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7485 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
7491 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
7493 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7496 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
7497 arg4 = PyArray_DIMS( tmp3 )[0];
7503 Xlen = PyArray_DIMS( tmp5 )[0];
7505 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
7513 Ylen = PyArray_DIMS( tmp7 )[0];
7515 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
7520 array7 = PyArray_SimpleNew( 2, dims,
NPY_PLFLT );
7524 arg9 = (
PLFLT **) malloc(
sizeof (
double * ) * (
size_t)
Xlen );
7525 for ( i = 0; i <
Xlen; i++ )
7526 arg9[i] = ( (
PLFLT *) PyArray_DATA( (PyArrayObject *) array7 ) + i * size );
7532 arg10 = (
PLINT)(val10);
7537 arg11 = (
PLFLT)(val11);
7538 plgriddata((
double const *)arg1,(
double const *)arg2,(
double const *)arg3,arg4,(
double const *)arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,arg11);
7582 PyObject *resultobj = 0;
7602 plgspa(arg1,arg2,arg3,arg4);
7635 PyObject *resultobj = 0;
7658 PyObject *resultobj = 0;
7659 char *arg1 = (
char *) 0 ;
7670 PyObject *o = PyString_FromString( arg1 );
7680 PyObject *resultobj = 0;
7700 plgvpd(arg1,arg2,arg3,arg4);
7733 PyObject *resultobj = 0;
7753 plgvpw(arg1,arg2,arg3,arg4);
7786 PyObject *resultobj = 0;
7819 PyObject *resultobj = 0;
7852 PyObject *resultobj = 0;
7885 PyObject *resultobj = 0;
7892 PyArrayObject *tmp1 = NULL ;
7901 PyObject *swig_obj[5] ;
7909 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
7910 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
7916 arg3 = (
PLFLT)(val3);
7921 arg4 = (
PLFLT)(val4);
7926 arg5 = (
PLINT)(val5);
7931 arg6 = (
PLINT)(val6);
7932 plhist(arg1,(
double const *)arg2,arg3,arg4,arg5,arg6);
7947 PyObject *resultobj = 0;
7966 PyObject *swig_obj[3] ;
7977 arg1 = (
PLFLT)(val1);
7982 arg2 = (
PLFLT)(val2);
7987 arg3 = (
PLFLT)(val3);
7988 plhlsrgb(arg1,arg2,arg3,arg4,arg5,arg6);
8015 PyObject *resultobj = 0;
8028 PyObject *resultobj = 0;
8041 PyObject *swig_obj[4] ;
8049 arg1 = (
PLFLT)(val1);
8054 arg2 = (
PLFLT)(val2);
8059 arg3 = (
PLFLT)(val3);
8064 arg4 = (
PLFLT)(val4);
8065 pljoin(arg1,arg2,arg3,arg4);
8074 PyObject *resultobj = 0;
8075 char *arg1 = (
char *) 0 ;
8076 char *arg2 = (
char *) 0 ;
8077 char *arg3 = (
char *) 0 ;
8087 PyObject *swig_obj[3] ;
8095 arg1 = (
char *)(buf1);
8100 arg2 = (
char *)(buf2);
8105 arg3 = (
char *)(buf3);
8106 pllab((
char const *)arg1,(
char const *)arg2,(
char const *)arg3);
8121 PyObject *resultobj = 0;
8141 char **arg20 = (
char **) 0 ;
8152 char **arg31 = (
char **) 0 ;
8177 PyArrayObject *tmp13 = NULL ;
8186 PyArrayObject *tmp19 = NULL ;
8187 PyArrayObject *tmp20 = NULL ;
8188 PyArrayObject *tmp21 = NULL ;
8189 PyArrayObject *tmp22 = NULL ;
8190 PyArrayObject *tmp23 = NULL ;
8191 PyArrayObject *tmp24 = NULL ;
8192 PyArrayObject *tmp25 = NULL ;
8193 PyArrayObject *tmp26 = NULL ;
8194 PyArrayObject *tmp27 = NULL ;
8195 PyArrayObject *tmp28 = NULL ;
8196 PyArrayObject *tmp29 = NULL ;
8197 PyArrayObject *tmp30 = NULL ;
8198 PyArrayObject *tmp31 = NULL ;
8199 PyObject *swig_obj[28] ;
8209 arg3 = (
PLINT)(val3);
8214 arg4 = (
PLINT)(val4);
8219 arg5 = (
PLFLT)(val5);
8224 arg6 = (
PLFLT)(val6);
8229 arg7 = (
PLFLT)(val7);
8234 arg8 = (
PLINT)(val8);
8239 arg9 = (
PLINT)(val9);
8244 arg10 = (
PLINT)(val10);
8249 arg11 = (
PLINT)(val11);
8254 arg12 = (
PLINT)(val12);
8257 if ( tmp13 == NULL )
8259 arg13 =
Alen = PyArray_DIMS( tmp13 )[0];
8260 arg14 = (
PLINT *) PyArray_DATA( tmp13 );
8266 arg15 = (
PLFLT)(val15);
8271 arg16 = (
PLFLT)(val16);
8276 arg17 = (
PLFLT)(val17);
8281 arg18 = (
PLFLT)(val18);
8284 if ( tmp19 == NULL )
8286 if ( PyArray_DIMS( tmp19 )[0] !=
Alen )
8288 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8291 arg19 = (
PLINT *) PyArray_DATA( tmp19 );
8295 tmp20 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[16], NPY_STRING, 1, 1 );
8296 if ( tmp20 == NULL )
8298 if ( PyArray_DIMS( tmp20 )[0] !=
Alen )
8300 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8303 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8304 for ( i = 0; i <
Alen; i++ )
8306 arg20[i] = (
char *) PyArray_DATA( tmp20 ) + i * PyArray_STRIDES( tmp20 )[0];
8307 if ( arg20[i] == NULL )
8316 if ( tmp21 == NULL )
8318 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8320 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8323 arg21 = (
PLINT *) PyArray_DATA( tmp21 );
8327 if ( tmp22 == NULL )
8329 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8331 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8334 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8337 if ( swig_obj[19] != Py_None )
8340 if ( tmp23 == NULL )
8342 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8344 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8347 arg23 = (
PLFLT *) PyArray_DATA( tmp23 );
8355 if ( swig_obj[20] != Py_None )
8358 if ( tmp24 == NULL )
8360 if ( PyArray_DIMS( tmp24 )[0] !=
Alen )
8362 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8365 arg24 = (
PLFLT *) PyArray_DATA( tmp24 );
8374 if ( tmp25 == NULL )
8376 if ( PyArray_DIMS( tmp25 )[0] !=
Alen )
8378 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8381 arg25 = (
PLINT *) PyArray_DATA( tmp25 );
8385 if ( tmp26 == NULL )
8387 if ( PyArray_DIMS( tmp26 )[0] !=
Alen )
8389 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8392 arg26 = (
PLINT *) PyArray_DATA( tmp26 );
8395 if ( swig_obj[23] != Py_None )
8398 if ( tmp27 == NULL )
8400 if ( PyArray_DIMS( tmp27 )[0] !=
Alen )
8402 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8405 arg27 = (
PLFLT *) PyArray_DATA( tmp27 );
8414 if ( tmp28 == NULL )
8416 if ( PyArray_DIMS( tmp28 )[0] !=
Alen )
8418 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8421 arg28 = (
PLINT *) PyArray_DATA( tmp28 );
8424 if ( swig_obj[25] != Py_None )
8427 if ( tmp29 == NULL )
8429 if ( PyArray_DIMS( tmp29 )[0] !=
Alen )
8431 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8434 arg29 = (
PLFLT *) PyArray_DATA( tmp29 );
8443 if ( tmp30 == NULL )
8445 if ( PyArray_DIMS( tmp30 )[0] !=
Alen )
8447 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8450 arg30 = (
PLINT *) PyArray_DATA( tmp30 );
8454 tmp31 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[27], NPY_STRING, 1, 1 );
8455 if ( tmp31 == NULL )
8457 if ( PyArray_DIMS( tmp31 )[0] !=
Alen )
8459 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8462 arg31 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8463 for ( i = 0; i <
Alen; i++ )
8465 arg31[i] = (
char *) PyArray_DATA( tmp31 ) + i * PyArray_STRIDES( tmp31 )[0];
8466 if ( arg31[i] == NULL )
8473 pllegend(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,(
int const *)arg14,arg15,arg16,arg17,arg18,(
int const *)arg19,(
char const **)arg20,(
int const *)arg21,(
int const *)arg22,(
double const *)arg23,(
double const *)arg24,(
int const *)arg25,(
int const *)arg26,(
double const *)arg27,(
int const *)arg28,(
double const *)arg29,(
int const *)arg30,(
char const **)arg31);
8494 Py_CLEAR( tmp20 ); free( arg20 );
8527 Py_CLEAR( tmp31 ); free( arg31 );
8538 Py_CLEAR( tmp20 ); free( arg20 );
8571 Py_CLEAR( tmp31 ); free( arg31 );
8578 PyObject *resultobj = 0;
8596 char **arg18 = (
char **) 0 ;
8598 char **arg20 = (
char **) 0 ;
8633 PyArrayObject *tmp16 = NULL ;
8634 PyArrayObject *tmp18 = NULL ;
8635 PyArrayObject *tmp19 = NULL ;
8636 PyArrayObject *tmp21 = NULL ;
8637 PyArrayObject *tmp22 = NULL ;
8638 PyArrayObject *tmp23 = NULL ;
8639 PyArrayObject *tmp24 = NULL ;
8640 PyObject *swig_obj[20] ;
8650 arg3 = (
PLINT)(val3);
8655 arg4 = (
PLINT)(val4);
8660 arg5 = (
PLFLT)(val5);
8665 arg6 = (
PLFLT)(val6);
8670 arg7 = (
PLFLT)(val7);
8675 arg8 = (
PLFLT)(val8);
8680 arg9 = (
PLINT)(val9);
8685 arg10 = (
PLINT)(val10);
8690 arg11 = (
PLINT)(val11);
8695 arg12 = (
PLFLT)(val12);
8700 arg13 = (
PLFLT)(val13);
8705 arg14 = (
PLINT)(val14);
8710 arg15 = (
PLFLT)(val15);
8713 if ( tmp16 == NULL )
8715 arg16 =
Alen = PyArray_DIMS( tmp16 )[0];
8716 arg17 = (
PLINT *) PyArray_DATA( tmp16 );
8720 tmp18 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[14], NPY_STRING, 1, 1 );
8721 if ( tmp18 == NULL )
8723 if ( PyArray_DIMS( tmp18 )[0] !=
Alen )
8725 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8728 arg18 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8729 for ( i = 0; i <
Alen; i++ )
8731 arg18[i] = (
char *) PyArray_DATA( tmp18 ) + i * PyArray_STRIDES( tmp18 )[0];
8732 if ( arg18[i] == NULL )
8741 tmp19 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[15], NPY_STRING, 1, 1 );
8742 if ( tmp19 == NULL )
8744 Alen = PyArray_DIMS( tmp19 )[0];
8746 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8747 for ( i = 0; i <
Alen; i++ )
8749 arg20[i] = (
char *) PyArray_DATA( tmp19 ) + i * PyArray_STRIDES( tmp19 )[0];
8750 if ( arg20[i] == NULL )
8759 if ( tmp21 == NULL )
8761 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8763 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8766 arg21 = (
PLFLT *) PyArray_DATA( tmp21 );
8770 if ( tmp22 == NULL )
8772 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8774 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8777 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8782 if ( tmp23 == NULL )
8784 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8786 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8789 Xlen = PyArray_DIMS( tmp23 )[0];
8790 arg23 = (
PLINT *) PyArray_DATA( tmp23 );
8792 for ( i = 0; i <
Xlen; i++ )
8793 if ( arg23[i] >
Ylen )
8799 if ( tmp24 == NULL )
8801 if ( PyArray_DIMS( tmp24 )[0] !=
Xlen || PyArray_DIMS( tmp24 )[1] !=
Ylen )
8803 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
8808 for ( i = 0; i <
Xlen; i++ )
8809 arg24[i] = ( (
PLFLT *) PyArray_DATA( tmp24 ) + i * size );
8811 plcolorbar(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,(
int const *)arg17,(
char const **)arg18,arg19,(
char const **)arg20,(
double const *)arg21,(
int const *)arg22,(
int const *)arg23,(
double const **)arg24);
8829 Py_CLEAR( tmp18 ); free( arg18 );
8832 Py_CLEAR( tmp19 ); free( arg20 );
8853 Py_CLEAR( tmp18 ); free( arg18 );
8856 Py_CLEAR( tmp19 ); free( arg20 );
8876 PyObject *resultobj = 0;
8886 PyObject *swig_obj[3] ;
8894 arg1 = (
PLFLT)(val1);
8899 arg2 = (
PLFLT)(val2);
8904 arg3 = (
PLFLT)(val3);
8914 PyObject *resultobj = 0;
8918 PyArrayObject *tmp1 = NULL ;
8919 PyArrayObject *tmp3 = NULL ;
8920 PyObject *swig_obj[2] ;
8928 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8929 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8935 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8937 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8940 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8942 plline(arg1,(
double const *)arg2,(
double const *)arg3);
8963 PyObject *resultobj = 0;
8968 PyArrayObject *tmp1 = NULL ;
8969 PyArrayObject *tmp3 = NULL ;
8970 PyArrayObject *tmp4 = NULL ;
8971 PyObject *swig_obj[3] ;
8979 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8980 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8986 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8988 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8991 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8997 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
8999 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9002 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
9004 plline3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
9031 PyObject *resultobj = 0;
9035 PyObject *swig_obj[1] ;
9044 arg1 = (
PLINT)(val1);
9054 PyObject *resultobj = 0;
9061 PyArrayObject *tmp1 = NULL ;
9062 PyArrayObject *tmp2 = NULL ;
9063 PyArrayObject *tmp3 = NULL ;
9066 PyObject *swig_obj[4] ;
9074 Xlen = PyArray_DIMS( tmp1 )[0];
9075 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9081 Ylen = PyArray_DIMS( tmp2 )[0];
9082 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9089 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9091 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9094 arg4 = PyArray_DIMS( tmp3 )[0];
9095 arg5 = PyArray_DIMS( tmp3 )[1];
9097 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9098 for ( i = 0; i < arg4; i++ )
9099 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9105 arg6 = (
PLINT)(val6);
9106 plmesh((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6);
9135 PyObject *resultobj = 0;
9144 PyArrayObject *tmp1 = NULL ;
9145 PyArrayObject *tmp2 = NULL ;
9146 PyArrayObject *tmp3 = NULL ;
9149 PyArrayObject *tmp7 = NULL ;
9150 PyObject *swig_obj[5] ;
9158 Xlen = PyArray_DIMS( tmp1 )[0];
9159 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9165 Ylen = PyArray_DIMS( tmp2 )[0];
9166 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9173 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9175 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9178 arg4 = PyArray_DIMS( tmp3 )[0];
9179 arg5 = PyArray_DIMS( tmp3 )[1];
9181 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9182 for ( i = 0; i < arg4; i++ )
9183 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9189 arg6 = (
PLINT)(val6);
9194 arg8 = PyArray_DIMS( tmp7 )[0];
9195 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9197 plmeshc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9232 PyObject *resultobj = 0;
9255 PyObject *resultobj = 0;
9256 char *arg1 = (
char *) 0 ;
9260 char *arg5 = (
char *) 0 ;
9273 PyObject *swig_obj[5] ;
9281 arg1 = (
char *)(buf1);
9286 arg2 = (
PLFLT)(val2);
9291 arg3 = (
PLFLT)(val3);
9296 arg4 = (
PLFLT)(val4);
9301 arg5 = (
char *)(buf5);
9302 plmtex((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9315 PyObject *resultobj = 0;
9316 char *arg1 = (
char *) 0 ;
9320 char *arg5 = (
char *) 0 ;
9333 PyObject *swig_obj[5] ;
9341 arg1 = (
char *)(buf1);
9346 arg2 = (
PLFLT)(val2);
9351 arg3 = (
PLFLT)(val3);
9356 arg4 = (
PLFLT)(val4);
9361 arg5 = (
char *)(buf5);
9362 plmtex3((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9375 PyObject *resultobj = 0;
9383 PyArrayObject *tmp1 = NULL ;
9384 PyArrayObject *tmp2 = NULL ;
9385 PyArrayObject *tmp3 = NULL ;
9390 PyObject *swig_obj[5] ;
9398 Xlen = PyArray_DIMS( tmp1 )[0];
9399 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9405 Ylen = PyArray_DIMS( tmp2 )[0];
9406 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9413 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9415 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9418 arg4 = PyArray_DIMS( tmp3 )[0];
9419 arg5 = PyArray_DIMS( tmp3 )[1];
9421 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9422 for ( i = 0; i < arg4; i++ )
9423 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9429 arg6 = (
PLINT)(val6);
9435 plot3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,arg7);
9464 PyObject *resultobj = 0;
9473 PyArrayObject *tmp1 = NULL ;
9474 PyArrayObject *tmp2 = NULL ;
9475 PyArrayObject *tmp3 = NULL ;
9478 PyArrayObject *tmp7 = NULL ;
9479 PyObject *swig_obj[5] ;
9487 Xlen = PyArray_DIMS( tmp1 )[0];
9488 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9494 Ylen = PyArray_DIMS( tmp2 )[0];
9495 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9502 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9504 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9507 arg4 = PyArray_DIMS( tmp3 )[0];
9508 arg5 = PyArray_DIMS( tmp3 )[1];
9510 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9511 for ( i = 0; i < arg4; i++ )
9512 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9518 arg6 = (
PLINT)(val6);
9523 arg8 = PyArray_DIMS( tmp7 )[0];
9524 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9526 plot3dc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9561 PyObject *resultobj = 0;
9574 PyArrayObject *tmp1 = NULL ;
9575 PyArrayObject *tmp2 = NULL ;
9576 PyArrayObject *tmp3 = NULL ;
9579 PyArrayObject *tmp7 = NULL ;
9582 PyArrayObject *tmp10 = NULL ;
9583 PyArrayObject *tmp12 = NULL ;
9584 PyObject *swig_obj[8] ;
9592 Xlen = PyArray_DIMS( tmp1 )[0];
9593 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9599 Ylen = PyArray_DIMS( tmp2 )[0];
9600 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9607 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9609 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9612 arg4 = PyArray_DIMS( tmp3 )[0];
9613 arg5 = PyArray_DIMS( tmp3 )[1];
9615 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9616 for ( i = 0; i < arg4; i++ )
9617 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9623 arg6 = (
PLINT)(val6);
9628 arg8 = PyArray_DIMS( tmp7 )[0];
9629 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9635 arg9 = (
PLINT)(val9);
9638 if ( tmp10 == NULL )
9640 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9641 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9645 if ( tmp12 == NULL )
9647 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9649 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9652 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9654 plot3dcl((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,(
int const *)arg11,(
int const *)arg12);
9701 PyObject *resultobj = 0;
9710 PyArrayObject *tmp1 = NULL ;
9711 PyArrayObject *tmp2 = NULL ;
9712 PyArrayObject *tmp3 = NULL ;
9715 PyArrayObject *tmp7 = NULL ;
9716 PyObject *swig_obj[5] ;
9724 Xlen = PyArray_DIMS( tmp1 )[0];
9725 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9731 Ylen = PyArray_DIMS( tmp2 )[0];
9732 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9739 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9741 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9744 arg4 = PyArray_DIMS( tmp3 )[0];
9745 arg5 = PyArray_DIMS( tmp3 )[1];
9747 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9748 for ( i = 0; i < arg4; i++ )
9749 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9755 arg6 = (
PLINT)(val6);
9760 arg8 = PyArray_DIMS( tmp7 )[0];
9761 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9763 plsurf3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9798 PyObject *resultobj = 0;
9811 PyArrayObject *tmp1 = NULL ;
9812 PyArrayObject *tmp2 = NULL ;
9813 PyArrayObject *tmp3 = NULL ;
9816 PyArrayObject *tmp7 = NULL ;
9819 PyArrayObject *tmp10 = NULL ;
9820 PyArrayObject *tmp12 = NULL ;
9821 PyObject *swig_obj[8] ;
9829 Xlen = PyArray_DIMS( tmp1 )[0];
9830 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9836 Ylen = PyArray_DIMS( tmp2 )[0];
9837 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9844 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9846 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9849 arg4 = PyArray_DIMS( tmp3 )[0];
9850 arg5 = PyArray_DIMS( tmp3 )[1];
9852 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9853 for ( i = 0; i < arg4; i++ )
9854 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9860 arg6 = (
PLINT)(val6);
9865 arg8 = PyArray_DIMS( tmp7 )[0];
9866 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9872 arg9 = (
PLINT)(val9);
9875 if ( tmp10 == NULL )
9877 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9878 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9882 if ( tmp12 == NULL )
9884 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9886 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9889 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9891 plsurf3dl((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,(
int const *)arg11,(
int const *)arg12);
9938 PyObject *resultobj = 0;
9939 int *arg1 = (
int *) 0 ;
9940 char **arg2 = (
char **) 0 ;
9945 PyObject *swig_obj[2] ;
9952 PyObject *unicode_string;
9954 if ( !PyList_Check( swig_obj[0] ) )
9956 PyErr_SetString( PyExc_ValueError,
"Expecting a list" );
9959 tmp1 = PyList_Size( swig_obj[0] );
9961 arg2 = (
char **) malloc( (
size_t) ( tmp1 + 1 ) *
sizeof (
char * ) );
9962 for ( i = 0; i < tmp1; i++ )
9964 PyObject *s = PyList_GetItem( swig_obj[0], i );
9965 if ( PyString_Check( s ) )
9967 arg2[i] = PyString_AsString( s );
9969 else if ( PyUnicode_Check( s ) )
9972 unicode_string = PyUnicode_AsEncodedString( s,
"utf-8",
"Error ~" );
9973 arg2[i] = PyBytes_AS_STRING( unicode_string );
9978 PyErr_SetString( PyExc_ValueError,
"List items must be strings" );
9988 arg3 = (
PLINT)(val3);
10006 PyObject *resultobj = 0;
10010 PyArrayObject *tmp1 = NULL ;
10011 PyArrayObject *tmp3 = NULL ;
10012 PyObject *swig_obj[2] ;
10018 if ( tmp1 == NULL )
10020 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10021 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
10025 if ( tmp3 == NULL )
10027 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10029 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10032 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10034 plpat(arg1,(
int const *)arg2,(
int const *)arg3);
10055 PyObject *resultobj = 0;
10071 PyObject *swig_obj[5] ;
10079 arg1 = (
PLINT)(val1);
10084 arg2 = (
PLFLT)(val2);
10089 arg3 = (
PLFLT)(val3);
10094 arg4 = (
PLFLT)(val4);
10099 arg5 = (
PLFLT)(val5);
10100 plpath(arg1,arg2,arg3,arg4,arg5);
10109 PyObject *resultobj = 0;
10114 PyArrayObject *tmp1 = NULL ;
10115 PyArrayObject *tmp3 = NULL ;
10118 PyObject *swig_obj[3] ;
10124 if ( tmp1 == NULL )
10126 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10127 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10131 if ( tmp3 == NULL )
10133 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10135 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10138 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10144 arg4 = (
PLINT)(val4);
10145 plpoin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
10166 PyObject *resultobj = 0;
10172 PyArrayObject *tmp1 = NULL ;
10173 PyArrayObject *tmp3 = NULL ;
10174 PyArrayObject *tmp4 = NULL ;
10177 PyObject *swig_obj[4] ;
10183 if ( tmp1 == NULL )
10185 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10186 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10190 if ( tmp3 == NULL )
10192 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10194 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10197 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10201 if ( tmp4 == NULL )
10203 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10205 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10208 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10214 arg5 = (
PLINT)(val5);
10215 plpoin3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,arg5);
10242 PyObject *resultobj = 0;
10249 PyArrayObject *tmp1 = NULL ;
10250 PyArrayObject *tmp3 = NULL ;
10251 PyArrayObject *tmp4 = NULL ;
10252 PyArrayObject *tmp5 = NULL ;
10255 PyObject *swig_obj[5] ;
10261 if ( tmp1 == NULL )
10263 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10264 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10268 if ( tmp3 == NULL )
10270 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10272 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10275 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10279 if ( tmp4 == NULL )
10281 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10283 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10286 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10290 if ( tmp5 == NULL )
10292 if ( PyArray_DIMS( tmp5 )[0] <
Alen - 1 )
10294 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
10297 arg5 = (
PLINT *) PyArray_DATA( tmp5 );
10304 plpoly3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
int const *)arg5,arg6);
10337 PyObject *resultobj = 0;
10344 PyObject *swig_obj[2] ;
10352 arg1 = (
PLINT)(val1);
10357 arg2 = (
PLINT)(val2);
10367 PyObject *resultobj = 0;
10371 PyObject *swig_obj[1] ;
10375 swig_obj[0] = args;
10380 arg1 = (
PLINT)(val1);
10390 PyObject *resultobj = 0;
10396 char *arg6 = (
char *) 0 ;
10410 PyObject *swig_obj[6] ;
10418 arg1 = (
PLFLT)(val1);
10423 arg2 = (
PLFLT)(val2);
10428 arg3 = (
PLFLT)(val3);
10433 arg4 = (
PLFLT)(val4);
10438 arg5 = (
PLFLT)(val5);
10443 arg6 = (
char *)(buf6);
10444 plptex(arg1,arg2,arg3,arg4,arg5,(
char const *)arg6);
10455 PyObject *resultobj = 0;
10466 char *arg11 = (
char *) 0 ;
10490 PyObject *swig_obj[11] ;
10498 arg1 = (
PLFLT)(val1);
10503 arg2 = (
PLFLT)(val2);
10508 arg3 = (
PLFLT)(val3);
10513 arg4 = (
PLFLT)(val4);
10518 arg5 = (
PLFLT)(val5);
10523 arg6 = (
PLFLT)(val6);
10528 arg7 = (
PLFLT)(val7);
10533 arg8 = (
PLFLT)(val8);
10538 arg9 = (
PLFLT)(val9);
10543 arg10 = (
PLFLT)(val10);
10548 arg11 = (
char *)(buf11);
10549 plptex3(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(
char const *)arg11);
10560 PyObject *resultobj = 0;
10574 PyObject *resultobj = 0;
10587 PyObject *resultobj = 0;
10606 PyObject *swig_obj[3] ;
10617 arg1 = (
PLFLT)(val1);
10622 arg2 = (
PLFLT)(val2);
10627 arg3 = (
PLFLT)(val3);
10628 plrgbhls(arg1,arg2,arg3,arg4,arg5,arg6);
10655 PyObject *resultobj = 0;
10662 PyObject *swig_obj[2] ;
10670 arg1 = (
PLFLT)(val1);
10675 arg2 = (
PLFLT)(val2);
10685 PyObject *resultobj = 0;
10690 PyArrayObject *tmp1 = NULL ;
10691 PyArrayObject *tmp2 = NULL ;
10692 PyArrayObject *tmp3 = NULL ;
10693 PyObject *swig_obj[3] ;
10699 if ( tmp1 == NULL )
10701 Alen = PyArray_DIMS( tmp1 )[0];
10702 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10706 if ( tmp2 == NULL )
10708 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10710 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10713 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10717 if ( tmp3 == NULL )
10719 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10721 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10724 arg4 = PyArray_DIMS( tmp3 )[0];
10725 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10727 plscmap0((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10754 PyObject *resultobj = 0;
10760 PyArrayObject *tmp1 = NULL ;
10761 PyArrayObject *tmp2 = NULL ;
10762 PyArrayObject *tmp3 = NULL ;
10763 PyArrayObject *tmp4 = NULL ;
10764 PyObject *swig_obj[4] ;
10770 if ( tmp1 == NULL )
10772 Alen = PyArray_DIMS( tmp1 )[0];
10773 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10777 if ( tmp2 == NULL )
10779 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10781 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10784 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10788 if ( tmp3 == NULL )
10790 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10792 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10795 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10799 if ( tmp4 == NULL )
10801 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10803 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10806 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10807 arg5 = PyArray_DIMS( tmp4 )[0];
10809 plscmap0a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
10842 PyObject *resultobj = 0;
10846 PyObject *swig_obj[1] ;
10850 swig_obj[0] = args;
10855 arg1 = (
PLINT)(val1);
10865 PyObject *resultobj = 0;
10870 PyArrayObject *tmp1 = NULL ;
10871 PyArrayObject *tmp2 = NULL ;
10872 PyArrayObject *tmp3 = NULL ;
10873 PyObject *swig_obj[3] ;
10879 if ( tmp1 == NULL )
10881 Alen = PyArray_DIMS( tmp1 )[0];
10882 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10886 if ( tmp2 == NULL )
10888 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10890 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10893 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10897 if ( tmp3 == NULL )
10899 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10901 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10904 arg4 = PyArray_DIMS( tmp3 )[0];
10905 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10907 plscmap1((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10934 PyObject *resultobj = 0;
10940 PyArrayObject *tmp1 = NULL ;
10941 PyArrayObject *tmp2 = NULL ;
10942 PyArrayObject *tmp3 = NULL ;
10943 PyArrayObject *tmp4 = NULL ;
10944 PyObject *swig_obj[4] ;
10950 if ( tmp1 == NULL )
10952 Alen = PyArray_DIMS( tmp1 )[0];
10953 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10957 if ( tmp2 == NULL )
10959 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10961 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10964 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10968 if ( tmp3 == NULL )
10970 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10972 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10975 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10979 if ( tmp4 == NULL )
10981 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10983 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10986 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10987 arg5 = PyArray_DIMS( tmp4 )[0];
10989 plscmap1a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
11022 PyObject *resultobj = 0;
11032 PyArrayObject *tmp2 = NULL ;
11033 PyArrayObject *tmp4 = NULL ;
11034 PyArrayObject *tmp5 = NULL ;
11035 PyArrayObject *tmp6 = NULL ;
11036 PyArrayObject *tmp7 = NULL ;
11037 PyObject *swig_obj[6] ;
11048 if ( tmp2 == NULL )
11050 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11051 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11055 if ( tmp4 == NULL )
11057 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11059 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11062 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11066 if ( tmp5 == NULL )
11068 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11070 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11073 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11077 if ( tmp6 == NULL )
11079 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11081 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11084 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11088 if ( tmp7 == NULL )
11090 if ( PyArray_DIMS( tmp7 )[0] <
Alen - 1 )
11092 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11095 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
11097 plscmap1l(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
int const *)arg7);
11136 PyObject *resultobj = 0;
11147 PyArrayObject *tmp2 = NULL ;
11148 PyArrayObject *tmp4 = NULL ;
11149 PyArrayObject *tmp5 = NULL ;
11150 PyArrayObject *tmp6 = NULL ;
11151 PyArrayObject *tmp7 = NULL ;
11152 PyArrayObject *tmp8 = NULL ;
11153 PyObject *swig_obj[7] ;
11164 if ( tmp2 == NULL )
11166 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11167 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11171 if ( tmp4 == NULL )
11173 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11175 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11178 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11182 if ( tmp5 == NULL )
11184 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11186 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11189 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11193 if ( tmp6 == NULL )
11195 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11197 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11200 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11204 if ( tmp7 == NULL )
11206 if ( PyArray_DIMS( tmp7 )[0] !=
Alen )
11208 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11211 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
11215 if ( tmp8 == NULL )
11217 if ( PyArray_DIMS( tmp8 )[0] <
Alen - 1 )
11219 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11222 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
11224 plscmap1la(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
double const *)arg7,(
int const *)arg8);
11269 PyObject *resultobj = 0;
11273 PyObject *swig_obj[1] ;
11277 swig_obj[0] = args;
11282 arg1 = (
PLINT)(val1);
11292 PyObject *resultobj = 0;
11299 PyObject *swig_obj[2] ;
11307 arg1 = (
PLFLT)(val1);
11312 arg2 = (
PLFLT)(val2);
11322 PyObject *resultobj = 0;
11355 PyObject *resultobj = 0;
11368 PyObject *swig_obj[4] ;
11376 arg1 = (
PLINT)(val1);
11381 arg2 = (
PLINT)(val2);
11386 arg3 = (
PLINT)(val3);
11391 arg4 = (
PLINT)(val4);
11392 plscol0(arg1,arg2,arg3,arg4);
11401 PyObject *resultobj = 0;
11417 PyObject *swig_obj[5] ;
11425 arg1 = (
PLINT)(val1);
11430 arg2 = (
PLINT)(val2);
11435 arg3 = (
PLINT)(val3);
11440 arg4 = (
PLINT)(val4);
11445 arg5 = (
PLFLT)(val5);
11446 plscol0a(arg1,arg2,arg3,arg4,arg5);
11455 PyObject *resultobj = 0;
11465 PyObject *swig_obj[3] ;
11473 arg1 = (
PLINT)(val1);
11478 arg2 = (
PLINT)(val2);
11483 arg3 = (
PLINT)(val3);
11493 PyObject *resultobj = 0;
11506 PyObject *swig_obj[4] ;
11514 arg1 = (
PLINT)(val1);
11519 arg2 = (
PLINT)(val2);
11524 arg3 = (
PLINT)(val3);
11529 arg4 = (
PLFLT)(val4);
11539 PyObject *resultobj = 0;
11543 PyObject *swig_obj[1] ;
11547 swig_obj[0] = args;
11552 arg1 = (
PLINT)(val1);
11562 PyObject *resultobj = 0;
11566 PyObject *swig_obj[1] ;
11570 swig_obj[0] = args;
11575 arg1 = (
PLINT)(val1);
11585 PyObject *resultobj = 0;
11586 char *arg1 = (
char *) 0 ;
11590 PyObject *swig_obj[1] ;
11594 swig_obj[0] = args;
11599 arg1 = (
char *)(buf1);
11600 plsdev((
char const *)arg1);
11611 PyObject *resultobj = 0;
11624 PyObject *swig_obj[4] ;
11632 arg1 = (
PLFLT)(val1);
11637 arg2 = (
PLFLT)(val2);
11642 arg3 = (
PLFLT)(val3);
11647 arg4 = (
PLFLT)(val4);
11657 PyObject *resultobj = 0;
11676 PyObject *swig_obj[6] ;
11684 arg1 = (
PLINT)(val1);
11689 arg2 = (
PLINT)(val2);
11694 arg3 = (
PLINT)(val3);
11699 arg4 = (
PLINT)(val4);
11704 arg5 = (
PLFLT)(val5);
11709 arg6 = (
PLFLT)(val6);
11710 plsdimap(arg1,arg2,arg3,arg4,arg5,arg6);
11719 PyObject *resultobj = 0;
11723 PyObject *swig_obj[1] ;
11727 swig_obj[0] = args;
11732 arg1 = (
PLFLT)(val1);
11742 PyObject *resultobj = 0;
11755 PyObject *swig_obj[4] ;
11763 arg1 = (
PLFLT)(val1);
11768 arg2 = (
PLFLT)(val2);
11773 arg3 = (
PLFLT)(val3);
11778 arg4 = (
PLFLT)(val4);
11788 PyObject *resultobj = 0;
11801 PyObject *swig_obj[4] ;
11809 arg1 = (
PLFLT)(val1);
11814 arg2 = (
PLFLT)(val2);
11819 arg3 = (
PLFLT)(val3);
11824 arg4 = (
PLFLT)(val4);
11834 PyObject *resultobj = 0;
11835 unsigned int arg1 ;
11836 unsigned int val1 ;
11838 PyObject *swig_obj[1] ;
11842 swig_obj[0] = args;
11847 arg1 = (
unsigned int)(val1);
11857 PyObject *resultobj = 0;
11861 PyObject *swig_obj[1] ;
11865 swig_obj[0] = args;
11870 arg1 = (char)(val1);
11880 PyObject *resultobj = 0;
11881 char *arg1 = (
char *) 0 ;
11882 char *arg2 = (
char *) 0 ;
11889 PyObject *swig_obj[2] ;
11898 arg1 = (
char *)(buf1);
11903 arg2 = (
char *)(buf2);
11904 result = (
PLINT)
plsetopt((
char const *)arg1,(
char const *)arg2);
11917 PyObject *resultobj = 0;
11927 PyObject *swig_obj[3] ;
11935 arg1 = (
PLINT)(val1);
11940 arg2 = (
PLINT)(val2);
11945 arg3 = (
PLINT)(val3);
11955 PyObject *resultobj = 0;
11957 unsigned int val1 ;
11959 PyObject *swig_obj[1] ;
11963 swig_obj[0] = args;
11978 PyObject *resultobj = 0;
11979 char *arg1 = (
char *) 0 ;
11983 PyObject *swig_obj[1] ;
11987 swig_obj[0] = args;
11992 arg1 = (
char *)(buf1);
12004 PyObject *resultobj = 0;
12014 PyObject *swig_obj[3] ;
12022 arg1 = (
PLINT)(val1);
12027 arg2 = (
PLINT)(val2);
12032 arg3 = (
PLINT)(val3);
12042 PyObject *resultobj = 0;
12060 PyArrayObject *tmp1 = NULL ;
12069 PyArrayObject *tmp9 = NULL ;
12078 PyObject *swig_obj[12] ;
12098 if ( tmp1 == NULL )
12100 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12101 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12103 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12104 for ( i = 0; i < arg2; i++ )
12105 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12111 arg5 = (
PLFLT)(val5);
12116 arg6 = (
PLFLT)(val6);
12121 arg7 = (
PLFLT)(val7);
12126 arg8 = (
PLFLT)(val8);
12129 if ( tmp9 == NULL )
12131 arg10 = PyArray_DIMS( tmp9 )[0];
12132 arg9 = (
PLFLT *) PyArray_DATA( tmp9 );
12138 arg11 = (
PLFLT)(val11);
12143 arg12 = (
PLINT)(val12);
12148 arg13 = (
PLFLT)(val13);
12153 arg15 = (
PLBOOL)(val15);
12154 if (swig_obj[10]) {
12157 if ( swig_obj[10] == Py_None )
12163 if ( !PyCallable_Check( (PyObject *) swig_obj[10] ) )
12165 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12172 if (swig_obj[11]) {
12174 if ( swig_obj[11] == Py_None )
12182 plshades((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(
double const *)arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17);
12217 PyObject *resultobj = 0;
12239 PyArrayObject *tmp1 = NULL ;
12268 PyObject *swig_obj[17] ;
12288 if ( tmp1 == NULL )
12290 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12291 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12293 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12294 for ( i = 0; i < arg2; i++ )
12295 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12301 arg5 = (
PLFLT)(val5);
12306 arg6 = (
PLFLT)(val6);
12311 arg7 = (
PLFLT)(val7);
12316 arg8 = (
PLFLT)(val8);
12321 arg9 = (
PLFLT)(val9);
12326 arg10 = (
PLFLT)(val10);
12331 arg11 = (
PLINT)(val11);
12336 arg12 = (
PLFLT)(val12);
12341 arg13 = (
PLFLT)(val13);
12346 arg14 = (
PLINT)(val14);
12351 arg15 = (
PLFLT)(val15);
12356 arg16 = (
PLINT)(val16);
12361 arg17 = (
PLFLT)(val17);
12366 arg19 = (
PLBOOL)(val19);
12367 if (swig_obj[15]) {
12370 if ( swig_obj[15] == Py_None )
12376 if ( !PyCallable_Check( (PyObject *) swig_obj[15] ) )
12378 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12385 if (swig_obj[16]) {
12387 if ( swig_obj[16] == Py_None )
12395 plshade((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17,arg18,arg19,arg20,arg21);
12424 PyObject *resultobj = 0;
12428 PyObject *swig_obj[2] ;
12440 if ( swig_obj[0] == Py_None )
12446 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
12448 PyErr_SetString( PyExc_ValueError,
"label_func argument must be callable" );
12452 Py_XINCREF( (PyObject *) swig_obj[0] );
12471 PyObject *resultobj = 0;
12478 PyObject *swig_obj[2] ;
12486 arg1 = (
PLFLT)(val1);
12491 arg2 = (
PLFLT)(val2);
12501 PyObject *resultobj = 0;
12504 void *arg3 = (
void *) 0 ;
12509 PyObject *swig_obj[3] ;
12517 arg1 = (
PLINT)(val1);
12522 arg2 = (
PLINT)(val2);
12524 int res;
void *
buf = 0;
12525#ifndef Py_LIMITED_API
12527 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12529#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12530#pragma GCC diagnostic push
12531#pragma GCC diagnostic ignored "-Wdeprecated"
12532#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12533#elif defined(_MSC_VER)
12534#pragma warning(push)
12535#pragma warning(disable: 4996)
12538 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12539#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12540#pragma GCC diagnostic pop
12541#elif defined(_MSC_VER)
12542#pragma warning(pop)
12549#ifndef Py_LIMITED_API
12551 PyBuffer_Release(&view);
12553 arg3 = (
void *)
buf;
12564 PyObject *resultobj = 0;
12567 void *arg3 = (
void *) 0 ;
12572 PyObject *swig_obj[3] ;
12580 arg1 = (
PLINT)(val1);
12585 arg2 = (
PLINT)(val2);
12587 int res;
void *
buf = 0;
12588#ifndef Py_LIMITED_API
12590 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12592#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12593#pragma GCC diagnostic push
12594#pragma GCC diagnostic ignored "-Wdeprecated"
12595#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12596#elif defined(_MSC_VER)
12597#pragma warning(push)
12598#pragma warning(disable: 4996)
12601 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12602#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12603#pragma GCC diagnostic pop
12604#elif defined(_MSC_VER)
12605#pragma warning(pop)
12612#ifndef Py_LIMITED_API
12614 PyBuffer_Release(&view);
12616 arg3 = (
void *)
buf;
12627 PyObject *resultobj = 0;
12634 PyObject *swig_obj[2] ;
12642 arg1 = (
PLFLT)(val1);
12647 arg2 = (
PLFLT)(val2);
12657 PyObject *resultobj = 0;
12661 PyObject *swig_obj[1] ;
12665 swig_obj[0] = args;
12670 arg1 = (
PLINT)(val1);
12680 PyObject *resultobj = 0;
12699 PyObject *swig_obj[6] ;
12707 arg1 = (
PLFLT)(val1);
12712 arg2 = (
PLFLT)(val2);
12717 arg3 = (
PLINT)(val3);
12722 arg4 = (
PLINT)(val4);
12727 arg5 = (
PLINT)(val5);
12732 arg6 = (
PLINT)(val6);
12733 plspage(arg1,arg2,arg3,arg4,arg5,arg6);
12742 PyObject *resultobj = 0;
12743 char *arg1 = (
char *) 0 ;
12747 PyObject *swig_obj[1] ;
12751 swig_obj[0] = args;
12756 arg1 = (
char *)(buf1);
12768 PyObject *resultobj = 0;
12769 char *arg1 = (
char *) 0 ;
12776 PyObject *swig_obj[2] ;
12784 arg1 = (
char *)(buf1);
12790 plspal1((
char const *)arg1,arg2);
12801 PyObject *resultobj = 0;
12805 PyObject *swig_obj[1] ;
12809 swig_obj[0] = args;
12824 PyObject *resultobj = 0;
12828 PyObject *swig_obj[1] ;
12832 swig_obj[0] = args;
12837 arg1 = (
PLINT)(val1);
12847 PyObject *resultobj = 0;
12854 PyObject *swig_obj[2] ;
12862 arg1 = (
PLINT)(val1);
12867 arg2 = (
PLINT)(val2);
12877 PyObject *resultobj = 0;
12884 PyObject *swig_obj[2] ;
12892 arg1 = (
PLFLT)(val1);
12897 arg2 = (
PLFLT)(val2);
12907 PyObject *resultobj = 0;
12914 PyObject *swig_obj[2] ;
12922 arg1 = (
PLINT)(val1);
12927 arg2 = (
PLINT)(val2);
12937 PyObject *resultobj = 0;
12938 char *arg1 = (
char *) 0 ;
12948 PyObject *swig_obj[3] ;
12956 arg1 = (
char *)(buf1);
12961 arg2 = (
PLINT)(val2);
12966 arg3 = (
PLINT)(val3);
12967 plstart((
char const *)arg1,arg2,arg3);
12978 PyObject *resultobj = 0;
12982 PyObject *swig_obj[2] ;
12995 if ( swig_obj[0] == Py_None )
13001 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
13003 PyErr_SetString( PyExc_ValueError,
"coordinate transform argument must be callable" );
13025 PyObject *resultobj = 0;
13029 char *arg4 = (
char *) 0 ;
13030 PyArrayObject *tmp1 = NULL ;
13031 PyArrayObject *tmp3 = NULL ;
13035 PyObject *swig_obj[3] ;
13041 if ( tmp1 == NULL )
13043 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13044 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13048 if ( tmp3 == NULL )
13050 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13052 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13055 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13061 arg4 = (
char *)(buf4);
13062 plstring(arg1,(
double const *)arg2,(
double const *)arg3,(
char const *)arg4);
13085 PyObject *resultobj = 0;
13090 char *arg5 = (
char *) 0 ;
13091 PyArrayObject *tmp1 = NULL ;
13092 PyArrayObject *tmp3 = NULL ;
13093 PyArrayObject *tmp4 = NULL ;
13097 PyObject *swig_obj[4] ;
13103 if ( tmp1 == NULL )
13105 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13106 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13110 if ( tmp3 == NULL )
13112 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13114 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13117 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13121 if ( tmp4 == NULL )
13123 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
13125 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13128 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
13134 arg5 = (
char *)(buf5);
13135 plstring3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
char const *)arg5);
13164 PyObject *resultobj = 0;
13177 PyObject *swig_obj[4] ;
13185 arg1 = (
PLINT)(val1);
13190 arg2 = (
PLINT)(val2);
13195 arg3 = (
PLFLT)(val3);
13200 arg4 = (
PLFLT)(val4);
13210 PyObject *resultobj = 0;
13212 char *arg2 = (
char *) 0 ;
13213 char *arg3 = (
char *) 0 ;
13227 char **arg17 = (
char **) (
char **)0 ;
13228 char *arg18 = (
char *) 0 ;
13229 char *arg19 = (
char *) 0 ;
13230 char *arg20 = (
char *) 0 ;
13261 PyArrayObject *tmp15 = NULL ;
13262 PyArrayObject *tmp16 = NULL ;
13263 char **tmp17 = NULL ;
13273 PyObject *swig_obj[19] ;
13282 arg2 = (
char *)(buf2);
13287 arg3 = (
char *)(buf3);
13292 arg4 = (
PLFLT)(val4);
13297 arg5 = (
PLFLT)(val5);
13302 arg6 = (
PLFLT)(val6);
13307 arg7 = (
PLFLT)(val7);
13312 arg8 = (
PLFLT)(val8);
13317 arg9 = (
PLFLT)(val9);
13322 arg10 = (
PLFLT)(val10);
13327 arg11 = (
PLBOOL)(val11);
13332 arg12 = (
PLBOOL)(val12);
13337 arg13 = (
PLINT)(val13);
13342 arg14 = (
PLINT)(val14);
13345 if ( tmp15 == NULL )
13347 Alen = PyArray_DIMS( tmp15 )[0];
13348 arg15 = (
PLINT *) PyArray_DATA( tmp15 );
13352 if ( tmp16 == NULL )
13354 if ( PyArray_DIMS( tmp16 )[0] !=
Alen )
13356 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13359 arg16 = (
PLINT *) PyArray_DATA( tmp16 );
13363 PyObject *elt, *unicode_string;
13365 if ( !PySequence_Check( swig_obj[15] ) ||
PySequence_Size( swig_obj[15] ) != 4 )
13367 PyErr_SetString( PyExc_ValueError,
"Requires a sequence of 4 strings." );
13372 PyErr_SetString( PyExc_ValueError,
"colline and styline args must be length 4." );
13375 tmp17 = (
char **) malloc(
sizeof (
char* ) * 4 );
13376 if ( tmp17 == NULL )
13379 for ( i = 0; i < 4; i++ )
13383 if ( PyString_Check( elt ) )
13385 arg17[i] = PyString_AsString( elt );
13387 else if ( PyUnicode_Check( elt ) )
13389 unicode_string = PyUnicode_AsEncodedString( elt,
"utf-8",
"Error ~" );
13390 arg17[i] = PyBytes_AS_STRING( unicode_string );
13392 if ( arg17[i] == NULL )
13403 arg18 = (
char *)(buf18);
13408 arg19 = (
char *)(buf19);
13413 arg20 = (
char *)(buf20);
13414 plstripc(arg1,(
char const *)arg2,(
char const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,(
int const *)arg15,(
int const *)arg16,(
char const *(*))arg17,(
char const *)arg18,(
char const *)arg19,(
char const *)arg20);
13457 PyObject *resultobj = 0;
13461 PyObject *swig_obj[1] ;
13465 swig_obj[0] = args;
13470 arg1 = (
PLINT)(val1);
13480 PyObject *resultobj = 0;
13484 PyArrayObject *tmp1 = NULL ;
13485 PyArrayObject *tmp3 = NULL ;
13486 PyObject *swig_obj[2] ;
13492 if ( tmp1 == NULL )
13494 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13495 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
13499 if ( tmp3 == NULL )
13501 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13503 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13506 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
13508 plstyl(arg1,(
int const *)arg2,(
int const *)arg3);
13529 PyObject *resultobj = 0;
13534 PyArrayObject *tmp1 = NULL ;
13535 PyArrayObject *tmp2 = NULL ;
13538 PyObject *swig_obj[3] ;
13543 if ( swig_obj[0] != Py_None )
13546 if ( tmp1 == NULL )
13548 Alen = PyArray_DIMS( tmp1 )[0];
13549 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
13558 if ( swig_obj[1] != Py_None )
13561 if ( tmp2 == NULL )
13563 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
13565 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13568 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
13569 arg3 = PyArray_DIMS( tmp2 )[0];
13582 plsvect((
double const *)arg1,(
double const *)arg2,arg3,arg4);
13603 PyObject *resultobj = 0;
13616 PyObject *swig_obj[4] ;
13624 arg1 = (
PLFLT)(val1);
13629 arg2 = (
PLFLT)(val2);
13634 arg3 = (
PLFLT)(val3);
13639 arg4 = (
PLFLT)(val4);
13640 plsvpa(arg1,arg2,arg3,arg4);
13649 PyObject *resultobj = 0;
13656 PyObject *swig_obj[2] ;
13664 arg1 = (
PLINT)(val1);
13669 arg2 = (
PLINT)(val2);
13679 PyObject *resultobj = 0;
13686 PyObject *swig_obj[2] ;
13694 arg1 = (
PLINT)(val1);
13699 arg2 = (
PLINT)(val2);
13709 PyObject *resultobj = 0;
13714 PyArrayObject *tmp1 = NULL ;
13715 PyArrayObject *tmp3 = NULL ;
13718 PyObject *swig_obj[3] ;
13724 if ( tmp1 == NULL )
13726 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13727 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13731 if ( tmp3 == NULL )
13733 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13735 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13738 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13744 arg4 = (
PLINT)(val4);
13745 plsym(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
13766 PyObject *resultobj = 0;
13773 PyObject *swig_obj[2] ;
13781 arg1 = (
PLINT)(val1);
13786 arg2 = (
PLINT)(val2);
13796 PyObject *resultobj = 0;
13809 PyObject *resultobj = 0;
13810 char *arg1 = (
char *) 0 ;
13814 PyObject *swig_obj[1] ;
13818 swig_obj[0] = args;
13823 arg1 = (
char *)(buf1);
13835 PyObject *resultobj = 0;
13839 PyObject *swig_obj[1] ;
13843 swig_obj[0] = args;
13848 arg1 = (
PLFLT)(val1);
13858 PyObject *resultobj = 0;
13866 PyArrayObject *tmp1 = NULL ;
13867 PyArrayObject *tmp2 = NULL ;
13870 PyObject *swig_obj[5] ;
13884 if ( tmp1 == NULL )
13886 Xlen = PyArray_DIMS( tmp1 )[0];
13887 Ylen = PyArray_DIMS( tmp1 )[1];
13890 for ( i = 0; i <
Xlen; i++ )
13891 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
13896 if ( tmp2 == NULL )
13898 if (
Xlen != PyArray_DIMS( tmp2 )[0] ||
Ylen != PyArray_DIMS( tmp2 )[1] )
13900 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
13903 arg3 = PyArray_DIMS( tmp2 )[0];
13904 arg4 = PyArray_DIMS( tmp2 )[1];
13906 arg2 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg3 );
13907 for ( i = 0; i < arg3; i++ )
13908 arg2[i] = ( (
PLFLT *) PyArray_DATA( tmp2 ) + i * size );
13914 arg5 = (
PLFLT)(val5);
13918 if ( swig_obj[3] == Py_None )
13924 if ( !PyCallable_Check( (PyObject *) swig_obj[3] ) )
13926 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
13935 if ( swig_obj[4] == Py_None )
13943 plvect((
double const **)arg1,(
double const **)arg2,arg3,arg4,arg5,arg6,arg7);
13980 PyObject *resultobj = 0;
13996 PyObject *swig_obj[5] ;
14004 arg1 = (
PLFLT)(val1);
14009 arg2 = (
PLFLT)(val2);
14014 arg3 = (
PLFLT)(val3);
14019 arg4 = (
PLFLT)(val4);
14024 arg5 = (
PLFLT)(val5);
14025 plvpas(arg1,arg2,arg3,arg4,arg5);
14034 PyObject *resultobj = 0;
14047 PyObject *swig_obj[4] ;
14055 arg1 = (
PLFLT)(val1);
14060 arg2 = (
PLFLT)(val2);
14065 arg3 = (
PLFLT)(val3);
14070 arg4 = (
PLFLT)(val4);
14071 plvpor(arg1,arg2,arg3,arg4);
14080 PyObject *resultobj = 0;
14093 PyObject *resultobj = 0;
14127 PyObject *swig_obj[11] ;
14135 arg1 = (
PLFLT)(val1);
14140 arg2 = (
PLFLT)(val2);
14145 arg3 = (
PLFLT)(val3);
14150 arg4 = (
PLFLT)(val4);
14155 arg5 = (
PLFLT)(val5);
14160 arg6 = (
PLFLT)(val6);
14165 arg7 = (
PLFLT)(val7);
14170 arg8 = (
PLFLT)(val8);
14175 arg9 = (
PLFLT)(val9);
14180 arg10 = (
PLFLT)(val10);
14185 arg11 = (
PLFLT)(val11);
14186 plw3d(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
14195 PyObject *resultobj = 0;
14199 PyObject *swig_obj[1] ;
14203 swig_obj[0] = args;
14208 arg1 = (
PLFLT)(val1);
14218 PyObject *resultobj = 0;
14231 PyObject *swig_obj[4] ;
14239 arg1 = (
PLFLT)(val1);
14244 arg2 = (
PLFLT)(val2);
14249 arg3 = (
PLFLT)(val3);
14254 arg4 = (
PLFLT)(val4);
14255 plwind(arg1,arg2,arg3,arg4);
14264 PyObject *resultobj = 0;
14271 PyObject *swig_obj[1] ;
14276 swig_obj[0] = args;
14297 PyObject *resultobj = 0;
14299 char *arg2 = (
char *) 0 ;
14315 PyObject *swig_obj[6] ;
14321 if ( swig_obj[0] == Py_None )
14327 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14329 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14339 arg2 = (
char *)(buf2);
14344 arg3 = (
PLFLT)(val3);
14349 arg4 = (
PLFLT)(val4);
14354 arg5 = (
PLFLT)(val5);
14359 arg6 = (
PLFLT)(val6);
14360 plmap(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6);
14377 PyObject *resultobj = 0;
14379 char *arg2 = (
char *) 0 ;
14397 PyArrayObject *tmp7 = NULL ;
14398 PyObject *swig_obj[7] ;
14404 if ( swig_obj[0] == Py_None )
14410 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14412 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14422 arg2 = (
char *)(buf2);
14427 arg3 = (
PLFLT)(val3);
14432 arg4 = (
PLFLT)(val4);
14437 arg5 = (
PLFLT)(val5);
14442 arg6 = (
PLFLT)(val6);
14444 if ( swig_obj[6] != Py_None )
14447 if ( tmp7 == NULL )
14449 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14450 arg8 = PyArray_DIMS( tmp7 )[0];
14458 plmapline(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14481 PyObject *resultobj = 0;
14483 char *arg2 = (
char *) 0 ;
14484 char *arg3 = (
char *) 0 ;
14505 PyArrayObject *tmp8 = NULL ;
14506 PyObject *swig_obj[8] ;
14512 if ( swig_obj[0] == Py_None )
14518 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14520 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14530 arg2 = (
char *)(buf2);
14535 arg3 = (
char *)(buf3);
14540 arg4 = (
PLFLT)(val4);
14545 arg5 = (
PLFLT)(val5);
14550 arg6 = (
PLFLT)(val6);
14555 arg7 = (
PLFLT)(val7);
14557 if ( swig_obj[7] != Py_None )
14560 if ( tmp8 == NULL )
14562 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
14563 arg9 = PyArray_DIMS( tmp8 )[0];
14571 plmapstring(arg1,(
char const *)arg2,(
char const *)arg3,arg4,arg5,arg6,arg7,(
int const *)arg8,arg9);
14596 PyObject *resultobj = 0;
14598 char *arg2 = (
char *) 0 ;
14602 char *arg6 = (
char *) 0 ;
14630 PyObject *swig_obj[11] ;
14636 if ( swig_obj[0] == Py_None )
14642 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14644 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14654 arg2 = (
char *)(buf2);
14659 arg3 = (
PLFLT)(val3);
14664 arg4 = (
PLFLT)(val4);
14669 arg5 = (
PLFLT)(val5);
14674 arg6 = (
char *)(buf6);
14679 arg7 = (
PLFLT)(val7);
14684 arg8 = (
PLFLT)(val8);
14689 arg9 = (
PLFLT)(val9);
14694 arg10 = (
PLFLT)(val10);
14699 arg11 = (
PLINT)(val11);
14700 plmaptex(arg1,(
char const *)arg2,arg3,arg4,arg5,(
char const *)arg6,arg7,arg8,arg9,arg10,arg11);
14719 PyObject *resultobj = 0;
14721 char *arg2 = (
char *) 0 ;
14739 PyArrayObject *tmp7 = NULL ;
14740 PyObject *swig_obj[7] ;
14746 if ( swig_obj[0] == Py_None )
14752 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14754 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14764 arg2 = (
char *)(buf2);
14769 arg3 = (
PLFLT)(val3);
14774 arg4 = (
PLFLT)(val4);
14779 arg5 = (
PLFLT)(val5);
14784 arg6 = (
PLFLT)(val6);
14786 if ( swig_obj[6] != Py_None )
14789 if ( tmp7 == NULL )
14791 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14792 arg8 = PyArray_DIMS( tmp7 )[0];
14800 plmapfill(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14823 PyObject *resultobj = 0;
14843 PyObject *swig_obj[7] ;
14849 if ( swig_obj[0] == Py_None )
14855 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14857 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14867 arg2 = (
PLFLT)(val2);
14872 arg3 = (
PLFLT)(val3);
14877 arg4 = (
PLFLT)(val4);
14882 arg5 = (
PLFLT)(val5);
14887 arg6 = (
PLFLT)(val6);
14892 arg7 = (
PLFLT)(val7);
14908 PyObject *resultobj = 0;
14922 PyArrayObject *tmp1 = NULL ;
14943 PyObject *swig_obj[11] ;
14950 if ( tmp1 == NULL )
14952 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
14953 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
14955 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
14956 for ( i = 0; i < arg2; i++ )
14957 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
14963 arg4 = (
PLFLT)(val4);
14968 arg5 = (
PLFLT)(val5);
14973 arg6 = (
PLFLT)(val6);
14978 arg7 = (
PLFLT)(val7);
14983 arg8 = (
PLFLT)(val8);
14988 arg9 = (
PLFLT)(val9);
14993 arg10 = (
PLFLT)(val10);
14998 arg11 = (
PLFLT)(val11);
15003 arg12 = (
PLFLT)(val12);
15008 arg13 = (
PLFLT)(val13);
15009 plimage((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15026 PyObject *resultobj = 0;
15040 PyArrayObject *tmp1 = NULL ;
15057 PyObject *swig_obj[11] ;
15071 if ( tmp1 == NULL )
15073 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15074 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15076 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15077 for ( i = 0; i < arg2; i++ )
15078 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15084 arg4 = (
PLFLT)(val4);
15089 arg5 = (
PLFLT)(val5);
15094 arg6 = (
PLFLT)(val6);
15099 arg7 = (
PLFLT)(val7);
15104 arg8 = (
PLFLT)(val8);
15109 arg9 = (
PLFLT)(val9);
15114 arg10 = (
PLFLT)(val10);
15119 arg11 = (
PLFLT)(val11);
15123 if ( swig_obj[9] == Py_None )
15129 if ( !PyCallable_Check( (PyObject *) swig_obj[9] ) )
15131 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
15138 if (swig_obj[10]) {
15140 if ( swig_obj[10] == Py_None )
15148 plimagefr((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15177 PyObject *resultobj = 0;
15190 PyObject *resultobj = 0;
15203 PyObject *resultobj = 0;
15204 char *arg1 = (
char *) 0 ;
15205 char *arg2 = (
char *) 0 ;
15212 PyObject *swig_obj[2] ;
15220 arg1 = (
char *)(buf1);
15225 arg2 = (
char *)(buf2);
15226 plSetUsage((
char const *)arg1,(
char const *)arg2);
15239 PyObject *resultobj = 0;
15252 PyObject *resultobj = 0;
15258 PyArrayObject *tmp1 = NULL ;
15263 PyObject *swig_obj[1] ;
15269 swig_obj[0] = args;
15273 if ( tmp1 == NULL )
15275 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15276 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15278 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15279 for ( i = 0; i < arg2; i++ )
15280 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15311 PyObject *resultobj = 0;
15315 PyObject *swig_obj[1] ;
15320 swig_obj[0] = args;
15368 "Set format of numerical label for contours\n"
15372 " Set format of numerical label for contours.\n"
15374 " Redacted form: pl_setcontlabelformat(lexp, sigdig)\n"
15376 " This function is used example 9.\n"
15382 "pl_setcontlabelformat(lexp, sigdig)\n"
15386 " lexp (PLINT, input) : If the contour numerical label is greater\n"
15387 " than 10^(lexp) or less than 10^(-lexp), then the exponential\n"
15388 " format is used. Default value of lexp is 4.\n"
15390 " sigdig (PLINT, input) : Number of significant digits. Default\n"
15395 "Set parameters of contour labelling other than format of numerical label\n"
15399 " Set parameters of contour labelling other than those handled by\n"
15400 " pl_setcontlabelformat.\n"
15402 " Redacted form: pl_setcontlabelparam(offset, size, spacing, active)\n"
15404 " This function is used in example 9.\n"
15410 "pl_setcontlabelparam(offset, size, spacing, active)\n"
15414 " offset (PLFLT, input) : Offset of label from contour line (if set\n"
15415 " to 0.0, labels are printed on the lines). Default value is 0.006.\n"
15417 " size (PLFLT, input) : Font height for contour labels (normalized).\n"
15418 " Default value is 0.3.\n"
15420 " spacing (PLFLT, input) : Spacing parameter for contour labels.\n"
15421 " Default value is 0.1.\n"
15423 " active (PLINT, input) : Activate labels. Set to 1 if you want\n"
15424 " contour labels on. Default is off (0).\n"
15428 "Advance the (sub-)page\n"
15432 " Advances to the next subpage if sub=0, performing a page advance if\n"
15433 " there are no remaining subpages on the current page. If subpages\n"
15434 " aren't being used, pladv(0) will always advance the page. If page>0,\n"
15435 " PLplot switches to the specified subpage. Note that this allows you\n"
15436 " to overwrite a plot on the specified subpage; if this is not what you\n"
15437 " intended, use pleop followed by plbop to first advance the page. This\n"
15438 " routine is called automatically (with page=0) by plenv, but if plenv\n"
15439 " is not used, pladv must be called after initializing PLplot but before\n"
15440 " defining the viewport.\n"
15442 " Redacted form: pladv(page)\n"
15444 " This function is used in examples 1, 2, 4, 6-12, 14-18, 20, 21, 23-27,\n"
15455 " page (PLINT, input) : Specifies the subpage number (starting from 1\n"
15456 " in the top left corner and increasing along the rows) to which to\n"
15457 " advance. Set to zero to advance to the next subpage (or to the\n"
15458 " next page if subpages are not being used).\n"
15462 "Draw a circular or elliptical arc\n"
15466 " Draw a possibly filled arc centered at x, y with semimajor axis a and\n"
15467 " semiminor axis b, starting at angle1 and ending at angle2.\n"
15469 " Redacted form: General: plarc(x, y, a, b, angle1, angle2, rotate,\n"
15473 " This function is used in examples 3 and 27.\n"
15479 "plarc(x, y, a, b, angle1, angle2, rotate, fill)\n"
15483 " x (PLFLT, input) : X coordinate of arc center.\n"
15485 " y (PLFLT, input) : Y coordinate of arc center.\n"
15487 " a (PLFLT, input) : Length of the semimajor axis of the arc.\n"
15489 " b (PLFLT, input) : Length of the semiminor axis of the arc.\n"
15491 " angle1 (PLFLT, input) : Starting angle of the arc relative to the\n"
15492 " semimajor axis.\n"
15494 " angle2 (PLFLT, input) : Ending angle of the arc relative to the\n"
15495 " semimajor axis.\n"
15497 " rotate (PLFLT, input) : Angle of the semimajor axis relative to the\n"
15500 " fill (PLBOOL, input) : Draw a filled arc.\n"
15504 "Draw a box with axes, etc. with arbitrary origin\n"
15508 " Draws a box around the currently defined viewport with arbitrary\n"
15509 " world-coordinate origin specified by x0 and y0 and labels it with\n"
15510 " world coordinate values appropriate to the window. Thus plaxes should\n"
15511 " only be called after defining both viewport and window. The ascii\n"
15512 " character strings xopt and yopt specify how the box should be drawn as\n"
15513 " described below. If ticks and/or subticks are to be drawn for a\n"
15514 " particular axis, the tick intervals and number of subintervals may be\n"
15515 " specified explicitly, or they may be defaulted by setting the\n"
15516 " appropriate arguments to zero.\n"
15518 " Redacted form: General: plaxes(x0, y0, xopt, xtick, nxsub, yopt,\n"
15522 " This function is not used in any examples.\n"
15528 "plaxes(x0, y0, xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15532 " x0 (PLFLT, input) : World X coordinate of origin.\n"
15534 " y0 (PLFLT, input) : World Y coordinate of origin.\n"
15536 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15537 " options for the x axis. The string can include any combination of\n"
15538 " the following letters (upper or lower case) in any order: a: Draws\n"
15539 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15541 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15542 " c: Draws top (X) or right (Y) edge of frame.\n"
15543 " d: Plot labels as date / time. Values are assumed to be\n"
15544 " seconds since the epoch (as used by gmtime).\n"
15545 " f: Always use fixed point numeric labels.\n"
15546 " g: Draws a grid at the major tick interval.\n"
15547 " h: Draws a grid at the minor tick interval.\n"
15548 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15550 " l: Labels axis logarithmically. This only affects the labels,\n"
15551 " not the data, and so it is necessary to compute the logarithms\n"
15552 " of data points before passing them to any of the drawing\n"
15554 " m: Writes numeric labels at major tick intervals in the\n"
15555 " unconventional location (above box for X, right of box for Y).\n"
15556 " n: Writes numeric labels at major tick intervals in the\n"
15557 " conventional location (below box for X, left of box for Y).\n"
15558 " o: Use custom labelling function to generate axis label text.\n"
15559 " The custom labelling function can be defined with the\n"
15560 " plslabelfunc command.\n"
15561 " s: Enables subticks between major ticks, only valid if t is\n"
15562 " also specified.\n"
15563 " t: Draws major ticks.\n"
15564 " u: Exactly like \"b\" except don't draw edge line.\n"
15565 " w: Exactly like \"c\" except don't draw edge line.\n"
15566 " x: Exactly like \"t\" (including the side effect of the\n"
15567 " numerical labels for the major ticks) except exclude drawing\n"
15568 " the major and minor tick marks.\n"
15571 " xtick (PLFLT, input) : World coordinate interval between major\n"
15572 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15573 " generates a suitable tick interval.\n"
15575 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15576 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15577 " generates a suitable minor tick interval.\n"
15579 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15580 " options for the y axis. The string can include any combination of\n"
15581 " the letters defined above for xopt, and in addition may contain:\n"
15582 " v: Write numeric labels for the y axis parallel to the base of the\n"
15583 " graph, rather than parallel to the axis.\n"
15586 " ytick (PLFLT, input) : World coordinate interval between major\n"
15587 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15588 " generates a suitable tick interval.\n"
15590 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15591 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15592 " generates a suitable minor tick interval.\n"
15596 "Plot a histogram from binned data\n"
15600 " Plots a histogram consisting of nbin bins. The value associated with\n"
15601 " the i'th bin is placed in x[i], and the number of points in the bin is\n"
15602 " placed in y[i]. For proper operation, the values in x[i] must form a\n"
15603 " strictly increasing sequence. By default, x[i] is the left-hand edge\n"
15604 " of the i'th bin. If opt=PL_BIN_CENTRED is used, the bin boundaries are\n"
15605 " placed midway between the values in the x vector. Also see plhist for\n"
15606 " drawing histograms from unbinned data.\n"
15608 " Redacted form: General: plbin(x, y, opt)\n"
15609 " Python: plbin(nbin, x, y, opt)\n"
15612 " This function is not used in any examples.\n"
15618 "plbin(nbin, x, y, opt)\n"
15622 " nbin (PLINT, input) : Number of bins (i.e., number of values in x\n"
15623 " and y vectors.)\n"
15625 " x (PLFLT_VECTOR, input) : A vector containing values associated\n"
15626 " with bins. These must form a strictly increasing sequence.\n"
15628 " y (PLFLT_VECTOR, input) : A vector containing a number which is\n"
15629 " proportional to the number of points in each bin. This is a PLFLT\n"
15630 " (instead of PLINT) vector so as to allow histograms of\n"
15631 " probabilities, etc.\n"
15633 " opt (PLINT, input) : Is a combination of several flags:\n"
15634 " opt=PL_BIN_DEFAULT: The x represent the lower bin boundaries, the\n"
15635 " outer bins are expanded to fill up the entire x-axis and bins of\n"
15636 " zero height are simply drawn.\n"
15637 " opt=PL_BIN_CENTRED|...: The bin boundaries are to be midway\n"
15638 " between the x values. If the values in x are equally spaced,\n"
15639 " the values are the center values of the bins.\n"
15640 " opt=PL_BIN_NOEXPAND|...: The outer bins are drawn with equal\n"
15641 " size as the ones inside.\n"
15642 " opt=PL_BIN_NOEMPTY|...: Bins with zero height are not drawn\n"
15643 " (there is a gap for such bins).\n"
15647 "Calculate broken-down time from continuous time for the current stream\n"
15651 " Calculate broken-down time; year, month, day, hour, min, sec; from\n"
15652 " continuous time, ctime for the current stream. This function is the\n"
15653 " inverse of plctime.\n"
15655 " The PLplot definition of broken-down time is a calendar time that\n"
15656 " completely ignores all time zone offsets, i.e., it is the user's\n"
15657 " responsibility to apply those offsets (if so desired) before using the\n"
15658 " PLplot time API. By default broken-down time is defined using the\n"
15659 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
15660 " continuous time is defined as the number of seconds since the Unix\n"
15661 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
15662 " broken-down and continuous time are possible, see plconfigtime.\n"
15664 " Redacted form: General: plbtime(year, month, day, hour, min, sec,\n"
15668 " This function is used in example 29.\n"
15674 "plbtime(year, month, day, hour, min, sec, ctime)\n"
15678 " year (PLINT_NC_SCALAR, output) : Returned value of years with\n"
15679 " positive values corresponding to CE (i.e., 1 = 1 CE, etc.) and\n"
15680 " non-negative values corresponding to BCE (e.g., 0 = 1 BCE, -1 = 2\n"
15683 " month (PLINT_NC_SCALAR, output) : Returned value of month within\n"
15684 " the year in the range from 0 (January) to 11 (December).\n"
15686 " day (PLINT_NC_SCALAR, output) : Returned value of day within the\n"
15687 " month in the range from 1 to 31.\n"
15689 " hour (PLINT_NC_SCALAR, output) : Returned value of hour within the\n"
15690 " day in the range from 0 to 23.\n"
15692 " min (PLINT_NC_SCALAR, output) : Returned value of minute within the\n"
15693 " hour in the range from 0 to 59\n"
15695 " sec (PLFLT_NC_SCALAR, output) : Returned value of second within the\n"
15696 " minute in range from 0. to 60.\n"
15698 " ctime (PLFLT, input) : Continuous time from which the broken-down\n"
15699 " time is calculated.\n"
15703 "Begin a new page\n"
15707 " Begins a new page. For a file driver, the output file is opened if\n"
15708 " necessary. Advancing the page via pleop and plbop is useful when a\n"
15709 " page break is desired at a particular point when plotting to subpages.\n"
15710 " Another use for pleop and plbop is when plotting pages to different\n"
15711 " files, since you can manually set the file name by calling plsfnam\n"
15712 " after the call to pleop. (In fact some drivers may only support a\n"
15713 " single page per file, making this a necessity.) One way to handle\n"
15714 " this case automatically is to page advance via pladv, but enable\n"
15715 " familying (see plsfam) with a small limit on the file size so that a\n"
15716 " new family member file will be created on each page break.\n"
15718 " Redacted form: plbop()\n"
15720 " This function is used in examples 2 and 20.\n"
15730 "Draw a box with axes, etc\n"
15734 " Draws a box around the currently defined viewport, and labels it with\n"
15735 " world coordinate values appropriate to the window. Thus plbox should\n"
15736 " only be called after defining both viewport and window. The ascii\n"
15737 " character strings xopt and yopt specify how the box should be drawn as\n"
15738 " described below. If ticks and/or subticks are to be drawn for a\n"
15739 " particular axis, the tick intervals and number of subintervals may be\n"
15740 " specified explicitly, or they may be defaulted by setting the\n"
15741 " appropriate arguments to zero.\n"
15743 " Redacted form: General: plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15746 " This function is used in examples 1, 2, 4, 6, 6-12, 14-18, 21, 23-26,\n"
15753 "plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15757 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15758 " options for the x axis. The string can include any combination of\n"
15759 " the following letters (upper or lower case) in any order: a: Draws\n"
15760 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15762 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15763 " c: Draws top (X) or right (Y) edge of frame.\n"
15764 " d: Plot labels as date / time. Values are assumed to be\n"
15765 " seconds since the epoch (as used by gmtime).\n"
15766 " f: Always use fixed point numeric labels.\n"
15767 " g: Draws a grid at the major tick interval.\n"
15768 " h: Draws a grid at the minor tick interval.\n"
15769 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15771 " l: Labels axis logarithmically. This only affects the labels,\n"
15772 " not the data, and so it is necessary to compute the logarithms\n"
15773 " of data points before passing them to any of the drawing\n"
15775 " m: Writes numeric labels at major tick intervals in the\n"
15776 " unconventional location (above box for X, right of box for Y).\n"
15777 " n: Writes numeric labels at major tick intervals in the\n"
15778 " conventional location (below box for X, left of box for Y).\n"
15779 " o: Use custom labelling function to generate axis label text.\n"
15780 " The custom labelling function can be defined with the\n"
15781 " plslabelfunc command.\n"
15782 " s: Enables subticks between major ticks, only valid if t is\n"
15783 " also specified.\n"
15784 " t: Draws major ticks.\n"
15785 " u: Exactly like \"b\" except don't draw edge line.\n"
15786 " w: Exactly like \"c\" except don't draw edge line.\n"
15787 " x: Exactly like \"t\" (including the side effect of the\n"
15788 " numerical labels for the major ticks) except exclude drawing\n"
15789 " the major and minor tick marks.\n"
15792 " xtick (PLFLT, input) : World coordinate interval between major\n"
15793 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15794 " generates a suitable tick interval.\n"
15796 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15797 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15798 " generates a suitable minor tick interval.\n"
15800 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15801 " options for the y axis. The string can include any combination of\n"
15802 " the letters defined above for xopt, and in addition may contain:\n"
15803 " v: Write numeric labels for the y axis parallel to the base of the\n"
15804 " graph, rather than parallel to the axis.\n"
15807 " ytick (PLFLT, input) : World coordinate interval between major\n"
15808 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15809 " generates a suitable tick interval.\n"
15811 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15812 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15813 " generates a suitable minor tick interval.\n"
15817 "Draw a box with axes, etc, in 3-d\n"
15821 " Draws axes, numeric and text labels for a three-dimensional surface\n"
15822 " plot. For a more complete description of three-dimensional plotting\n"
15823 " see the PLplot documentation.\n"
15825 " Redacted form: General: plbox3(xopt, xlabel, xtick, nxsub, yopt,\n"
15826 " ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15829 " This function is used in examples 8, 11, 18, and 21.\n"
15835 "plbox3(xopt, xlabel, xtick, nxsub, yopt, ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15839 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15840 " options for the x axis. The string can include any combination of\n"
15841 " the following letters (upper or lower case) in any order: b: Draws\n"
15842 " axis at base, at height z=\n"
15843 " zmin where zmin is defined by call to plw3d. This character must be\n"
15844 " specified in order to use any of the other options.\n"
15845 " d: Plot labels as date / time. Values are assumed to be\n"
15846 " seconds since the epoch (as used by gmtime).\n"
15847 " f: Always use fixed point numeric labels.\n"
15848 " i: Inverts tick marks, so they are drawn downwards, rather\n"
15850 " l: Labels axis logarithmically. This only affects the labels,\n"
15851 " not the data, and so it is necessary to compute the logarithms\n"
15852 " of data points before passing them to any of the drawing\n"
15854 " n: Writes numeric labels at major tick intervals.\n"
15855 " o: Use custom labelling function to generate axis label text.\n"
15856 " The custom labelling function can be defined with the\n"
15857 " plslabelfunc command.\n"
15858 " s: Enables subticks between major ticks, only valid if t is\n"
15859 " also specified.\n"
15860 " t: Draws major ticks.\n"
15861 " u: If this is specified, the text label for the axis is\n"
15862 " written under the axis.\n"
15865 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15866 " the text label for the x axis. It is only drawn if u is in the\n"
15869 " xtick (PLFLT, input) : World coordinate interval between major\n"
15870 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15871 " generates a suitable tick interval.\n"
15873 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15874 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15875 " generates a suitable minor tick interval.\n"
15877 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15878 " options for the y axis. The string is interpreted in the same way\n"
15881 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15882 " the text label for the y axis. It is only drawn if u is in the\n"
15885 " ytick (PLFLT, input) : World coordinate interval between major\n"
15886 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15887 " generates a suitable tick interval.\n"
15889 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15890 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15891 " generates a suitable minor tick interval.\n"
15893 " zopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15894 " options for the z axis. The string can include any combination of\n"
15895 " the following letters (upper or lower case) in any order: b: Draws\n"
15896 " z axis to the left of the surface plot.\n"
15897 " c: Draws z axis to the right of the surface plot.\n"
15898 " d: Draws grid lines parallel to the x-y plane behind the\n"
15899 " figure. These lines are not drawn until after plot3d or\n"
15900 " plmesh are called because of the need for hidden line removal.\n"
15901 " e: Plot labels as date / time. Values are assumed to be\n"
15902 " seconds since the epoch (as used by gmtime). Note this\n"
15903 " suboption is interpreted the same as the d suboption for xopt\n"
15904 " and yopt, but it has to be identified as e for zopt since d\n"
15905 " has already been used for the different purpose above.\n"
15906 " f: Always use fixed point numeric labels.\n"
15907 " i: Inverts tick marks, so they are drawn away from the center.\n"
15908 " l: Labels axis logarithmically. This only affects the labels,\n"
15909 " not the data, and so it is necessary to compute the logarithms\n"
15910 " of data points before passing them to any of the drawing\n"
15912 " m: Writes numeric labels at major tick intervals on the\n"
15913 " right-hand z axis.\n"
15914 " n: Writes numeric labels at major tick intervals on the\n"
15915 " left-hand z axis.\n"
15916 " o: Use custom labelling function to generate axis label text.\n"
15917 " The custom labelling function can be defined with the\n"
15918 " plslabelfunc command.\n"
15919 " s: Enables subticks between major ticks, only valid if t is\n"
15920 " also specified.\n"
15921 " t: Draws major ticks.\n"
15922 " u: If this is specified, the text label is written beside the\n"
15923 " left-hand axis.\n"
15924 " v: If this is specified, the text label is written beside the\n"
15925 " right-hand axis.\n"
15928 " zlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15929 " the text label for the z axis. It is only drawn if u or v are in\n"
15930 " the zopt string.\n"
15932 " ztick (PLFLT, input) : World coordinate interval between major\n"
15933 " ticks on the z axis. If it is set to zero, PLplot automatically\n"
15934 " generates a suitable tick interval.\n"
15936 " nzsub (PLINT, input) : Number of subintervals between major z axis\n"
15937 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15938 " generates a suitable minor tick interval.\n"
15942 "Calculate world coordinates and corresponding window index from relative device coordinates\n"
15946 " Calculate world coordinates, wx and wy, and corresponding window index\n"
15947 " from relative device coordinates, rx and ry.\n"
15949 " Redacted form: General: plcalc_world(rx, ry, wx, wy, window)\n"
15952 " This function is used in example 31.\n"
15958 "plcalc_world(rx, ry, wx, wy, window)\n"
15962 " rx (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15963 " the x coordinate.\n"
15965 " ry (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15966 " the y coordinate.\n"
15968 " wx (PLFLT_NC_SCALAR, output) : Returned value of the x world\n"
15969 " coordinate corresponding to the relative device coordinates rx and\n"
15972 " wy (PLFLT_NC_SCALAR, output) : Returned value of the y world\n"
15973 " coordinate corresponding to the relative device coordinates rx and\n"
15976 " window (PLINT_NC_SCALAR, output) : Returned value of the last\n"
15977 " defined window index that corresponds to the input relative device\n"
15978 " coordinates (and the returned world coordinates). To give some\n"
15979 " background on the window index, for each page the initial window\n"
15980 " index is set to zero, and each time plwind is called within the\n"
15981 " page, world and device coordinates are stored for the window and\n"
15982 " the window index is incremented. Thus, for a simple page layout\n"
15983 " with non-overlapping viewports and one window per viewport, window\n"
15984 " corresponds to the viewport index (in the order which the\n"
15985 " viewport/windows were created) of the only viewport/window\n"
15986 " corresponding to rx and ry. However, for more complicated layouts\n"
15987 " with potentially overlapping viewports and possibly more than one\n"
15988 " window (set of world coordinates) per viewport, window and the\n"
15989 " corresponding output world coordinates corresponds to the last\n"
15990 " window created that fulfills the criterion that the relative\n"
15991 " device coordinates are inside it. Finally, in all cases where the\n"
15992 " input relative device coordinates are not inside any\n"
15993 " viewport/window, then the returned value of the last defined\n"
15994 " window index is set to -1.\n"
15998 "Clear current (sub)page\n"
16002 " Clears the current page, effectively erasing everything that have been\n"
16003 " drawn. This command only works with interactive drivers; if the\n"
16004 " driver does not support this, the page is filled with the background\n"
16005 " color in use. If the current page is divided into subpages, only the\n"
16006 " current subpage is erased. The nth subpage can be selected with\n"
16009 " Redacted form: General: plclear()\n"
16012 " This function is not used in any examples.\n"
16022 "Set color, cmap0\n"
16026 " Sets the color index for cmap0 (see the PLplot documentation).\n"
16028 " Redacted form: plcol0(icol0)\n"
16030 " This function is used in examples 1-9, 11-16, 18-27, and 29.\n"
16040 " icol0 (PLINT, input) : Integer representing the color. The\n"
16041 " defaults at present are (these may change):\n"
16042 " 0 black (default background)\n"
16043 " 1 red (default foreground)\n"
16059 " Use plscmap0 to change the entire cmap0 color palette and plscol0 to\n"
16060 " change an individual color in the cmap0 color palette.\n"
16064 "Set color, cmap1\n"
16068 " Sets the color for cmap1 (see the PLplot documentation).\n"
16070 " Redacted form: plcol1(col1)\n"
16072 " This function is used in examples 12 and 21.\n"
16082 " col1 (PLFLT, input) : This value must be in the range (0.0-1.0) and\n"
16083 " is mapped to color using the continuous cmap1 palette which by\n"
16084 " default ranges from blue to the background color to red. The\n"
16085 " cmap1 palette can also be straightforwardly changed by the user\n"
16086 " with plscmap1 or plscmap1l.\n"
16090 "Configure the transformation between continuous and broken-down time for the current stream\n"
16094 " Configure the transformation between continuous and broken-down time\n"
16095 " for the current stream. This transformation is used by both plbtime\n"
16098 " Redacted form: General: plconfigtime(scale, offset1, offset2,\n"
16099 " ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16102 " This function is used in example 29.\n"
16108 "plconfigtime(scale, offset1, offset2, ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16112 " scale (PLFLT, input) : The number of days per continuous time unit.\n"
16113 " As a special case, if\n"
16114 " scale is 0., then all other arguments are ignored, and the result (the\n"
16115 " default used by PLplot) is the equivalent of a call to\n"
16116 " plconfigtime(1./86400., 0., 0., 0x0, 1, 1970, 0, 1, 0, 0, 0.).\n"
16117 " That is, for this special case broken-down time is calculated with\n"
16118 " the proleptic Gregorian calendar with no leap seconds inserted,\n"
16119 " and the continuous time is defined as the number of seconds since\n"
16120 " the Unix epoch of 1970-01-01T00:00:00Z.\n"
16122 " offset1 (PLFLT, input) : If\n"
16123 " ifbtime_offset is true, the parameters\n"
16125 " offset2 are completely ignored. Otherwise, the sum of these parameters\n"
16126 " (with units in days) specify the epoch of the continuous time\n"
16127 " relative to the MJD epoch corresponding to the Gregorian calendar\n"
16128 " date of 1858-11-17T00:00:00Z or JD = 2400000.5. Two PLFLT numbers\n"
16129 " are used to specify the origin to allow users (by specifying\n"
16130 " offset1 as an integer that can be exactly represented by a\n"
16131 " floating-point variable and specifying\n"
16132 " offset2 as a number in the range from 0. to 1) the chance to minimize\n"
16133 " the numerical errors of the continuous time representation.\n"
16135 " offset2 (PLFLT, input) : See documentation of\n"
16138 " ccontrol (PLINT, input) : ccontrol contains bits controlling the\n"
16139 " transformation. If the 0x1 bit is set, then the proleptic Julian\n"
16140 " calendar is used for broken-down time rather than the proleptic\n"
16141 " Gregorian calendar. If the 0x2 bit is set, then leap seconds that\n"
16142 " have been historically used to define UTC are inserted into the\n"
16143 " broken-down time. Other possibilities for additional control bits\n"
16144 " for ccontrol exist such as making the historical time corrections\n"
16145 " in the broken-down time corresponding to ET (ephemeris time) or\n"
16146 " making the (slightly non-constant) corrections from international\n"
16147 " atomic time (TAI) to what astronomers define as terrestrial time\n"
16148 " (TT). But those additional possibilities have not been\n"
16149 " implemented yet in the qsastime library (one of the PLplot utility\n"
16152 " ifbtime_offset (PLBOOL, input) : ifbtime_offset controls how the\n"
16153 " epoch of the continuous time scale is specified by the user. If\n"
16154 " ifbtime_offset is false, then\n"
16156 " offset2 are used to specify the epoch, and the following broken-down\n"
16157 " time parameters are completely ignored. If\n"
16158 " ifbtime_offset is true, then\n"
16160 " offset2 are completely ignored, and the following broken-down time\n"
16161 " parameters are used to specify the epoch.\n"
16163 " year (PLINT, input) : Year of epoch.\n"
16165 " month (PLINT, input) : Month of epoch in range from 0 (January) to\n"
16166 " 11 (December).\n"
16168 " day (PLINT, input) : Day of epoch in range from 1 to 31.\n"
16170 " hour (PLINT, input) : Hour of epoch in range from 0 to 23\n"
16172 " min (PLINT, input) : Minute of epoch in range from 0 to 59.\n"
16174 " sec (PLFLT, input) : Second of epoch in range from 0. to 60.\n"
16182 " Draws a contour plot of the data in f[\n"
16184 " ny], using the nlevel contour levels specified by clevel. Only the\n"
16185 " region of the matrix from kx to lx and from ky to ly is plotted out\n"
16186 " where all these index ranges are interpreted as one-based for\n"
16187 " historical reasons. A transformation routine pointed to by pltr with\n"
16188 " a generic pointer pltr_data for additional data required by the\n"
16189 " transformation routine is used to map indices within the matrix to the\n"
16190 " world coordinates.\n"
16192 " Redacted form: plcont(f, kx, lx, ky, ly, clevel, pltr, pltr_data)\n"
16193 " where (see above discussion) the pltr, pltr_data callback arguments\n"
16194 " are sometimes replaced by a tr vector with 6 elements; xg and yg\n"
16195 " vectors; or xg and yg matrices.\n"
16197 " This function is used in examples 9, 14, 16, and 22.\n"
16203 "plcont(f, nx, ny, kx, lx, ky, ly, clevel, nlevel, pltr, pltr_data)\n"
16207 " f (PLFLT_MATRIX, input) : A matrix containing data to be contoured.\n"
16209 " nx, ny (PLINT, input) : The dimensions of the matrix f.\n"
16211 " kx, lx (PLINT, input) : Range of x indices to consider where 0 <=\n"
16212 " kx-1 < lx-1 < nx. Values of kx and lx are one-based rather than\n"
16213 " zero-based for historical backwards-compatibility reasons.\n"
16215 " ky, ly (PLINT, input) : Range of y indices to consider where 0 <=\n"
16216 " ky-1 < ly-1 < ny. Values of ky and ly are one-based rather than\n"
16217 " zero-based for historical backwards-compatibility reasons.\n"
16219 " clevel (PLFLT_VECTOR, input) : A vector specifying the levels at\n"
16220 " which to draw contours.\n"
16222 " nlevel (PLINT, input) : Number of contour levels to draw.\n"
16224 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
16225 " defines the transformation between the zero-based indices of the\n"
16226 " matrix f and the world coordinates.For the C case, transformation\n"
16227 " functions are provided in the PLplot library: pltr0 for the\n"
16228 " identity mapping, and pltr1 and pltr2 for arbitrary mappings\n"
16229 " respectively defined by vectors and matrices. In addition, C\n"
16230 " callback routines for the transformation can be supplied by the\n"
16231 " user such as the mypltr function in examples/c/x09c.c which\n"
16232 " provides a general linear transformation between index coordinates\n"
16233 " and world coordinates.For languages other than C you should\n"
16234 " consult the PLplot documentation for the details concerning how\n"
16235 " PLTRANSFORM_callback arguments are interfaced. However, in\n"
16236 " general, a particular pattern of callback-associated arguments\n"
16237 " such as a tr vector with 6 elements; xg and yg vectors; or xg and\n"
16238 " yg matrices are respectively interfaced to a linear-transformation\n"
16239 " routine similar to the above mypltr function; pltr1; and pltr2.\n"
16240 " Furthermore, some of our more sophisticated bindings (see, e.g.,\n"
16241 " the PLplot documentation) support native language callbacks for\n"
16242 " handling index to world-coordinate transformations. Examples of\n"
16243 " these various approaches are given in examples/<language>x09*,\n"
16244 " examples/<language>x16*, examples/<language>x20*,\n"
16245 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
16246 " supported languages.\n"
16248 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
16249 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
16250 " that is externally supplied.\n"
16254 "Calculate continuous time from broken-down time for the current stream\n"
16258 " Calculate continuous time, ctime, from broken-down time for the\n"
16259 " current stream. The broken-down\n"
16260 " time is specified by the following parameters: year, month, day, hour,\n"
16261 " min, and sec. This function is the inverse of plbtime.\n"
16263 " The PLplot definition of broken-down time is a calendar time that\n"
16264 " completely ignores all time zone offsets, i.e., it is the user's\n"
16265 " responsibility to apply those offsets (if so desired) before using the\n"
16266 " PLplot time API. By default broken-down time is defined using the\n"
16267 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
16268 " continuous time is defined as the number of seconds since the Unix\n"
16269 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
16270 " broken-down and continuous time are possible, see plconfigtime which\n"
16271 " specifies that transformation for the current stream.\n"
16273 " Redacted form: General: plctime(year, month, day, hour, min, sec,\n"
16277 " This function is used in example 29.\n"
16283 "plctime(year, month, day, hour, min, sec, ctime)\n"
16287 " year (PLINT, input) : Input year.\n"
16289 " month (PLINT, input) : Input month in range from 0 (January) to 11\n"
16292 " day (PLINT, input) : Input day in range from 1 to 31.\n"
16294 " hour (PLINT, input) : Input hour in range from 0 to 23\n"
16296 " min (PLINT, input) : Input minute in range from 0 to 59.\n"
16298 " sec (PLFLT, input) : Input second in range from 0. to 60.\n"
16300 " ctime (PLFLT_NC_SCALAR, output) : Returned value of the continuous\n"
16301 " time calculated from the broken-down time specified by the\n"
16302 " previous parameters.\n"
16306 "Copy state parameters from the reference stream to the current stream\n"
16310 " Copies state parameters from the reference stream to the current\n"
16311 " stream. Tell driver interface to map device coordinates unless flags\n"
16314 " This function is used for making save files of selected plots (e.g.\n"
16315 " from the TK driver). After initializing, you can get a copy of the\n"
16316 " current plot to the specified device by switching to this stream and\n"
16317 " issuing a plcpstrm and a plreplot, with calls to plbop and pleop as\n"
16318 " appropriate. The plot buffer must have previously been enabled (done\n"
16319 " automatically by some display drivers, such as X).\n"
16321 " Redacted form: plcpstrm(iplsr, flags)\n"
16323 " This function is used in example 1,20.\n"
16329 "plcpstrm(iplsr, flags)\n"
16333 " iplsr (PLINT, input) : Number of reference stream.\n"
16335 " flags (PLBOOL, input) : If flags is set to true the device\n"
16336 " coordinates are not copied from the reference to current stream.\n"
16340 "End plotting session\n"
16344 " Ends a plotting session, tidies up all the output files, switches\n"
16345 " interactive devices back into text mode and frees up any memory that\n"
16346 " was allocated. Must be called before end of program.\n"
16348 " By default, PLplot's interactive devices (Xwin, TK, etc.) go into a\n"
16349 " wait state after a call to plend or other functions which trigger the\n"
16350 " end of a plot page. To avoid this, use the plspause function.\n"
16352 " Redacted form: plend()\n"
16354 " This function is used in all of the examples.\n"
16364 "End plotting session for current stream\n"
16368 " Ends a plotting session for the current output stream only. See\n"
16369 " plsstrm for more info.\n"
16371 " Redacted form: plend1()\n"
16373 " This function is used in examples 1 and 20.\n"
16383 "Set up standard window and draw box\n"
16387 " Sets up plotter environment for simple graphs by calling pladv and\n"
16388 " setting up viewport and window to sensible default values. plenv\n"
16389 " leaves a standard margin (left-hand margin of eight character heights,\n"
16390 " and a margin around the other three sides of five character heights)\n"
16391 " around most graphs for axis labels and a title. When these defaults\n"
16392 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16393 " plvasp for setting up the viewport, plwind for defining the window,\n"
16394 " and plbox for drawing the box.\n"
16396 " Redacted form: plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16398 " This function is used in example 1,3,9,13,14,19-22,29.\n"
16404 "plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16408 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16409 " world coordinates).\n"
16411 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16412 " world coordinates).\n"
16414 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16417 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16420 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16421 " scales will not be set, the user must set up the scale before\n"
16422 " calling plenv using plsvpa, plvasp or other.\n"
16423 " 0: the x and y axes are scaled independently to use as much of\n"
16424 " the screen as possible.\n"
16425 " 1: the scales of the x and y axes are made equal.\n"
16426 " 2: the axis of the x and y axes are made equal, and the plot\n"
16427 " box will be square.\n"
16430 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16431 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16432 " -1: draw box only.\n"
16433 " 0: draw box, ticks, and numeric tick labels.\n"
16434 " 1: also draw coordinate axes at x=0 and y=0.\n"
16435 " 2: also draw a grid at major tick positions in both\n"
16437 " 3: also draw a grid at minor tick positions in both\n"
16439 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16440 " have to be converted to logarithms separately.)\n"
16441 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16442 " have to be converted to logarithms separately.)\n"
16443 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16444 " have to be converted to logarithms separately.)\n"
16445 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16446 " have to be converted to logarithms separately.)\n"
16447 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16448 " have to be converted to logarithms separately.)\n"
16449 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16450 " have to be converted to logarithms separately.)\n"
16451 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16452 " have to be converted to logarithms separately.)\n"
16453 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16454 " have to be converted to logarithms separately.)\n"
16455 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16456 " and y data have to be converted to logarithms separately.)\n"
16457 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16458 " and y data have to be converted to logarithms separately.)\n"
16459 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16460 " and y data have to be converted to logarithms separately.)\n"
16461 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16462 " and y data have to be converted to logarithms separately.)\n"
16463 " 40: same as 0 except date / time x labels.\n"
16464 " 41: same as 1 except date / time x labels.\n"
16465 " 42: same as 2 except date / time x labels.\n"
16466 " 43: same as 3 except date / time x labels.\n"
16467 " 50: same as 0 except date / time y labels.\n"
16468 " 51: same as 1 except date / time y labels.\n"
16469 " 52: same as 2 except date / time y labels.\n"
16470 " 53: same as 3 except date / time y labels.\n"
16471 " 60: same as 0 except date / time x and y labels.\n"
16472 " 61: same as 1 except date / time x and y labels.\n"
16473 " 62: same as 2 except date / time x and y labels.\n"
16474 " 63: same as 3 except date / time x and y labels.\n"
16475 " 70: same as 0 except custom x and y labels.\n"
16476 " 71: same as 1 except custom x and y labels.\n"
16477 " 72: same as 2 except custom x and y labels.\n"
16478 " 73: same as 3 except custom x and y labels.\n"
16482 "Same as plenv but if in multiplot mode does not advance the subpage, instead clears it\n"
16486 " Sets up plotter environment for simple graphs by calling pladv and\n"
16487 " setting up viewport and window to sensible default values. plenv0\n"
16488 " leaves a standard margin (left-hand margin of eight character heights,\n"
16489 " and a margin around the other three sides of five character heights)\n"
16490 " around most graphs for axis labels and a title. When these defaults\n"
16491 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16492 " plvasp for setting up the viewport, plwind for defining the window,\n"
16493 " and plbox for drawing the box.\n"
16495 " Redacted form: plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16497 " This function is used in example 21.\n"
16503 "plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16507 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16508 " world coordinates).\n"
16510 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16511 " world coordinates).\n"
16513 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16516 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16519 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16520 " scales will not be set, the user must set up the scale before\n"
16521 " calling plenv0 using plsvpa, plvasp or other.\n"
16522 " 0: the x and y axes are scaled independently to use as much of\n"
16523 " the screen as possible.\n"
16524 " 1: the scales of the x and y axes are made equal.\n"
16525 " 2: the axis of the x and y axes are made equal, and the plot\n"
16526 " box will be square.\n"
16529 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16530 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16531 " -1: draw box only.\n"
16532 " 0: draw box, ticks, and numeric tick labels.\n"
16533 " 1: also draw coordinate axes at x=0 and y=0.\n"
16534 " 2: also draw a grid at major tick positions in both\n"
16536 " 3: also draw a grid at minor tick positions in both\n"
16538 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16539 " have to be converted to logarithms separately.)\n"
16540 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16541 " have to be converted to logarithms separately.)\n"
16542 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16543 " have to be converted to logarithms separately.)\n"
16544 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16545 " have to be converted to logarithms separately.)\n"
16546 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16547 " have to be converted to logarithms separately.)\n"
16548 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16549 " have to be converted to logarithms separately.)\n"
16550 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16551 " have to be converted to logarithms separately.)\n"
16552 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16553 " have to be converted to logarithms separately.)\n"
16554 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16555 " and y data have to be converted to logarithms separately.)\n"
16556 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16557 " and y data have to be converted to logarithms separately.)\n"
16558 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16559 " and y data have to be converted to logarithms separately.)\n"
16560 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16561 " and y data have to be converted to logarithms separately.)\n"
16562 " 40: same as 0 except date / time x labels.\n"
16563 " 41: same as 1 except date / time x labels.\n"
16564 " 42: same as 2 except date / time x labels.\n"
16565 " 43: same as 3 except date / time x labels.\n"
16566 " 50: same as 0 except date / time y labels.\n"
16567 " 51: same as 1 except date / time y labels.\n"
16568 " 52: same as 2 except date / time y labels.\n"
16569 " 53: same as 3 except date / time y labels.\n"
16570 " 60: same as 0 except date / time x and y labels.\n"
16571 " 61: same as 1 except date / time x and y labels.\n"
16572 " 62: same as 2 except date / time x and y labels.\n"
16573 " 63: same as 3 except date / time x and y labels.\n"
16574 " 70: same as 0 except custom x and y labels.\n"
16575 " 71: same as 1 except custom x and y labels.\n"
16576 " 72: same as 2 except custom x and y labels.\n"
16577 " 73: same as 3 except custom x and y labels.\n"
16581 "Eject current page\n"
16585 " Clears the graphics screen of an interactive device, or ejects a page\n"
16586 " on a plotter. See plbop for more information.\n"
16588 " Redacted form: pleop()\n"
16590 " This function is used in example 2,14.\n"
16600 "Draw error bars in x direction\n"
16604 " Draws a set of n error bars in x direction, the i'th error bar\n"
16605 " extending from xmin[i] to xmax[i] at y coordinate y[i]. The terminals\n"
16606 " of the error bars are of length equal to the minor tick length\n"
16607 " (settable using plsmin).\n"
16609 " Redacted form: General: plerrx(xmin, ymax, y)\n"
16612 " This function is used in example 29.\n"
16618 "plerrx(n, xmin, xmax, y)\n"
16622 " n (PLINT, input) : Number of error bars to draw.\n"
16624 " xmin (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16625 " of the left-hand endpoints of the error bars.\n"
16627 " xmax (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16628 " of the right-hand endpoints of the error bars.\n"
16630 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16631 " the error bars.\n"
16635 "Draw error bars in the y direction\n"
16639 " Draws a set of n error bars in the y direction, the i'th error bar\n"
16640 " extending from ymin[i] to ymax[i] at x coordinate x[i]. The terminals\n"
16641 " of the error bars are of length equal to the minor tick length\n"
16642 " (settable using plsmin).\n"
16644 " Redacted form: General: plerry(x, ymin, ymax)\n"
16647 " This function is used in example 29.\n"
16653 "plerry(n, x, ymin, ymax)\n"
16657 " n (PLINT, input) : Number of error bars to draw.\n"
16659 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16660 " the error bars.\n"
16662 " ymin (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16663 " of the lower endpoints of the error bars.\n"
16665 " ymax (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16666 " of the upper endpoints of the error bars.\n"
16670 "Advance to the next family file on the next new page\n"
16674 " Advance to the next family file on the next new page.\n"
16676 " Redacted form: plfamadv()\n"
16678 " This function is not used in any examples.\n"
16688 "Draw filled polygon\n"
16692 " Fills the polygon defined by the n points (\n"
16694 " y[i]) using the pattern defined by plpsty or plpat. The default fill\n"
16695 " style is a solid fill. The routine will automatically close the\n"
16696 " polygon between the last and first vertices. If multiple closed\n"
16697 " polygons are passed in x and y then plfill will fill in between them.\n"
16699 " Redacted form: plfill(x,y)\n"
16701 " This function is used in examples 12, 13, 15, 16, 21, 24, and 25.\n"
16707 "plfill(n, x, y)\n"
16711 " n (PLINT, input) : Number of vertices in polygon.\n"
16713 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16716 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16721 "Draw filled polygon in 3D\n"
16725 " Fills the 3D polygon defined by the n points in the x, y, and z\n"
16726 " vectors using the pattern defined by plpsty or plpat. The routine\n"
16727 " will automatically close the polygon between the last and first\n"
16728 " vertices. If multiple closed polygons are passed in x, y, and z then\n"
16729 " plfill3 will fill in between them.\n"
16731 " Redacted form: General: plfill3(x, y, z)\n"
16734 " This function is used in example 15.\n"
16740 "plfill3(n, x, y, z)\n"
16744 " n (PLINT, input) : Number of vertices in polygon.\n"
16746 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16749 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16752 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
16757 "Draw linear gradient inside polygon\n"
16761 " Draw a linear gradient using cmap1 inside the polygon defined by the n\n"
16764 " y[i]). Interpretation of the polygon is the same as for plfill. The\n"
16765 " polygon coordinates and the gradient angle are all expressed in world\n"
16766 " coordinates. The angle from the x axis for both the rotated\n"
16767 " coordinate system and the gradient vector is specified by angle. The\n"
16768 " magnitude of the gradient vector is the difference between the maximum\n"
16769 " and minimum values of x for the vertices in the rotated coordinate\n"
16770 " system. The origin of the gradient vector can be interpreted as being\n"
16771 " anywhere on the line corresponding to the minimum x value for the\n"
16772 " vertices in the rotated coordinate system. The distance along the\n"
16773 " gradient vector is linearly transformed to the independent variable of\n"
16774 " color map 1 which ranges from 0. at the tail of the gradient vector to\n"
16775 " 1. at the head of the gradient vector. What is drawn is the RGBA\n"
16776 " color corresponding to the independent variable of cmap1. For more\n"
16777 " information about cmap1 (see the PLplot documentation).\n"
16779 " Redacted form: plgradient(x,y,angle)\n"
16781 " This function is used in examples 25 and 30.\n"
16787 "plgradient(n, x, y, angle)\n"
16791 " n (PLINT, input) : Number of vertices in polygon.\n"
16793 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16796 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16799 " angle (PLFLT, input) : Angle (degrees) of gradient vector from x\n"
16804 "Flushes the output stream\n"
16808 " Flushes the output stream. Use sparingly, if at all.\n"
16810 " Redacted form: plflush()\n"
16812 " This function is used in examples 1 and 14.\n"
16826 " Sets the font used for subsequent text and symbols. For devices that\n"
16827 " still use Hershey fonts this routine has no effect unless the Hershey\n"
16828 " fonts with extended character set are loaded (see plfontld). For\n"
16829 " unicode-aware devices that use system fonts instead of Hershey fonts,\n"
16830 " this routine calls the plsfci routine with argument set up\n"
16831 " appropriately for the various cases below. However, this method of\n"
16832 " specifying the font for unicode-aware devices is deprecated, and the\n"
16833 " much more flexible method of calling plsfont directly is recommended\n"
16834 " instead (where plsfont provides a user-friendly interface to plsfci),\n"
16836 " Redacted form: plfont(ifont)\n"
16838 " This function is used in examples 1, 2, 4, 7, 13, 24, and 26.\n"
16848 " ifont (PLINT, input) : Specifies the font: 1: Sans serif font\n"
16849 " (simplest and fastest)\n"
16851 " 3: Italic font\n"
16852 " 4: Script font\n"
16856 "Load Hershey fonts\n"
16860 " Loads the Hershey fonts used for text and symbols. This routine may\n"
16861 " be called before or after initializing PLplot. If not explicitly\n"
16862 " called before PLplot initialization, then by default that\n"
16863 " initialization loads Hershey fonts with the extended character set.\n"
16864 " This routine only has a practical effect for devices that still use\n"
16865 " Hershey fonts (as opposed to modern devices that use unicode-aware\n"
16866 " system fonts instead of Hershey fonts).\n"
16868 " Redacted form: plfontld(fnt)\n"
16870 " This function is used in examples 1 and 7.\n"
16880 " fnt (PLINT, input) : Specifies the type of Hershey fonts to load.\n"
16881 " A zero value specifies Hershey fonts with the standard character\n"
16882 " set and a non-zero value (the default assumed if plfontld is never\n"
16883 " called) specifies Hershey fonts with the extended character set.\n"
16887 "Get character default height and current (scaled) height\n"
16891 " Get character default height and current (scaled) height.\n"
16893 " Redacted form: plgchr(p_def, p_ht)\n"
16895 " This function is used in example 23.\n"
16901 "plgchr(p_def, p_ht)\n"
16905 " p_def (PLFLT_NC_SCALAR, output) : Returned value of the default\n"
16906 " character height (mm).\n"
16908 " p_ht (PLFLT_NC_SCALAR, output) : Returned value of the scaled\n"
16909 " character height (mm).\n"
16913 "Returns 8-bit RGB values for given color index from cmap0\n"
16917 " Returns 8-bit RGB values (0-255) for given color from cmap0 (see the\n"
16918 " PLplot documentation). Values are negative if an invalid color id is\n"
16921 " Redacted form: plgcol0(icol0, r, g, b)\n"
16923 " This function is used in example 2.\n"
16929 "plgcol0(icol0, r, g, b)\n"
16933 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16935 " r (PLINT_NC_SCALAR, output) : Returned value of the 8-bit red\n"
16938 " g (PLINT_NC_SCALAR, output) : Returned value of the 8-bit green\n"
16941 " b (PLINT_NC_SCALAR, output) : Returned value of the 8-bit blue\n"
16946 "Returns 8-bit RGB values and PLFLT alpha transparency value for given color index from cmap0\n"
16950 " Returns 8-bit RGB values (0-255) and PLFLT alpha transparency value\n"
16951 " (0.0-1.0) for given color from cmap0 (see the PLplot documentation).\n"
16952 " Values are negative if an invalid color id is given.\n"
16954 " Redacted form: plgcola(r, g, b)\n"
16956 " This function is used in example 30.\n"
16962 "plgcol0a(icol0, r, g, b, alpha)\n"
16966 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16968 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16969 " in the range from 0 to 255.\n"
16971 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16972 " in the range from 0 to 255.\n"
16974 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16975 " in the range from 0 to 255.\n"
16977 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
16978 " transparency in the range from (0.0-1.0).\n"
16982 "Returns the background color (cmap0[0]) by 8-bit RGB value\n"
16986 " Returns the background color (cmap0[0]) by 8-bit RGB value.\n"
16988 " Redacted form: plgcolbg(r, g, b)\n"
16990 " This function is used in example 31.\n"
16996 "plgcolbg(r, g, b)\n"
17000 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17001 " in the range from 0 to 255.\n"
17003 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17004 " in the range from 0 to 255.\n"
17006 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17007 " in the range from 0 to 255.\n"
17011 "Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT alpha transparency value\n"
17015 " Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT\n"
17016 " alpha transparency value.\n"
17018 " This function is used in example 31.\n"
17024 "plgcolbga(r, g, b, alpha)\n"
17028 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17029 " in the range from 0 to 255.\n"
17031 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17032 " in the range from 0 to 255.\n"
17034 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17035 " in the range from 0 to 255.\n"
17037 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
17038 " transparency in the range (0.0-1.0).\n"
17042 "Get the current device-compression setting\n"
17046 " Get the current device-compression setting. This parameter is only\n"
17047 " used for drivers that provide compression.\n"
17049 " Redacted form: plgcompression(compression)\n"
17051 " This function is used in example 31.\n"
17057 "plgcompression(compression)\n"
17061 " compression (PLINT_NC_SCALAR, output) : Returned value of the\n"
17062 " compression setting for the current device.\n"
17066 "Get the current device (keyword) name\n"
17070 " Get the current device (keyword) name. Note: you must have allocated\n"
17071 " space for this (80 characters is safe).\n"
17073 " Redacted form: plgdev(p_dev)\n"
17075 " This function is used in example 14.\n"
17085 " p_dev (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17086 " (with preallocated length of 80 characters or more) containing the\n"
17087 " device (keyword) name.\n"
17091 "Get parameters that define current device-space window\n"
17095 " Get relative margin width, aspect ratio, and relative justification\n"
17096 " that define current device-space window. If plsdidev has not been\n"
17097 " called the default values pointed to by p_mar, p_aspect, p_jx, and\n"
17098 " p_jy will all be 0.\n"
17100 " Redacted form: plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17102 " This function is used in example 31.\n"
17108 "plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17112 " p_mar (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17115 " p_aspect (PLFLT_NC_SCALAR, output) : Returned value of the aspect\n"
17118 " p_jx (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17119 " justification in x.\n"
17121 " p_jy (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17122 " justification in y.\n"
17126 "Get plot orientation\n"
17130 " Get plot orientation parameter which is multiplied by 90 degrees to\n"
17131 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
17132 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
17133 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
17134 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
17135 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori has\n"
17136 " not been called the default value pointed to by p_rot will be 0.\n"
17138 " Redacted form: plgdiori(p_rot)\n"
17140 " This function is not used in any examples.\n"
17146 "plgdiori(p_rot)\n"
17150 " p_rot (PLFLT_NC_SCALAR, output) : Returned value of the orientation\n"
17155 "Get parameters that define current plot-space window\n"
17159 " Get relative minima and maxima that define current plot-space window.\n"
17160 " If plsdiplt has not been called the default values pointed to by\n"
17161 " p_xmin, p_ymin, p_xmax, and p_ymax will be 0., 0., 1., and 1.\n"
17163 " Redacted form: plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17165 " This function is used in example 31.\n"
17171 "plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17175 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17178 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17181 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17184 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17189 "Get family file parameters\n"
17193 " Gets information about current family file, if familying is enabled.\n"
17194 " See the PLplot documentation for more information.\n"
17196 " Redacted form: plgfam(p_fam, p_num, p_bmax)\n"
17198 " This function is used in examples 14 and 31.\n"
17204 "plgfam(p_fam, p_num, p_bmax)\n"
17208 " p_fam (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17209 " family flag value. If nonzero, familying is enabled for the\n"
17210 " current device.\n"
17212 " p_num (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17213 " family file number.\n"
17215 " p_bmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17216 " file size (in bytes) for a family file.\n"
17220 "Get FCI (font characterization integer)\n"
17224 " Gets information about the current font using the FCI approach. See\n"
17225 " the PLplot documentation for more information.\n"
17227 " Redacted form: plgfci(p_fci)\n"
17229 " This function is used in example 23.\n"
17239 " p_fci (PLUNICODE_NC_SCALAR, output) : Returned value of the current\n"
17244 "Get output file name\n"
17248 " Gets the current output file name, if applicable.\n"
17250 " Redacted form: plgfnam(fnam)\n"
17252 " This function is used in example 31.\n"
17262 " fnam (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17263 " (with preallocated length of 80 characters or more) containing the\n"
17268 "Get family, style and weight of the current font\n"
17272 " Gets information about current font. See the PLplot documentation for\n"
17273 " more information on font selection.\n"
17275 " Redacted form: plgfont(p_family, p_style, p_weight)\n"
17277 " This function is used in example 23.\n"
17283 "plgfont(p_family, p_style, p_weight)\n"
17287 " p_family (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17288 " font family. The available values are given by the PL_FCI_*\n"
17289 " constants in plplot.h. Current options are PL_FCI_SANS,\n"
17290 " PL_FCI_SERIF, PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. If\n"
17291 " p_family is NULL then the font family is not returned.\n"
17293 " p_style (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17294 " font style. The available values are given by the PL_FCI_*\n"
17295 " constants in plplot.h. Current options are PL_FCI_UPRIGHT,\n"
17296 " PL_FCI_ITALIC and PL_FCI_OBLIQUE. If p_style is NULL then the font\n"
17297 " style is not returned.\n"
17299 " p_weight (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17300 " font weight. The available values are given by the PL_FCI_*\n"
17301 " constants in plplot.h. Current options are PL_FCI_MEDIUM and\n"
17302 " PL_FCI_BOLD. If p_weight is NULL then the font weight is not\n"
17307 "Get the (current) run level\n"
17311 " Get the (current) run level. Valid settings are: 0, uninitialized\n"
17312 " 1, initialized\n"
17313 " 2, viewport defined\n"
17314 " 3, world coordinates defined\n"
17317 " Redacted form: plglevel(p_level)\n"
17319 " This function is used in example 31.\n"
17325 "plglevel(p_level)\n"
17329 " p_level (PLINT_NC_SCALAR, output) : Returned value of the run\n"
17334 "Get page parameters\n"
17338 " Gets the current page configuration. The length and offset values are\n"
17339 " expressed in units that are specific to the current driver. For\n"
17340 " instance: screen drivers will usually interpret them as number of\n"
17341 " pixels, whereas printer drivers will usually use mm.\n"
17343 " Redacted form: plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17345 " This function is used in examples 14 and 31.\n"
17351 "plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17355 " p_xp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17356 " pixels/inch (DPI) in x.\n"
17358 " p_yp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17359 " pixels/inch (DPI) in y.\n"
17361 " p_xleng (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17364 " p_yleng (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17367 " p_xoff (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17370 " p_yoff (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17375 "Switch to graphics screen\n"
17379 " Sets an interactive device to graphics mode, used in conjunction with\n"
17380 " pltext to allow graphics and text to be interspersed. On a device\n"
17381 " which supports separate text and graphics windows, this command causes\n"
17382 " control to be switched to the graphics window. If already in graphics\n"
17383 " mode, this command is ignored. It is also ignored on devices which\n"
17384 " only support a single window or use a different method for shifting\n"
17385 " focus. See also pltext.\n"
17387 " Redacted form: plgra()\n"
17389 " This function is used in example 1.\n"
17399 "Grid data from irregularly sampled data\n"
17403 " Real world data is frequently irregularly sampled, but PLplot 3D plots\n"
17404 " require data organized as a grid, i.e., with x sample point values\n"
17405 " independent of y coordinate and vice versa. This function takes\n"
17406 " irregularly sampled data from the x[npts], y[npts], and z[npts]\n"
17407 " vectors; reads the desired grid location from the input vectors\n"
17408 " xg[nptsx] and yg[nptsy]; and returns the interpolated result on that\n"
17409 " grid using the output matrix zg[nptsx][nptsy]. The algorithm used to\n"
17410 " interpolate the data to the grid is specified with the argument type\n"
17411 " which can have one parameter specified in argument data.\n"
17413 " Redacted form: General: plgriddata(x, y, z, xg, yg, zg, type, data)\n"
17414 " Python: zg=plgriddata(x, y, z, xg, yg, type, data)\n"
17417 " This function is used in example 21.\n"
17423 "plgriddata(x, y, z, npts, xg, nptsx, yg, nptsy, zg, type, data)\n"
17427 " x (PLFLT_VECTOR, input) : The input x vector.\n"
17429 " y (PLFLT_VECTOR, input) : The input y vector.\n"
17431 " z (PLFLT_VECTOR, input) : The input z vector. Each triple x[i],\n"
17432 " y[i], z[i] represents one data sample coordinate.\n"
17434 " npts (PLINT, input) : The number of data samples in the x, y and z\n"
17437 " xg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17438 " in the x direction. Usually xg has nptsx equally spaced values\n"
17439 " from the minimum to the maximum values of the x input vector.\n"
17441 " nptsx (PLINT, input) : The number of points in the xg vector.\n"
17443 " yg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17444 " in the y direction. Similar to the xg parameter.\n"
17446 " nptsy (PLINT, input) : The number of points in the yg vector.\n"
17448 " zg (PLFLT_NC_MATRIX, output) : The matrix of interpolated results\n"
17449 " where data lies in the grid specified by xg and yg. Therefore the\n"
17450 " zg matrix must be dimensioned\n"
17454 " type (PLINT, input) : The type of grid interpolation algorithm to\n"
17455 " use, which can be: GRID_CSA: Bivariate Cubic Spline approximation\n"
17456 " GRID_DTLI: Delaunay Triangulation Linear Interpolation\n"
17457 " GRID_NNI: Natural Neighbors Interpolation\n"
17458 " GRID_NNIDW: Nearest Neighbors Inverse Distance Weighted\n"
17459 " GRID_NNLI: Nearest Neighbors Linear Interpolation\n"
17460 " GRID_NNAIDW: Nearest Neighbors Around Inverse Distance\n"
17462 " For details of the algorithms read the source file plgridd.c.\n"
17464 " data (PLFLT, input) : Some gridding algorithms require extra data,\n"
17465 " which can be specified through this argument. Currently, for\n"
17466 " algorithm: GRID_NNIDW, data specifies the number of neighbors to\n"
17467 " use, the lower the value, the noisier (more local) the\n"
17468 " approximation is.\n"
17469 " GRID_NNLI, data specifies what a thin triangle is, in the\n"
17470 " range [1. .. 2.]. High values enable the usage of very thin\n"
17471 " triangles for interpolation, possibly resulting in error in\n"
17472 " the approximation.\n"
17473 " GRID_NNI, only weights greater than data will be accepted. If\n"
17474 " 0, all weights will be accepted.\n"
17478 "Get current subpage parameters\n"
17482 " Gets the size of the current subpage in millimeters measured from the\n"
17483 " bottom left hand corner of the output device page or screen. Can be\n"
17484 " used in conjunction with plsvpa for setting the size of a viewport in\n"
17485 " absolute coordinates (millimeters).\n"
17487 " Redacted form: plgspa(xmin, xmax, ymin, ymax)\n"
17489 " This function is used in example 23.\n"
17495 "plgspa(xmin, xmax, ymin, ymax)\n"
17499 " xmin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17500 " the left hand edge of the subpage in millimeters.\n"
17502 " xmax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17503 " the right hand edge of the subpage in millimeters.\n"
17505 " ymin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17506 " the bottom edge of the subpage in millimeters.\n"
17508 " ymax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17509 " the top edge of the subpage in millimeters.\n"
17513 "Get current stream number\n"
17517 " Gets the number of the current output stream. See also plsstrm.\n"
17519 " Redacted form: plgstrm(p_strm)\n"
17521 " This function is used in example 1,20.\n"
17527 "plgstrm(p_strm)\n"
17531 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17536 "Get the current library version number\n"
17540 " Get the current library version number. Note: you must have allocated\n"
17541 " space for this (80 characters is safe).\n"
17543 " Redacted form: plgver(p_ver)\n"
17545 " This function is used in example 1.\n"
17555 " p_ver (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17556 " (with preallocated length of 80 characters or more) containing the\n"
17557 " PLplot version number.\n"
17561 "Get viewport limits in normalized device coordinates\n"
17565 " Get viewport limits in normalized device coordinates.\n"
17567 " Redacted form: General: plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17570 " This function is used in example 31.\n"
17576 "plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17580 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17581 " viewport limit of the normalized device coordinate in x.\n"
17583 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17584 " viewport limit of the normalized device coordinate in x.\n"
17586 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17587 " viewport limit of the normalized device coordinate in y.\n"
17589 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17590 " viewport limit of the normalized device coordinate in y.\n"
17594 "Get viewport limits in world coordinates\n"
17598 " Get viewport limits in world coordinates.\n"
17600 " Redacted form: General: plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17603 " This function is used in example 31.\n"
17609 "plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17613 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17614 " viewport limit of the world coordinate in x.\n"
17616 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17617 " viewport limit of the world coordinate in x.\n"
17619 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17620 " viewport limit of the world coordinate in y.\n"
17622 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17623 " viewport limit of the world coordinate in y.\n"
17627 "Get x axis parameters\n"
17631 " Returns current values of the p_digmax and p_digits flags for the x\n"
17632 " axis. p_digits is updated after the plot is drawn, so this routine\n"
17633 " should only be called after the call to plbox (or plbox3) is complete.\n"
17634 " See the PLplot documentation for more information.\n"
17636 " Redacted form: plgxax(p_digmax, p_digits)\n"
17638 " This function is used in example 31.\n"
17644 "plgxax(p_digmax, p_digits)\n"
17648 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17649 " number of digits for the x axis. If nonzero, the printed label\n"
17650 " has been switched to a floating-point representation when the\n"
17651 " number of digits exceeds this value.\n"
17653 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17654 " number of digits for the numeric labels (x axis) from the last\n"
17659 "Get y axis parameters\n"
17663 " Identical to plgxax, except that arguments are flags for y axis. See\n"
17664 " the description of plgxax for more detail.\n"
17666 " Redacted form: plgyax(p_digmax, p_digits)\n"
17668 " This function is used in example 31.\n"
17674 "plgyax(p_digmax, p_digits)\n"
17678 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17679 " number of digits for the y axis. If nonzero, the printed label\n"
17680 " has been switched to a floating-point representation when the\n"
17681 " number of digits exceeds this value.\n"
17683 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17684 " number of digits for the numeric labels (y axis) from the last\n"
17689 "Get z axis parameters\n"
17693 " Identical to plgxax, except that arguments are flags for z axis. See\n"
17694 " the description of plgxax for more detail.\n"
17696 " Redacted form: plgzax(p_digmax, p_digits)\n"
17698 " This function is used in example 31.\n"
17704 "plgzax(p_digmax, p_digits)\n"
17708 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17709 " number of digits for the z axis. If nonzero, the printed label\n"
17710 " has been switched to a floating-point representation when the\n"
17711 " number of digits exceeds this value.\n"
17713 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17714 " number of digits for the numeric labels (z axis) from the last\n"
17719 "Plot a histogram from unbinned data\n"
17723 " Plots a histogram from n data points stored in the data vector. This\n"
17724 " routine bins the data into nbin bins equally spaced between datmin and\n"
17725 " datmax, and calls plbin to draw the resulting histogram. Parameter\n"
17726 " opt allows, among other things, the histogram either to be plotted in\n"
17727 " an existing window or causes plhist to call plenv with suitable limits\n"
17728 " before plotting the histogram.\n"
17730 " Redacted form: plhist(data, datmin, datmax, nbin, opt)\n"
17732 " This function is used in example 5.\n"
17738 "plhist(n, data, datmin, datmax, nbin, opt)\n"
17742 " n (PLINT, input) : Number of data points.\n"
17744 " data (PLFLT_VECTOR, input) : A vector containing the values of the\n"
17745 " n data points.\n"
17747 " datmin (PLFLT, input) : Left-hand edge of lowest-valued bin.\n"
17749 " datmax (PLFLT, input) : Right-hand edge of highest-valued bin.\n"
17751 " nbin (PLINT, input) : Number of (equal-sized) bins into which to\n"
17752 " divide the interval xmin to xmax.\n"
17754 " opt (PLINT, input) : Is a combination of several flags:\n"
17755 " opt=PL_HIST_DEFAULT: The axes are automatically rescaled to fit\n"
17756 " the histogram data, the outer bins are expanded to fill up the\n"
17757 " entire x-axis, data outside the given extremes are assigned to the\n"
17758 " outer bins and bins of zero height are simply drawn.\n"
17759 " opt=PL_HIST_NOSCALING|...: The existing axes are not rescaled\n"
17760 " to fit the histogram data, without this flag, plenv is called\n"
17761 " to set the world coordinates.\n"
17762 " opt=PL_HIST_IGNORE_OUTLIERS|...: Data outside the given\n"
17763 " extremes are not taken into account. This option should\n"
17764 " probably be combined with opt=PL_HIST_NOEXPAND|..., so as to\n"
17765 " properly present the data.\n"
17766 " opt=PL_HIST_NOEXPAND|...: The outer bins are drawn with equal\n"
17767 " size as the ones inside.\n"
17768 " opt=PL_HIST_NOEMPTY|...: Bins with zero height are not drawn\n"
17769 " (there is a gap for such bins).\n"
17773 "Convert HLS color to RGB\n"
17777 " Convert HLS color coordinates to RGB.\n"
17779 " Redacted form: General: plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17782 " This function is used in example 2.\n"
17788 "plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17792 " h (PLFLT, input) : Hue in degrees (0.0-360.0) on the color\n"
17795 " l (PLFLT, input) : Lightness expressed as a fraction (0.0-1.0) of\n"
17796 " the axis of the color cylinder.\n"
17798 " s (PLFLT, input) : Saturation expressed as a fraction (0.0-1.0) of\n"
17799 " the radius of the color cylinder.\n"
17801 " p_r (PLFLT_NC_SCALAR, output) : Returned value of the red intensity\n"
17802 " (0.0-1.0) of the color.\n"
17804 " p_g (PLFLT_NC_SCALAR, output) : Returned value of the green\n"
17805 " intensity (0.0-1.0) of the color.\n"
17807 " p_b (PLFLT_NC_SCALAR, output) : Returned value of the blue\n"
17808 " intensity (0.0-1.0) of the color.\n"
17812 "Initialize PLplot\n"
17816 " Initializing the plotting package. The program prompts for the device\n"
17817 " keyword or number of the desired output device. Hitting a RETURN in\n"
17818 " response to the prompt is the same as selecting the first device.\n"
17819 " plinit will issue no prompt if either the device was specified\n"
17820 " previously (via command line flag, the plsetopt function, or the\n"
17821 " plsdev function), or if only one device is enabled when PLplot is\n"
17822 " installed. If subpages have been specified, the output device is\n"
17823 " divided into nx by ny subpages, each of which may be used\n"
17824 " independently. If plinit is called again during a program, the\n"
17825 " previously opened file will be closed. The subroutine pladv is used\n"
17826 " to advance from one subpage to the next.\n"
17828 " Redacted form: plinit()\n"
17830 " This function is used in all of the examples.\n"
17840 "Draw a line between two points\n"
17844 " Joins the point (\n"
17850 " Redacted form: pljoin(x1,y1,x2,y2)\n"
17852 " This function is used in examples 3 and 14.\n"
17858 "pljoin(x1, y1, x2, y2)\n"
17862 " x1 (PLFLT, input) : x coordinate of first point.\n"
17864 " y1 (PLFLT, input) : y coordinate of first point.\n"
17866 " x2 (PLFLT, input) : x coordinate of second point.\n"
17868 " y2 (PLFLT, input) : y coordinate of second point.\n"
17872 "Simple routine to write labels\n"
17876 " Routine for writing simple labels. Use plmtex for more complex labels.\n"
17878 " Redacted form: pllab(xlabel, ylabel, tlabel)\n"
17880 " This function is used in examples 1, 5, 9, 12, 14-16, 20-22, and 29.\n"
17886 "pllab(xlabel, ylabel, tlabel)\n"
17890 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17891 " the label for the x axis.\n"
17893 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17894 " the label for the y axis.\n"
17896 " tlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17897 " the title of the plot.\n"
17901 "Plot legend using discretely annotated filled boxes, lines, and/or lines of symbols\n"
17905 " Routine for creating a discrete plot legend with a plotted filled box,\n"
17906 " line, and/or line of symbols for each annotated legend entry. (See\n"
17907 " plcolorbar for similar functionality for creating continuous color\n"
17908 " bars.) The arguments of pllegend provide control over the location\n"
17909 " and size of the legend as well as the location and characteristics of\n"
17910 " the elements (most of which are optional) within that legend. The\n"
17911 " resulting legend is clipped at the boundaries of the current subpage.\n"
17912 " (N.B. the adopted coordinate system used for some of the parameters is\n"
17913 " defined in the documentation of the position parameter.)\n"
17915 " Redacted form: pllegend(p_legend_width, p_legend_height, opt,\n"
17916 " position, x, y, plot_width, bg_color, bb_color, bb_style, nrow,\n"
17917 " ncolumn, opt_array, text_offset, text_scale, text_spacing,\n"
17918 " test_justification, text_colors, text, box_colors, box_patterns,\n"
17919 " box_scales, box_line_widths, line_colors, line_styles, line_widths,\n"
17920 " symbol_colors, symbol_scales, symbol_numbers, symbols)\n"
17922 " This function is used in examples 4, 26, and 33.\n"
17928 "pllegend(p_legend_width, p_legend_height, opt, position, x, y, plot_width, bg_color, bb_color, bb_style, nrow, ncolumn, nlegend, opt_array, text_offset, text_scale, text_spacing, test_justification, text_colors, text, box_colors, box_patterns, box_scales, box_line_widths, line_colors, line_styles, line_widths, symbol_colors, symbol_scales, symbol_numbers, symbols)\n"
17932 " p_legend_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17933 " legend width in adopted coordinates. This quantity is calculated\n"
17934 " from plot_width, text_offset, ncolumn (possibly modified inside\n"
17935 " the routine depending on nlegend and nrow), and the length\n"
17936 " (calculated internally) of the longest text string.\n"
17938 " p_legend_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17939 " legend height in adopted coordinates. This quantity is calculated\n"
17940 " from text_scale, text_spacing, and nrow (possibly modified inside\n"
17941 " the routine depending on nlegend and nrow).\n"
17943 " opt (PLINT, input) : opt contains bits controlling the overall\n"
17944 " legend. If the PL_LEGEND_TEXT_LEFT bit is set, put the text area\n"
17945 " on the left of the legend and the plotted area on the right.\n"
17946 " Otherwise, put the text area on the right of the legend and the\n"
17947 " plotted area on the left. If the PL_LEGEND_BACKGROUND bit is set,\n"
17948 " plot a (semitransparent) background for the legend. If the\n"
17949 " PL_LEGEND_BOUNDING_BOX bit is set, plot a bounding box for the\n"
17950 " legend. If the PL_LEGEND_ROW_MAJOR bit is set and (both of the\n"
17951 " possibly internally transformed) nrow > 1 and ncolumn > 1, then\n"
17952 " plot the resulting array of legend entries in row-major order.\n"
17953 " Otherwise, plot the legend entries in column-major order.\n"
17955 " position (PLINT, input) : position contains bits which control the\n"
17956 " overall position of the legend and the definition of the adopted\n"
17957 " coordinates used for positions just like what is done for the\n"
17958 " position argument for plcolorbar. However, note that the defaults\n"
17959 " for the position bits (see below) are different than the\n"
17960 " plcolorbar case. The combination of the PL_POSITION_LEFT,\n"
17961 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
17962 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
17963 " the 16 possible standard positions (the 4 corners and centers of\n"
17964 " the 4 sides for both the inside and outside cases) of the legend\n"
17965 " relative to the adopted coordinate system. The corner positions\n"
17966 " are specified by the appropriate combination of two of the\n"
17967 " PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
17968 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
17969 " value of one of those bits. The adopted coordinates are\n"
17970 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
17971 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
17972 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
17973 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
17974 " then use the combination of PL_POSITION_RIGHT and PL_POSITION_TOP.\n"
17975 " If neither of PL_POSITION_INSIDE or PL_POSITION_OUTSIDE is set,\n"
17976 " use PL_POSITION_INSIDE. If neither of PL_POSITION_VIEWPORT or\n"
17977 " PL_POSITION_SUBPAGE is set, use PL_POSITION_VIEWPORT.\n"
17979 " x (PLFLT, input) : X offset of the legend position in adopted\n"
17980 " coordinates from the specified standard position of the legend.\n"
17981 " For positive x, the direction of motion away from the standard\n"
17982 " position is inward/outward from the standard corner positions or\n"
17983 " standard left or right positions if the\n"
17984 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
17985 " For the standard top or bottom positions, the direction of motion\n"
17986 " is toward positive X.\n"
17988 " y (PLFLT, input) : Y offset of the legend position in adopted\n"
17989 " coordinates from the specified standard position of the legend.\n"
17990 " For positive y, the direction of motion away from the standard\n"
17991 " position is inward/outward from the standard corner positions or\n"
17992 " standard top or bottom positions if the\n"
17993 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position. For\n"
17994 " the standard left or right positions, the direction of motion is\n"
17995 " toward positive Y.\n"
17997 " plot_width (PLFLT, input) : Horizontal width in adopted coordinates\n"
17998 " of the plot area (where the colored boxes, lines, and/or lines of\n"
17999 " symbols are drawn) of the legend.\n"
18001 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18002 " legend (PL_LEGEND_BACKGROUND).\n"
18004 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18005 " for the legend (PL_LEGEND_BOUNDING_BOX).\n"
18007 " bb_style (PLINT, input) : The pllsty style number for the\n"
18008 " bounding-box line for the legend (PL_LEGEND_BACKGROUND).\n"
18010 " nrow (PLINT, input) : The number of rows in the matrix used to\n"
18012 " nlegend legend entries. For internal transformations of\n"
18013 " nrow, see further remarks under\n"
18016 " ncolumn (PLINT, input) : The number of columns in the matrix used\n"
18018 " nlegend legend entries. For internal transformations of\n"
18019 " ncolumn, see further remarks under\n"
18022 " nlegend (PLINT, input) : Number of legend entries. The above\n"
18024 " ncolumn values are transformed internally to be consistent with\n"
18025 " nlegend. If either\n"
18027 " ncolumn is non-positive it is replaced by 1. If the resulting product\n"
18030 " ncolumn is less than\n"
18031 " nlegend, the smaller of the two (or\n"
18034 " ncolumn) is increased so the product is >=\n"
18035 " nlegend. Thus, for example, the common\n"
18037 " ncolumn = 0 case is transformed internally to\n"
18040 " ncolumn = 1; i.e., the usual case of a legend rendered as a single\n"
18043 " opt_array (PLINT_VECTOR, input) : A vector of\n"
18044 " nlegend values of options to control each individual plotted area\n"
18045 " corresponding to a legend entry. If the\n"
18046 " PL_LEGEND_NONE bit is set, then nothing is plotted in the plotted\n"
18048 " PL_LEGEND_COLOR_BOX,\n"
18049 " PL_LEGEND_LINE, and/or\n"
18050 " PL_LEGEND_SYMBOL bits are set, the area corresponding to a legend\n"
18051 " entry is plotted with a colored box; a line; and/or a line of\n"
18054 " text_offset (PLFLT, input) : Offset of the text area from the plot\n"
18055 " area in units of character width.\n"
18057 " text_scale (PLFLT, input) : Character height scale for text\n"
18060 " text_spacing (PLFLT, input) : Vertical spacing in units of the\n"
18061 " character height from one legend entry to the next.\n"
18063 " text_justification (PLFLT, input) : Justification parameter used\n"
18064 " for text justification. The most common values of\n"
18065 " text_justification are 0., 0.5, or 1. corresponding to a text that\n"
18066 " is left justified, centred, or right justified within the text\n"
18067 " area, but other values are allowed as well.\n"
18069 " text_colors (PLINT_VECTOR, input) : A vector containing\n"
18070 " nlegend cmap0 text colors.\n"
18072 " text (PLCHAR_MATRIX, input) : A vector of\n"
18073 " nlegend UTF-8 character strings containing the legend annotations.\n"
18075 " box_colors (PLINT_VECTOR, input) : A vector containing\n"
18076 " nlegend cmap0 colors for the discrete colored boxes (\n"
18077 " PL_LEGEND_COLOR_BOX).\n"
18079 " box_patterns (PLINT_VECTOR, input) : A vector containing\n"
18080 " nlegend patterns (plpsty indices) for the discrete colored boxes (\n"
18081 " PL_LEGEND_COLOR_BOX).\n"
18083 " box_scales (PLFLT_VECTOR, input) : A vector containing\n"
18084 " nlegend scales (units of fraction of character height) for the height\n"
18085 " of the discrete colored boxes (\n"
18086 " PL_LEGEND_COLOR_BOX).\n"
18088 " box_line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18089 " nlegend line widths for the patterns specified by box_patterns (\n"
18090 " PL_LEGEND_COLOR_BOX).\n"
18092 " line_colors (PLINT_VECTOR, input) : A vector containing\n"
18093 " nlegend cmap0 line colors (\n"
18094 " PL_LEGEND_LINE).\n"
18096 " line_styles (PLINT_VECTOR, input) : A vector containing\n"
18097 " nlegend line styles (plsty indices) (\n"
18098 " PL_LEGEND_LINE).\n"
18100 " line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18101 " nlegend line widths (\n"
18102 " PL_LEGEND_LINE).\n"
18104 " symbol_colors (PLINT_VECTOR, input) : A vector containing\n"
18105 " nlegend cmap0 symbol colors (\n"
18106 " PL_LEGEND_SYMBOL).\n"
18108 " symbol_scales (PLFLT_VECTOR, input) : A vector containing\n"
18109 " nlegend scale values for the symbol height (\n"
18110 " PL_LEGEND_SYMBOL).\n"
18112 " symbol_numbers (PLINT_VECTOR, input) : A vector containing\n"
18113 " nlegend numbers of symbols to be drawn across the width of the plotted\n"
18115 " PL_LEGEND_SYMBOL).\n"
18117 " symbols (PLCHAR_MATRIX, input) : A vector of\n"
18118 " nlegend UTF-8 character strings containing the legend symbols. (\n"
18119 " PL_LEGEND_SYMBOL).\n"
18123 "Plot color bar for image, shade or gradient plots\n"
18127 " Routine for creating a continuous color bar for image, shade, or\n"
18128 " gradient plots. (See pllegend for similar functionality for creating\n"
18129 " legends with discrete elements). The arguments of plcolorbar provide\n"
18130 " control over the location and size of the color bar as well as the\n"
18131 " location and characteristics of the elements (most of which are\n"
18132 " optional) within that color bar. The resulting color bar is clipped\n"
18133 " at the boundaries of the current subpage. (N.B. the adopted coordinate\n"
18134 " system used for some of the parameters is defined in the documentation\n"
18135 " of the position parameter.)\n"
18137 " Redacted form: plcolorbar(p_colorbar_width, p_colorbar_height, opt,\n"
18138 " position, x, y, x_length, y_length, bg_color, bb_color, bb_style,\n"
18139 " low_cap_color, high_cap_color, cont_color, cont_width, label_opts,\n"
18140 " labels, axis_opts, ticks, sub_ticks, values)\n"
18142 " This function is used in examples 16 and 33.\n"
18148 "plcolorbar(p_colorbar_width, p_colorbar_height, opt, position, x, y, x_length, y_length, bg_color, bb_color, bb_style, low_cap_color, high_cap_color, cont_color, cont_width, n_labels, label_opts, labels, naxes, axis_opts, ticks, sub_ticks, n_values, values)\n"
18152 " p_colorbar_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18153 " labelled and decorated color bar width in adopted coordinates.\n"
18155 " p_colorbar_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18156 " labelled and decorated color bar height in adopted coordinates.\n"
18158 " opt (PLINT, input) : opt contains bits controlling the overall\n"
18159 " color bar. The orientation (direction of the maximum value) of\n"
18160 " the color bar is specified with PL_ORIENT_RIGHT, PL_ORIENT_TOP,\n"
18161 " PL_ORIENT_LEFT, or PL_ORIENT_BOTTOM. If none of these bits are\n"
18162 " specified, the default orientation is toward the top if the\n"
18163 " colorbar is placed on the left or right of the viewport or toward\n"
18164 " the right if the colorbar is placed on the top or bottom of the\n"
18165 " viewport. If the PL_COLORBAR_BACKGROUND bit is set, plot a\n"
18166 " (semitransparent) background for the color bar. If the\n"
18167 " PL_COLORBAR_BOUNDING_BOX bit is set, plot a bounding box for the\n"
18168 " color bar. The type of color bar must be specified with one of\n"
18169 " PL_COLORBAR_IMAGE, PL_COLORBAR_SHADE, or PL_COLORBAR_GRADIENT. If\n"
18170 " more than one of those bits is set only the first one in the above\n"
18171 " list is honored. The position of the (optional) label/title can be\n"
18172 " specified with PL_LABEL_RIGHT, PL_LABEL_TOP, PL_LABEL_LEFT, or\n"
18173 " PL_LABEL_BOTTOM. If no label position bit is set then no label\n"
18174 " will be drawn. If more than one of this list of bits is specified,\n"
18175 " only the first one on the list is honored. End-caps for the color\n"
18176 " bar can added with PL_COLORBAR_CAP_LOW and PL_COLORBAR_CAP_HIGH.\n"
18177 " If a particular color bar cap option is not specified then no cap\n"
18178 " will be drawn for that end. As a special case for\n"
18179 " PL_COLORBAR_SHADE, the option PL_COLORBAR_SHADE_LABEL can be\n"
18180 " specified. If this option is provided then any tick marks and tick\n"
18181 " labels will be placed at the breaks between shaded segments. TODO:\n"
18182 " This should be expanded to support custom placement of tick marks\n"
18183 " and tick labels at custom value locations for any color bar type.\n"
18185 " position (PLINT, input) : position contains bits which control the\n"
18186 " overall position of the color bar and the definition of the\n"
18187 " adopted coordinates used for positions just like what is done for\n"
18188 " the position argument for pllegend. However, note that the\n"
18189 " defaults for the position bits (see below) are different than the\n"
18190 " pllegend case. The combination of the PL_POSITION_LEFT,\n"
18191 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
18192 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
18193 " the 16 possible standard positions (the 4 corners and centers of\n"
18194 " the 4 sides for both the inside and outside cases) of the color\n"
18195 " bar relative to the adopted coordinate system. The corner\n"
18196 " positions are specified by the appropriate combination of two of\n"
18197 " the PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
18198 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
18199 " value of one of those bits. The adopted coordinates are\n"
18200 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
18201 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
18202 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
18203 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
18204 " then use PL_POSITION_RIGHT. If neither of PL_POSITION_INSIDE or\n"
18205 " PL_POSITION_OUTSIDE is set, use PL_POSITION_OUTSIDE. If neither of\n"
18206 " PL_POSITION_VIEWPORT or PL_POSITION_SUBPAGE is set, use\n"
18207 " PL_POSITION_VIEWPORT.\n"
18209 " x (PLFLT, input) : X offset of the color bar position in adopted\n"
18210 " coordinates from the specified standard position of the color bar.\n"
18211 " For positive x, the direction of motion away from the standard\n"
18212 " position is inward/outward from the standard corner positions or\n"
18213 " standard left or right positions if the\n"
18214 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18215 " For the standard top or bottom positions, the direction of motion\n"
18216 " is toward positive X.\n"
18218 " y (PLFLT, input) : Y offset of the color bar position in adopted\n"
18219 " coordinates from the specified standard position of the color bar.\n"
18220 " For positive y, the direction of motion away from the standard\n"
18221 " position is inward/outward from the standard corner positions or\n"
18222 " standard top or bottom positions if the\n"
18223 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18224 " For the standard left or right positions, the direction of motion\n"
18225 " is toward positive Y.\n"
18227 " x_length (PLFLT, input) : Length of the body of the color bar in\n"
18228 " the X direction in adopted coordinates.\n"
18230 " y_length (PLFLT, input) : Length of the body of the color bar in\n"
18231 " the Y direction in adopted coordinates.\n"
18233 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18234 " color bar (PL_COLORBAR_BACKGROUND).\n"
18236 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18237 " for the color bar (PL_COLORBAR_BOUNDING_BOX).\n"
18239 " bb_style (PLINT, input) : The pllsty style number for the\n"
18240 " bounding-box line for the color bar (PL_COLORBAR_BACKGROUND).\n"
18242 " low_cap_color (PLFLT, input) : The cmap1 color of the low-end color\n"
18243 " bar cap, if it is drawn (PL_COLORBAR_CAP_LOW).\n"
18245 " high_cap_color (PLFLT, input) : The cmap1 color of the high-end\n"
18246 " color bar cap, if it is drawn (PL_COLORBAR_CAP_HIGH).\n"
18248 " cont_color (PLINT, input) : The cmap0 contour color for\n"
18249 " PL_COLORBAR_SHADE plots. This is passed directly to plshades, so\n"
18250 " it will be interpreted according to the design of plshades.\n"
18252 " cont_width (PLFLT, input) : Contour width for PL_COLORBAR_SHADE\n"
18253 " plots. This is passed directly to plshades, so it will be\n"
18254 " interpreted according to the design of plshades.\n"
18256 " n_labels (PLINT, input) : Number of labels to place around the\n"
18259 " label_opts (PLINT_VECTOR, input) : A vector of options for each of\n"
18260 " n_labels labels.\n"
18262 " labels (PLCHAR_MATRIX, input) : A vector of\n"
18263 " n_labels UTF-8 character strings containing the labels for the color\n"
18264 " bar. Ignored if no label position is specified with one of the\n"
18265 " PL_COLORBAR_LABEL_RIGHT, PL_COLORBAR_LABEL_TOP,\n"
18266 " PL_COLORBAR_LABEL_LEFT, or PL_COLORBAR_LABEL_BOTTOM bits in the\n"
18267 " corresponding label_opts field.\n"
18269 " n_axes (PLINT, input) : Number of axis definitions provided. This\n"
18270 " value must be greater than 0. It is typically 1 (numerical axis\n"
18271 " labels are provided for one of the long edges of the color bar),\n"
18272 " but it can be larger if multiple numerical axis labels for the\n"
18273 " long edges of the color bar are desired.\n"
18275 " axis_opts (PLCHAR_MATRIX, input) : A vector of\n"
18276 " n_axes ascii character strings containing options (interpreted as for\n"
18277 " plbox) for the color bar's axis definitions.\n"
18279 " ticks (PLFLT_VECTOR, input) : A vector of n_axes values of the\n"
18280 " spacing of the major tick marks (interpreted as for plbox) for the\n"
18281 " color bar's axis definitions.\n"
18283 " sub_ticks (PLINT_VECTOR, input) : A vector of n_axes values of the\n"
18284 " number of subticks (interpreted as for plbox) for the color bar's\n"
18285 " axis definitions.\n"
18287 " n_values (PLINT_VECTOR, input) : A vector containing the number of\n"
18288 " elements in each of the n_axes rows of the values matrix.\n"
18290 " values (PLFLT_MATRIX, input) : A matrix containing the numeric\n"
18291 " values for the data range represented by the color bar. For a row\n"
18292 " index of i_axis (where 0 < i_axis < n_axes), the number of\n"
18293 " elements in the row is specified by n_values[i_axis]. For\n"
18294 " PL_COLORBAR_IMAGE and PL_COLORBAR_GRADIENT the number of elements\n"
18295 " is 2, and the corresponding row elements of the values matrix are\n"
18296 " the minimum and maximum value represented by the colorbar. For\n"
18297 " PL_COLORBAR_SHADE, the number and values of the elements of a row\n"
18298 " of the values matrix is interpreted the same as the nlevel and\n"
18299 " clevel arguments of plshades.\n"
18303 "Sets the 3D position of the light source\n"
18307 " Sets the 3D position of the light source for use with plsurf3d and\n"
18310 " Redacted form: pllightsource(x, y, z)\n"
18312 " This function is used in example 8.\n"
18318 "pllightsource(x, y, z)\n"
18322 " x (PLFLT, input) : X-coordinate of the light source.\n"
18324 " y (PLFLT, input) : Y-coordinate of the light source.\n"
18326 " z (PLFLT, input) : Z-coordinate of the light source.\n"
18334 " Draws line defined by n points in x and y.\n"
18336 " Redacted form: plline(x, y)\n"
18338 " This function is used in examples 1, 3, 4, 9, 12-14, 16, 18, 20, 22,\n"
18339 " 25-27, and 29.\n"
18345 "plline(n, x, y)\n"
18349 " n (PLINT, input) : Number of points defining line.\n"
18351 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18354 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18359 "Draw a line in 3 space\n"
18363 " Draws line in 3 space defined by n points in x, y, and z. You must\n"
18364 " first set up the viewport, the 2d viewing window (in world\n"
18365 " coordinates), and the 3d normalized coordinate box. See x18c.c for\n"
18368 " Redacted form: plline3(x, y, z)\n"
18370 " This function is used in example 18.\n"
18376 "plline3(n, x, y, z)\n"
18380 " n (PLINT, input) : Number of points defining line.\n"
18382 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18385 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18388 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
18393 "Select line style\n"
18397 " This sets the line style according to one of eight predefined patterns\n"
18398 " (also see plstyl).\n"
18400 " Redacted form: pllsty(lin)\n"
18402 " This function is used in examples 9, 12, 22, and 25.\n"
18412 " lin (PLINT, input) : Integer value between 1 and 8. Line style 1 is\n"
18413 " a continuous line, line style 2 is a line with short dashes and\n"
18414 " gaps, line style 3 is a line with long dashes and gaps, line style\n"
18415 " 4 has long dashes and short gaps and so on.\n"
18419 "Plot surface mesh\n"
18423 " Plots a surface mesh within the environment set up by plw3d. The\n"
18424 " surface is defined by the matrix z[\n"
18426 " ny] , the point z[i][j] being the value of the function at (\n"
18428 " y[j]). Note that the points in vectors x and y do not need to be\n"
18429 " equally spaced, but must be stored in ascending order. The parameter\n"
18430 " opt controls the way in which the surface is displayed. For further\n"
18431 " details see the PLplot documentation.\n"
18433 " Redacted form: plmesh(x, y, z, opt)\n"
18435 " This function is used in example 11.\n"
18441 "plmesh(x, y, z, nx, ny, opt)\n"
18445 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18446 " which the function is evaluated.\n"
18448 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18449 " which the function is evaluated.\n"
18451 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18452 " plot. Should have dimensions of\n"
18456 " nx (PLINT, input) : Number of x values at which function has been\n"
18459 " ny (PLINT, input) : Number of y values at which function has been\n"
18462 " opt (PLINT, input) : Determines the way in which the surface is\n"
18463 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18464 " function of x for each value of y[j] .\n"
18465 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18466 " for each value of x[i] .\n"
18467 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18468 " at which function is defined.\n"
18472 "Magnitude colored plot surface mesh with contour\n"
18476 " A more powerful form of plmesh: the surface mesh can be colored\n"
18477 " accordingly to the current z value being plotted, a contour plot can\n"
18478 " be drawn at the base XY plane, and a curtain can be drawn between the\n"
18479 " plotted function border and the base XY plane.\n"
18481 " Redacted form: plmeshc(x, y, z, opt, clevel)\n"
18483 " This function is used in example 11.\n"
18489 "plmeshc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18493 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18494 " which the function is evaluated.\n"
18496 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18497 " which the function is evaluated.\n"
18499 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18500 " plot. Should have dimensions of\n"
18504 " nx (PLINT, input) : Number of x values at which function is\n"
18507 " ny (PLINT, input) : Number of y values at which function is\n"
18510 " opt (PLINT, input) : Determines the way in which the surface is\n"
18511 " represented. To specify more than one option just add the options,\n"
18512 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18513 " showing z as a function of x for each value of y[j] .\n"
18514 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18515 " for each value of x[i] .\n"
18516 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18517 " at which function is defined.\n"
18518 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18519 " the z value being plotted. The color is used from the current\n"
18521 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18522 " using parameters\n"
18525 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18526 " the borders of the plotted function.\n"
18529 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18532 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18536 "Creates a new stream and makes it the default\n"
18540 " Creates a new stream and makes it the default. Differs from using\n"
18541 " plsstrm, in that a free stream number is found, and returned.\n"
18542 " Unfortunately, I have to start at stream 1 and work upward, since\n"
18543 " stream 0 is preallocated. One of the big flaws in the PLplot API is\n"
18544 " that no initial, library-opening call is required. So stream 0 must\n"
18545 " be preallocated, and there is no simple way of determining whether it\n"
18546 " is already in use or not.\n"
18548 " Redacted form: plmkstrm(p_strm)\n"
18550 " This function is used in examples 1 and 20.\n"
18556 "plmkstrm(p_strm)\n"
18560 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the stream\n"
18561 " number of the created stream.\n"
18565 "Write text relative to viewport boundaries\n"
18569 " Writes text at a specified position relative to the viewport\n"
18570 " boundaries. Text may be written inside or outside the viewport, but\n"
18571 " is clipped at the subpage boundaries. The reference point of a string\n"
18572 " lies along a line passing through the string at half the height of a\n"
18573 " capital letter. The position of the reference point along this line\n"
18574 " is determined by just, and the position of the reference point\n"
18575 " relative to the viewport is set by disp and pos.\n"
18577 " Redacted form: General: plmtex(side, disp, pos, just, text)\n"
18580 " This function is used in examples 3, 4, 6-8, 11, 12, 14, 18, 23, and\n"
18587 "plmtex(side, disp, pos, just, text)\n"
18591 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18592 " the side of the viewport along which the text is to be written.\n"
18593 " The string must be one of: b: Bottom of viewport, text written\n"
18594 " parallel to edge.\n"
18595 " bv: Bottom of viewport, text written at right angles to edge.\n"
18596 " l: Left of viewport, text written parallel to edge.\n"
18597 " lv: Left of viewport, text written at right angles to edge.\n"
18598 " r: Right of viewport, text written parallel to edge.\n"
18599 " rv: Right of viewport, text written at right angles to edge.\n"
18600 " t: Top of viewport, text written parallel to edge.\n"
18601 " tv: Top of viewport, text written at right angles to edge.\n"
18604 " disp (PLFLT, input) : Position of the reference point of string,\n"
18605 " measured outwards from the specified viewport edge in units of the\n"
18606 " current character height. Use negative disp to write within the\n"
18609 " pos (PLFLT, input) : Position of the reference point of string\n"
18610 " along the specified edge, expressed as a fraction of the length of\n"
18613 " just (PLFLT, input) : Specifies the position of the string relative\n"
18614 " to its reference point. If just=0. , the reference point is at\n"
18615 " the left and if just=1. , it is at the right of the string. Other\n"
18616 " values of just give intermediate justifications.\n"
18618 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18623 "Write text relative to viewport boundaries in 3D plots\n"
18627 " Writes text at a specified position relative to the viewport\n"
18628 " boundaries. Text may be written inside or outside the viewport, but\n"
18629 " is clipped at the subpage boundaries. The reference point of a string\n"
18630 " lies along a line passing through the string at half the height of a\n"
18631 " capital letter. The position of the reference point along this line\n"
18632 " is determined by just, and the position of the reference point\n"
18633 " relative to the viewport is set by disp and pos.\n"
18635 " Redacted form: plmtex3(side, disp, pos, just, text)\n"
18637 " This function is used in example 28.\n"
18643 "plmtex3(side, disp, pos, just, text)\n"
18647 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18648 " the side of the viewport along which the text is to be written.\n"
18649 " The string should contain one or more of the following characters:\n"
18650 " [xyz][ps][v]. Only one label is drawn at a time, i.e. xyp will\n"
18651 " only label the X axis, not both the X and Y axes. x: Label the X\n"
18653 " y: Label the Y axis.\n"
18654 " z: Label the Z axis.\n"
18655 " p: Label the primary axis. For Z this is the leftmost Z axis.\n"
18656 " For X it is the axis that starts at y-min. For Y it is the\n"
18657 " axis that starts at x-min.\n"
18658 " s: Label the secondary axis.\n"
18659 " v: Draw the text perpendicular to the axis.\n"
18662 " disp (PLFLT, input) : Position of the reference point of string,\n"
18663 " measured outwards from the specified viewport edge in units of the\n"
18664 " current character height. Use negative disp to write within the\n"
18667 " pos (PLFLT, input) : Position of the reference point of string\n"
18668 " along the specified edge, expressed as a fraction of the length of\n"
18671 " just (PLFLT, input) : Specifies the position of the string relative\n"
18672 " to its reference point. If just=0. , the reference point is at\n"
18673 " the left and if just=1. , it is at the right of the string. Other\n"
18674 " values of just give intermediate justifications.\n"
18676 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18681 "Plot 3-d surface plot\n"
18685 " Plots a three-dimensional surface plot within the environment set up\n"
18686 " by plw3d. The surface is defined by the matrix z[\n"
18688 " ny] , the point z[i][j] being the value of the function at (\n"
18690 " y[j]). Note that the points in vectors x and y do not need to be\n"
18691 " equally spaced, but must be stored in ascending order. The parameter\n"
18692 " opt controls the way in which the surface is displayed. For further\n"
18693 " details see the PLplot documentation. The only difference between\n"
18694 " plmesh and plot3d is that plmesh draws the bottom side of the surface,\n"
18695 " while plot3d only draws the surface as viewed from the top.\n"
18697 " Redacted form: plot3d(x, y, z, opt, side)\n"
18699 " This function is used in examples 11 and 21.\n"
18705 "plot3d(x, y, z, nx, ny, opt, side)\n"
18709 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18710 " which the function is evaluated.\n"
18712 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18713 " which the function is evaluated.\n"
18715 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18716 " plot. Should have dimensions of\n"
18720 " nx (PLINT, input) : Number of x values at which function is\n"
18723 " ny (PLINT, input) : Number of y values at which function is\n"
18726 " opt (PLINT, input) : Determines the way in which the surface is\n"
18727 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18728 " function of x for each value of y[j] .\n"
18729 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18730 " for each value of x[i] .\n"
18731 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18732 " at which function is defined.\n"
18735 " side (PLBOOL, input) : Flag to indicate whether or not ``sides''\n"
18736 " should be draw on the figure. If side is true sides are drawn,\n"
18737 " otherwise no sides are drawn.\n"
18741 "Magnitude colored plot surface with contour\n"
18745 " Aside from dropping the\n"
18746 " side functionality this is a more powerful form of plot3d: the surface\n"
18747 " mesh can be colored accordingly to the current z value being plotted,\n"
18748 " a contour plot can be drawn at the base XY plane, and a curtain can be\n"
18749 " drawn between the plotted function border and the base XY plane. The\n"
18750 " arguments are identical to those of plmeshc. The only difference\n"
18751 " between plmeshc and plot3dc is that plmeshc draws the bottom side of\n"
18752 " the surface, while plot3dc only draws the surface as viewed from the\n"
18755 " Redacted form: General: plot3dc(x, y, z, opt, clevel)\n"
18758 " This function is used in example 21.\n"
18764 "plot3dc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18768 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18769 " which the function is evaluated.\n"
18771 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18772 " which the function is evaluated.\n"
18774 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18775 " plot. Should have dimensions of\n"
18779 " nx (PLINT, input) : Number of x values at which function is\n"
18782 " ny (PLINT, input) : Number of y values at which function is\n"
18785 " opt (PLINT, input) : Determines the way in which the surface is\n"
18786 " represented. To specify more than one option just add the options,\n"
18787 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18788 " showing z as a function of x for each value of y[j] .\n"
18789 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18790 " for each value of x[i] .\n"
18791 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18792 " at which function is defined.\n"
18793 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18794 " the z value being plotted. The color is used from the current\n"
18796 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18797 " using parameters\n"
18800 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18801 " the borders of the plotted function.\n"
18804 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18807 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18811 "Magnitude colored plot surface with contour for z[x][y] with y index limits\n"
18815 " When the implementation is completed this variant of plot3dc (see that\n"
18816 " function's documentation for more details) should be suitable for the\n"
18817 " case where the area of the x, y coordinate grid where z is defined can\n"
18818 " be non-rectangular. The implementation is incomplete so the last 4\n"
18819 " parameters of plot3dcl; indexxmin, indexxmax, indexymin, and\n"
18820 " indexymax; are currently ignored and the functionality is otherwise\n"
18821 " identical to that of plot3dc.\n"
18823 " Redacted form: General: plot3dcl(x, y, z, opt, clevel, indexxmin,\n"
18824 " indexymin, indexymax)\n"
18827 " This function is not used in any example.\n"
18833 "plot3dcl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18837 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18838 " which the function is evaluated.\n"
18840 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18841 " which the function is evaluated.\n"
18843 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18844 " plot. Should have dimensions of\n"
18848 " nx (PLINT, input) : Number of x values at which the function is\n"
18851 " ny (PLINT, input) : Number of y values at which the function is\n"
18854 " opt (PLINT, input) : Determines the way in which the surface is\n"
18855 " represented. To specify more than one option just add the options,\n"
18856 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18857 " showing z as a function of x for each value of y[j] .\n"
18858 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18859 " for each value of x[i] .\n"
18860 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18861 " at which function is defined.\n"
18862 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18863 " the z value being plotted. The color is used from the current\n"
18865 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18866 " using parameters\n"
18869 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18870 " the borders of the plotted function.\n"
18873 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18876 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18878 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
18879 " corresponds to the first x index where z is defined.\n"
18881 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
18882 " which corresponds (by convention) to one more than the last x\n"
18883 " index value where z is defined.\n"
18885 " indexymin (PLINT_VECTOR, input) : A vector containing y index\n"
18886 " values which all must be ≥ 0. These values are the first y index\n"
18887 " where z is defined for a particular x index in the range from\n"
18888 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
18891 " indexymax (PLINT_VECTOR, input) : A vector containing y index\n"
18892 " values which all must be ≤ ny. These values correspond (by\n"
18893 " convention) to one more than the last y index where z is defined\n"
18894 " for a particular x index in the range from indexxmin to indexxmax\n"
18895 " - 1. The dimension of indexymax is indexxmax.\n"
18899 "Plot shaded 3-d surface plot\n"
18903 " Plots a three-dimensional shaded surface plot within the environment\n"
18904 " set up by plw3d. The surface is defined by the two-dimensional matrix\n"
18907 " ny], the point z[i][j] being the value of the function at (\n"
18909 " y[j]). Note that the points in vectors x and y do not need to be\n"
18910 " equally spaced, but must be stored in ascending order. For further\n"
18911 " details see the PLplot documentation.\n"
18913 " Redacted form: plsurf3d(x, y, z, opt, clevel)\n"
18915 " This function is not used in any examples.\n"
18921 "plsurf3d(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18925 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18926 " which the function is evaluated.\n"
18928 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18929 " which the function is evaluated.\n"
18931 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18932 " plot. Should have dimensions of\n"
18936 " nx (PLINT, input) : Number of x values at which function is\n"
18939 " ny (PLINT, input) : Number of y values at which function is\n"
18942 " opt (PLINT, input) : Determines the way in which the surface is\n"
18943 " represented. To specify more than one option just add the options,\n"
18944 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
18945 " connecting points at which function is defined.\n"
18946 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18947 " using parameters\n"
18950 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
18951 " using parameters\n"
18954 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18955 " the borders of the plotted function.\n"
18956 " opt=MAG_COLOR : the surface is colored according to the value\n"
18957 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
18958 " according to the intensity of the reflected light in the\n"
18959 " surface from a light source whose position is set using\n"
18960 " pllightsource.\n"
18963 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18966 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18970 "Plot shaded 3-d surface plot for z[x][y] with y index limits\n"
18974 " This variant of plsurf3d (see that function's documentation for more\n"
18975 " details) should be suitable for the case where the area of the x, y\n"
18976 " coordinate grid where z is defined can be non-rectangular. The limits\n"
18977 " of that grid are provided by the parameters indexxmin, indexxmax,\n"
18978 " indexymin, and indexymax.\n"
18980 " Redacted form: plsurf3dl(x, y, z, opt, clevel, indexxmin, indexymin,\n"
18983 " This function is used in example 8.\n"
18989 "plsurf3dl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18993 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18994 " which the function is evaluated.\n"
18996 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18997 " which the function is evaluated.\n"
18999 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
19000 " plot. Should have dimensions of\n"
19004 " nx (PLINT, input) : Number of x values at which function is\n"
19007 " ny (PLINT, input) : Number of y values at which function is\n"
19010 " opt (PLINT, input) : Determines the way in which the surface is\n"
19011 " represented. To specify more than one option just add the options,\n"
19012 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
19013 " connecting points at which function is defined.\n"
19014 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
19015 " using parameters\n"
19018 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
19019 " using parameters\n"
19022 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
19023 " the borders of the plotted function.\n"
19024 " opt=MAG_COLOR : the surface is colored according to the value\n"
19025 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
19026 " according to the intensity of the reflected light in the\n"
19027 " surface from a light source whose position is set using\n"
19028 " pllightsource.\n"
19031 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
19034 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
19036 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
19037 " corresponds to the first x index where z is defined.\n"
19039 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
19040 " which corresponds (by convention) to one more than the last x\n"
19041 " index value where z is defined.\n"
19043 " indexymin (PLINT_VECTOR, input) : A vector containing the y index\n"
19044 " values which all must be ≥ 0. These values are the first y index\n"
19045 " where z is defined for a particular x index in the range from\n"
19046 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
19049 " indexymax (PLINT_VECTOR, input) : A vector containing the y index\n"
19050 " values which all must be ≤ ny. These values correspond (by\n"
19051 " convention) to one more than the last y index where z is defined\n"
19052 " for a particular x index in the range from indexxmin to indexxmax\n"
19053 " - 1. The dimension of indexymax is indexxmax.\n"
19057 "Parse command-line arguments\n"
19061 " Parse command-line arguments.\n"
19063 " plparseopts removes all recognized flags (decreasing argc\n"
19064 " accordingly), so that invalid input may be readily detected. It can\n"
19065 " also be used to process user command line flags. The user can merge\n"
19066 " an option table of type PLOptionTable into the internal option table\n"
19067 " info structure using plMergeOpts. Or, the user can specify that ONLY\n"
19068 " the external table(s) be parsed by calling plClearOpts before\n"
19071 " The default action taken by plparseopts is as follows:\n"
19072 " Returns with an error if an unrecognized option or badly formed\n"
19073 " option-value pair are encountered.\n"
19074 " Returns immediately (return code 0) when the first non-option command\n"
19075 " line argument is found.\n"
19076 " Returns with the return code of the option handler, if one was called.\n"
19078 " Deletes command line arguments from argv list as they are found, and\n"
19079 " decrements argc accordingly.\n"
19080 " Does not show \"invisible\" options in usage or help messages.\n"
19081 " Assumes the program name is contained in argv[0].\n"
19083 " These behaviors may be controlled through the\n"
19084 " mode argument.\n"
19086 " Redacted form: General: plparseopts(argv, mode)\n"
19089 " This function is used in all of the examples.\n"
19095 "PLINT plparseopts(p_argc, argv, mode)\n"
19099 " p_argc (int *, input/output) : Number of arguments.\n"
19101 " argv (PLCHAR_NC_MATRIX, input/output) : A vector of character\n"
19102 " strings containing *p_argc command-line arguments.\n"
19104 " mode (PLINT, input) : Parsing mode with the following\n"
19105 " possibilities: PL_PARSE_FULL (1) -- Full parsing of command line\n"
19106 " and all error messages enabled, including program exit when an\n"
19107 " error occurs. Anything on the command line that isn't recognized\n"
19108 " as a valid option or option argument is flagged as an error.\n"
19109 " PL_PARSE_QUIET (2) -- Turns off all output except in the case\n"
19111 " PL_PARSE_NODELETE (4) -- Turns off deletion of processed\n"
19113 " PL_PARSE_SHOWALL (8) -- Show invisible options\n"
19114 " PL_PARSE_NOPROGRAM (32) -- Specified if argv[0] is NOT a\n"
19115 " pointer to the program name.\n"
19116 " PL_PARSE_NODASH (64) -- Set if leading dash is NOT required.\n"
19117 " PL_PARSE_SKIP (128) -- Set to quietly skip over any\n"
19118 " unrecognized arguments.\n"
19122 "Set area line fill pattern\n"
19126 " Sets the area line fill pattern to be used, e.g., for calls to plfill.\n"
19127 " The pattern consists of 1 or 2 sets of parallel lines with specified\n"
19128 " inclinations and spacings. The arguments to this routine are the\n"
19129 " number of sets to use (1 or 2) followed by two vectors (with 1 or 2\n"
19130 " elements) specifying the inclinations in tenths of a degree and the\n"
19131 " spacing in micrometers. (See also plpsty)\n"
19133 " Redacted form: General: plpat(inc, del)\n"
19136 " This function is used in example 15.\n"
19142 "plpat(nlin, inc, del)\n"
19146 " nlin (PLINT, input) : Number of sets of lines making up the\n"
19147 " pattern, either 1 or 2.\n"
19149 " inc (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19150 " inclination in tenths of a degree. (Should be between -900 and\n"
19153 " del (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19154 " spacing in micrometers between the lines making up the pattern.\n"
19158 "Draw a line between two points, accounting for coordinate transforms\n"
19162 " Joins the point (\n"
19166 " y2) . If a global coordinate transform is defined then the line is\n"
19167 " broken in to n segments to approximate the path. If no transform is\n"
19168 " defined then this simply acts like a call to pljoin.\n"
19170 " Redacted form: plpath(n,x1,y1,x2,y2)\n"
19172 " This function is used in example 22.\n"
19178 "plpath(n, x1, y1, x2, y2)\n"
19182 " n (PLINT, input) : number of points to use to approximate the path.\n"
19184 " x1 (PLFLT, input) : x coordinate of first point.\n"
19186 " y1 (PLFLT, input) : y coordinate of first point.\n"
19188 " x2 (PLFLT, input) : x coordinate of second point.\n"
19190 " y2 (PLFLT, input) : y coordinate of second point.\n"
19194 "Plot a glyph at the specified points\n"
19198 " Plot a glyph at the specified points. (This function is largely\n"
19199 " superseded by plstring which gives access to many[!] more glyphs.)\n"
19200 " code=-1 means try to just draw a point. Right now it's just a move\n"
19201 " and a draw at the same place. Not ideal, since a sufficiently\n"
19202 " intelligent output device may optimize it away, or there may be faster\n"
19203 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19204 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19205 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19206 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19207 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19209 " Redacted form: plpoin(x, y, code)\n"
19211 " This function is used in examples 1, 6, 14, and 29.\n"
19217 "plpoin(n, x, y, code)\n"
19221 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19223 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19226 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19229 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19230 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19231 " each of the n points.\n"
19235 "Plot a glyph at the specified 3D points\n"
19239 " Plot a glyph at the specified 3D points. (This function is largely\n"
19240 " superseded by plstring3 which gives access to many[!] more glyphs.)\n"
19241 " Set up the call to this function similar to what is done for plline3.\n"
19242 " code=-1 means try to just draw a point. Right now it's just a move\n"
19243 " and a draw at the same place. Not ideal, since a sufficiently\n"
19244 " intelligent output device may optimize it away, or there may be faster\n"
19245 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19246 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19247 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19248 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19249 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19251 " Redacted form: plpoin3(x, y, z, code)\n"
19253 " This function is not used in any example.\n"
19259 "plpoin3(n, x, y, z, code)\n"
19263 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19265 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19268 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19271 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
19274 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19275 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19276 " each of the n points.\n"
19280 "Draw a polygon in 3 space\n"
19284 " Draws a polygon in 3 space defined by n points in x, y, and z. Setup\n"
19285 " like plline3, but differs from that function in that plpoly3 attempts\n"
19286 " to determine if the polygon is viewable depending on the order of the\n"
19287 " points within the vector and the value of ifcc. If the back of\n"
19288 " polygon is facing the viewer, then it isn't drawn. If this isn't what\n"
19289 " you want, then use plline3 instead.\n"
19291 " The points are assumed to be in a plane, and the directionality of the\n"
19292 " plane is determined from the first three points. Additional points do\n"
19293 " not have to lie on the plane defined by the first three, but if they\n"
19294 " do not, then the determination of visibility obviously can't be 100%\n"
19295 " accurate... So if you're 3 space polygons are too far from planar,\n"
19296 " consider breaking them into smaller polygons. 3 points define a plane\n"
19299 " Bugs: If one of the first two segments is of zero length, or if they\n"
19300 " are co-linear, the calculation of visibility has a 50/50 chance of\n"
19301 " being correct. Avoid such situations :-). See x18c.c for an example\n"
19302 " of this problem. (Search for 20.1).\n"
19304 " Redacted form: plpoly3(x, y, z, code)\n"
19306 " This function is used in example 18.\n"
19312 "plpoly3(n, x, y, z, draw, ifcc)\n"
19316 " n (PLINT, input) : Number of points defining line.\n"
19318 " x (PLFLT_VECTOR, input) : A vector containing\n"
19319 " n x coordinates of points.\n"
19321 " y (PLFLT_VECTOR, input) : A vector containing\n"
19322 " n y coordinates of points.\n"
19324 " z (PLFLT_VECTOR, input) : A vector containing\n"
19325 " n z coordinates of points.\n"
19327 " draw (PLBOOL_VECTOR, input) : A vector containing\n"
19328 " n-1 Boolean values which control drawing the segments of the polygon.\n"
19329 " If draw[i] is true, then the polygon segment from index [i] to\n"
19330 " [i+1] is drawn, otherwise, not.\n"
19332 " ifcc (PLBOOL, input) : If ifcc is true the directionality of the\n"
19333 " polygon is determined by assuming the points are laid out in a\n"
19334 " counter-clockwise order. Otherwise, the directionality of the\n"
19335 " polygon is determined by assuming the points are laid out in a\n"
19336 " clockwise order.\n"
19340 "Set precision in numeric labels\n"
19344 " Sets the number of places after the decimal point in numeric labels.\n"
19346 " Redacted form: plprec(setp, prec)\n"
19348 " This function is used in example 29.\n"
19354 "plprec(setp, prec)\n"
19358 " setp (PLINT, input) : If setp is equal to 0 then PLplot\n"
19359 " automatically determines the number of places to use after the\n"
19360 " decimal point in numeric labels (like those used to label axes).\n"
19361 " If setp is 1 then prec sets the number of places.\n"
19363 " prec (PLINT, input) : The number of characters to draw after the\n"
19364 " decimal point in numeric labels.\n"
19368 "Select area fill pattern\n"
19373 " patt is zero or less use either a hardware solid fill if the drivers\n"
19374 " have that capability (virtually all do) or fall back to a software\n"
19375 " emulation of a solid fill using the eighth area line fill pattern. If\n"
19377 " patt <= 8, then select one of eight predefined area line fill patterns\n"
19378 " to use (see plpat if you desire other patterns).\n"
19380 " Redacted form: plpsty(patt)\n"
19382 " This function is used in examples 12, 13, 15, 16, and 25.\n"
19392 " patt (PLINT, input) : The desired pattern index. If\n"
19393 " patt is zero or less, then a solid fill is (normally, see qualifiers\n"
19394 " above) used. For\n"
19395 " patt in the range from 1 to 8 and assuming the driver has not supplied\n"
19396 " line fill capability itself (most deliberately do not so that line\n"
19397 " fill patterns look identical for those drivers), the patterns\n"
19398 " consist of (1) horizontal lines, (2) vertical lines, (3) lines at\n"
19399 " 45 degrees, (4) lines at -45 degrees, (5) lines at 30 degrees, (6)\n"
19400 " lines at -30 degrees, (7) both vertical and horizontal lines, and\n"
19401 " (8) lines at both 45 degrees and -45 degrees.\n"
19405 "Write text inside the viewport\n"
19409 " Writes text at a specified position and inclination within the\n"
19410 " viewport. Text is clipped at the viewport boundaries. The reference\n"
19411 " point of a string lies along a line passing through the string at half\n"
19412 " the height of a capital letter. The position of the reference point\n"
19413 " along this line is determined by just, the reference point is placed\n"
19414 " at world coordinates (\n"
19416 " y) within the viewport. The inclination of the string is specified\n"
19417 " in terms of differences of world coordinates making it easy to write\n"
19418 " text parallel to a line in a graph.\n"
19420 " Redacted form: plptex(x, y, dx, dy, just, text)\n"
19422 " This function is used in example 2-4,10,12-14,20,23,24,26.\n"
19428 "plptex(x, y, dx, dy, just, text)\n"
19432 " x (PLFLT, input) : x coordinate of reference point of string.\n"
19434 " y (PLFLT, input) : y coordinate of reference point of string.\n"
19436 " dx (PLFLT, input) : Together with dy, this specifies the\n"
19437 " inclination of the string. The baseline of the string is parallel\n"
19438 " to a line joining (\n"
19446 " dy (PLFLT, input) : Together with dx, this specifies the\n"
19447 " inclination of the string.\n"
19449 " just (PLFLT, input) : Specifies the position of the string relative\n"
19450 " to its reference point. If just=0. , the reference point is at\n"
19451 " the left and if just=1. , it is at the right of the string. Other\n"
19452 " values of just give intermediate justifications.\n"
19454 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19459 "Write text inside the viewport of a 3D plot\n"
19463 " Writes text at a specified position and inclination and with a\n"
19464 " specified shear within the viewport. Text is clipped at the viewport\n"
19465 " boundaries. The reference point of a string lies along a line passing\n"
19466 " through the string at half the height of a capital letter. The\n"
19467 " position of the reference point along this line is determined by just,\n"
19468 " and the reference point is placed at world coordinates (\n"
19471 " wz) within the viewport. The inclination and shear of the string is\n"
19472 " specified in terms of differences of world coordinates making it easy\n"
19473 " to write text parallel to a line in a graph.\n"
19475 " Redacted form: plptex3(x, y, z, dx, dy, dz, sx, sy, sz, just, text)\n"
19477 " This function is used in example 28.\n"
19483 "plptex3(wx, wy, wz, dx, dy, dz, sx, sy, sz, just, text)\n"
19487 " wx (PLFLT, input) : x world coordinate of reference point of\n"
19490 " wy (PLFLT, input) : y world coordinate of reference point of\n"
19493 " wz (PLFLT, input) : z world coordinate of reference point of\n"
19496 " dx (PLFLT, input) : Together with dy and\n"
19497 " dz , this specifies the inclination of the string. The baseline of\n"
19498 " the string is parallel to a line joining (\n"
19509 " dy (PLFLT, input) : Together with dx and\n"
19510 " dz, this specifies the inclination of the string.\n"
19512 " dz (PLFLT, input) : Together with dx and\n"
19513 " dy, this specifies the inclination of the string.\n"
19515 " sx (PLFLT, input) : Together with sy and\n"
19516 " sz , this specifies the shear of the string. The string is sheared so\n"
19517 " that the characters are vertically parallel to a line joining (\n"
19528 " sz = 0.) then the text is not sheared.\n"
19530 " sy (PLFLT, input) : Together with sx and\n"
19531 " sz, this specifies shear of the string.\n"
19533 " sz (PLFLT, input) : Together with sx and\n"
19534 " sy, this specifies shear of the string.\n"
19536 " just (PLFLT, input) : Specifies the position of the string relative\n"
19537 " to its reference point. If just=0. , the reference point is at\n"
19538 " the left and if just=1. , it is at the right of the string. Other\n"
19539 " values of just give intermediate justifications.\n"
19541 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19546 "Random number generator returning a real random number in the range [0,1]\n"
19550 " Random number generator returning a real random number in the range\n"
19551 " [0,1]. The generator is based on the Mersenne Twister. Most languages\n"
19552 " / compilers provide their own random number generator, and so this is\n"
19553 " provided purely for convenience and to give a consistent random number\n"
19554 " generator across all languages supported by PLplot. This is\n"
19555 " particularly useful for comparing results from the test suite of\n"
19558 " Redacted form: plrandd()\n"
19560 " This function is used in examples 17 and 21.\n"
19570 "Replays contents of plot buffer to current device/file\n"
19574 " Replays contents of plot buffer to current device/file.\n"
19576 " Redacted form: plreplot()\n"
19578 " This function is used in example 1,20.\n"
19588 "Convert RGB color to HLS\n"
19592 " Convert RGB color coordinates to HLS\n"
19594 " Redacted form: General: plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19597 " This function is used in example 2.\n"
19603 "plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19607 " r (PLFLT, input) : Red intensity (0.0-1.0) of the color.\n"
19609 " g (PLFLT, input) : Green intensity (0.0-1.0) of the color.\n"
19611 " b (PLFLT, input) : Blue intensity (0.0-1.0) of the color.\n"
19613 " p_h (PLFLT_NC_SCALAR, output) : Returned value of the hue in\n"
19614 " degrees (0.0-360.0) on the color cylinder.\n"
19616 " p_l (PLFLT_NC_SCALAR, output) : Returned value of the lightness\n"
19617 " expressed as a fraction (0.0-1.0) of the axis of the color\n"
19620 " p_s (PLFLT_NC_SCALAR, output) : Returned value of the saturation\n"
19621 " expressed as a fraction (0.0-1.0) of the radius of the color\n"
19626 "Set character size\n"
19630 " This sets up the size of all subsequent characters drawn. The actual\n"
19631 " height of a character is the product of the default character size and\n"
19632 " a scaling factor.\n"
19634 " Redacted form: plschr(def, scale)\n"
19636 " This function is used in examples 2, 13, 23, and 24.\n"
19642 "plschr(def, scale)\n"
19646 " def (PLFLT, input) : The default height of a character in\n"
19647 " millimeters, should be set to zero if the default height is to\n"
19648 " remain unchanged. For rasterized drivers the dx and dy values\n"
19649 " specified in plspage are used to convert from mm to pixels (note\n"
19650 " the different unit systems used). This dpi aware scaling is not\n"
19651 " implemented for all drivers yet.\n"
19653 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
19654 " actual character height.\n"
19658 "Set cmap0 colors by 8-bit RGB values\n"
19662 " Set cmap0 colors using 8-bit RGB values (see the PLplot\n"
19663 " documentation). This sets the entire color map -- only as many colors\n"
19664 " as specified will be allocated.\n"
19666 " Redacted form: plscmap0(r, g, b)\n"
19668 " This function is used in examples 2 and 24.\n"
19674 "plscmap0(r, g, b, ncol0)\n"
19678 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19679 " integers (0-255) representing the degree of red in the color.\n"
19681 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19682 " integers (0-255) representing the degree of green in the color.\n"
19684 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19685 " integers (0-255) representing the degree of blue in the color.\n"
19687 " ncol0 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19691 "Set cmap0 colors by 8-bit RGB values and PLFLT alpha transparency value\n"
19695 " Set cmap0 colors using 8-bit RGB values (see the PLplot documentation)\n"
19696 " and PLFLT alpha transparency value. This sets the entire color map --\n"
19697 " only as many colors as specified will be allocated.\n"
19699 " Redacted form: plscmap0a(r, g, b, alpha)\n"
19701 " This function is used in examples 30.\n"
19707 "plscmap0a(r, g, b, alpha, ncol0)\n"
19711 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19712 " integers (0-255) representing the degree of red in the color.\n"
19714 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19715 " integers (0-255) representing the degree of green in the color.\n"
19717 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19718 " integers (0-255) representing the degree of blue in the color.\n"
19720 " alpha (PLFLT_VECTOR, input) : A vector containing values (0.0-1.0)\n"
19721 " representing the alpha transparency of the color.\n"
19723 " ncol0 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19728 "Set number of colors in cmap0\n"
19732 " Set number of colors in cmap0 (see the PLplot documentation). Allocate\n"
19733 " (or reallocate) cmap0, and fill with default values for those colors\n"
19734 " not previously allocated. The first 16 default colors are given in\n"
19735 " the plcol0 documentation. For larger indices the default color is\n"
19738 " The drivers are not guaranteed to support more than 16 colors.\n"
19740 " Redacted form: plscmap0n(ncol0)\n"
19742 " This function is used in examples 15, 16, and 24.\n"
19748 "plscmap0n(ncol0)\n"
19752 " ncol0 (PLINT, input) : Number of colors that will be allocated in\n"
19753 " the cmap0 palette. If this number is zero or less, then the value\n"
19754 " from the previous call to plscmap0n is used and if there is no\n"
19755 " previous call, then a default value is used.\n"
19759 "Set opaque RGB cmap1 colors values\n"
19763 " Set opaque cmap1 colors (see the PLplot documentation) using RGB\n"
19764 " vector values. This function also sets the number of cmap1 colors.\n"
19765 " N.B. Continuous cmap1 colors are indexed with a floating-point index\n"
19766 " in the range from 0.0-1.0 which is linearly transformed (e.g., by\n"
19767 " plcol1) to an integer index of these RGB vectors in the range from 0\n"
19769 " ncol1-1. So in order for this continuous color model to work\n"
19770 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19771 " that these RGB vectors are continuous functions of their integer\n"
19774 " Redacted form: plscmap1(r, g, b)\n"
19776 " This function is used in example 31.\n"
19782 "plscmap1(r, g, b, ncol1)\n"
19786 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19787 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19788 " color as a continuous function of the integer index of the vector.\n"
19790 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19791 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19792 " color as a continuous function of the integer index of the vector.\n"
19794 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19795 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19796 " color as a continuous function of the integer index of the vector.\n"
19798 " ncol1 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19802 "Set semitransparent cmap1 RGBA colors.\n"
19806 " Set semitransparent cmap1 colors (see the PLplot documentation) using\n"
19807 " RGBA vector values. This function also sets the number of cmap1\n"
19808 " colors. N.B. Continuous cmap1 colors are indexed with a\n"
19809 " floating-point index in the range from 0.0-1.0 which is linearly\n"
19810 " transformed (e.g., by plcol1) to an integer index of these RGBA\n"
19811 " vectors in the range from 0 to\n"
19812 " ncol1-1. So in order for this continuous color model to work\n"
19813 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19814 " that these RGBA vectors are continuous functions of their integer\n"
19817 " Redacted form: plscmap1a(r, g, b, alpha)\n"
19819 " This function is used in example 31.\n"
19825 "plscmap1a(r, g, b, alpha, ncol1)\n"
19829 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19830 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19831 " color as a continuous function of the integer index of the vector.\n"
19833 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19834 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19835 " color as a continuous function of the integer index of the vector.\n"
19837 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19838 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19839 " color as a continuous function of the integer index of the vector.\n"
19841 " alpha (PLFLT_VECTOR, input) : A vector that represents (using PLFLT\n"
19842 " values in the range from 0.0-1.0 where 0.0 corresponds to\n"
19843 " completely transparent and 1.0 corresponds to completely opaque)\n"
19844 " the alpha transparency of the color as a continuous function of\n"
19845 " the integer index of the vector.\n"
19847 " ncol1 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19852 "Set cmap1 colors using a piece-wise linear relationship\n"
19856 " Set cmap1 colors using a piece-wise linear relationship between the\n"
19857 " cmap1 intensity index (0.0-1.0) and position in HLS or RGB color space\n"
19858 " (see the PLplot documentation). May be called at any time.\n"
19860 " The idea here is to specify a number of control points that define the\n"
19861 " mapping between input cmap1 intensity indices and HLS or RGB. Between\n"
19862 " these points, linear interpolation is used which gives a smooth\n"
19863 " variation of color with intensity index. Any number of control points\n"
19864 " may be specified, located at arbitrary positions, although typically 2\n"
19865 " - 4 are enough. Another way of stating this is that we are traversing\n"
19866 " a given number of lines through HLS or RGB space as we move through\n"
19867 " cmap1 intensity indices. The control points at the minimum and\n"
19868 " maximum position (0 and 1) must always be specified. By adding more\n"
19869 " control points you can get more variation. One good technique for\n"
19870 " plotting functions that vary about some expected average is to use an\n"
19871 " additional 2 control points in the center (position ~= 0.5) that are\n"
19872 " the same lightness as the background (typically white for paper\n"
19873 " output, black for crt), and same hue as the boundary control points.\n"
19874 " This allows the highs and lows to be very easily distinguished.\n"
19876 " Each control point must specify the cmap1 intensity index and the\n"
19877 " associated three coordinates in HLS or RGB space. The first point\n"
19878 " must correspond to position = 0, and the last to position = 1.\n"
19880 " If RGB colors are provided then the interpolation takes place in RGB\n"
19881 " space and is trivial. However if HLS colors are provided then, because\n"
19882 " of the circular nature of the color wheel for the hue coordinate, the\n"
19883 " interpolation could be performed in either direction around the color\n"
19884 " wheel. The default behaviour is for the hue to be linearly\n"
19885 " interpolated ignoring this circular property of hue. So for example,\n"
19886 " the hues 0 (red) and 240 (blue) will get interpolated via yellow,\n"
19887 " green and cyan. If instead you wish to interpolate the other way\n"
19888 " around the color wheel you have two options. You may provide hues\n"
19889 " outside the range [0, 360), so by using a hue of -120 for blue or 360\n"
19890 " for red the interpolation will proceed via magenta. Alternatively you\n"
19891 " can utilise the alt_hue_path variable to reverse the direction of\n"
19892 " interpolation if you need to provide hues within the [0-360) range.\n"
19894 " Examples of interpolation Huealt_hue_pathcolor scheme[120\n"
19895 " 240]falsegreen-cyan-blue[240 120]falseblue-cyan-green[120\n"
19896 " -120]falsegreen-yellow-red-magenta-blue[240\n"
19897 " 480]falseblue-magenta-red-yellow-green[120\n"
19898 " 240]truegreen-yellow-red-magenta-blue[240\n"
19899 " 120]trueblue-magenta-red-yellow-green\n"
19901 " Bounds on coordinatesRGBR[0, 1]magnitudeRGBG[0, 1]magnitudeRGBB[0,\n"
19902 " 1]magnitudeHLShue[0, 360]degreesHLSlightness[0,\n"
19903 " 1]magnitudeHLSsaturation[0, 1]magnitude\n"
19905 " Redacted form: plscmap1l(itype, intensity, coord1, coord2, coord3,\n"
19908 " This function is used in examples 8, 11, 12, 15, 20, and 21.\n"
19914 "plscmap1l(itype, npts, intensity, coord1, coord2, coord3, alt_hue_path)\n"
19918 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19920 " npts (PLINT, input) : number of control points\n"
19922 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19923 " intensity index (0.0-1.0) in ascending order for each control\n"
19926 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19927 " coordinate (H or R) for each control point.\n"
19929 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19930 " coordinate (L or G) for each control point.\n"
19932 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19933 " coordinate (S or B) for each control point.\n"
19935 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19936 " npts - 1 elements), each containing either true to use the reversed\n"
19937 " HLS interpolation or false to use the regular HLS interpolation.\n"
19938 " (alt_hue_path[i] refers to the interpolation interval between the\n"
19939 " i and i + 1 control points). This parameter is not used for RGB\n"
19941 " itype = true).\n"
19945 "Set cmap1 colors and alpha transparency using a piece-wise linear relationship\n"
19949 " This is a variant of plscmap1l that supports alpha channel\n"
19950 " transparency. It sets cmap1 colors using a piece-wise linear\n"
19951 " relationship between cmap1 intensity index (0.0-1.0) and position in\n"
19952 " HLS or RGB color space (see the PLplot documentation) with alpha\n"
19953 " transparency value (0.0-1.0). It may be called at any time.\n"
19955 " Redacted form: plscmap1la(itype, intensity, coord1, coord2, coord3,\n"
19956 " alpha, alt_hue_path)\n"
19958 " This function is used in example 30.\n"
19964 "plscmap1la(itype, npts, intensity, coord1, coord2, coord3, alpha, alt_hue_path)\n"
19968 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19970 " npts (PLINT, input) : number of control points.\n"
19972 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19973 " intensity index (0.0-1.0) in ascending order for each control\n"
19976 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19977 " coordinate (H or R) for each control point.\n"
19979 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19980 " coordinate (L or G) for each control point.\n"
19982 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19983 " coordinate (S or B) for each control point.\n"
19985 " alpha (PLFLT_VECTOR, input) : A vector containing the alpha\n"
19986 " transparency value (0.0-1.0) for each control point.\n"
19988 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19989 " npts - 1 elements) containing the alternative interpolation method\n"
19990 " Boolean value for each control point interval. (alt_hue_path[i]\n"
19991 " refers to the interpolation interval between the i and i + 1\n"
19992 " control points).\n"
19996 "Set number of colors in cmap1\n"
20000 " Set number of colors in cmap1, (re-)allocate cmap1, and set default\n"
20001 " values if this is the first allocation (see the PLplot documentation).\n"
20003 " Redacted form: plscmap1n(ncol1)\n"
20005 " This function is used in examples 8, 11, 20, and 21.\n"
20011 "plscmap1n(ncol1)\n"
20015 " ncol1 (PLINT, input) : Number of colors that will be allocated in\n"
20016 " the cmap1 palette. If this number is zero or less, then the value\n"
20017 " from the previous call to plscmap1n is used and if there is no\n"
20018 " previous call, then a default value is used.\n"
20022 "Set the cmap1 argument range for continuous color plots\n"
20026 " Set the cmap1 argument range for continuous color plots that\n"
20027 " corresponds to the range of data values. The maximum range\n"
20028 " corresponding to the entire cmap1 palette is 0.0-1.0, and the smaller\n"
20029 " the cmap1 argument range that is specified with this routine, the\n"
20030 " smaller the subset of the cmap1 color palette that is used to\n"
20031 " represent the continuous data being plotted. If\n"
20032 " min_color is greater than\n"
20034 " max_color is greater than 1.0 or\n"
20035 " min_color is less than 0.0 then no change is made to the cmap1\n"
20036 " argument range. (Use plgcmap1_range to get the cmap1 argument range.)\n"
20038 " Redacted form: plscmap1_range(min_color, max_color)\n"
20040 " This function is currently used in example 33.\n"
20046 "plscmap1_range(min_color, max_color)\n"
20050 " min_color (PLFLT, input) : The minimum cmap1 argument. If less\n"
20051 " than 0.0, then 0.0 is used instead.\n"
20053 " max_color (PLFLT, input) : The maximum cmap1 argument. If greater\n"
20054 " than 1.0, then 1.0 is used instead.\n"
20058 "Get the cmap1 argument range for continuous color plots\n"
20062 " Get the cmap1 argument range for continuous color plots. (Use\n"
20063 " plscmap1_range to set the cmap1 argument range.)\n"
20065 " Redacted form: plgcmap1_range(min_color, max_color)\n"
20067 " This function is currently not used in any example.\n"
20073 "plgcmap1_range(min_color, max_color)\n"
20077 " min_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20078 " minimum cmap1 argument.\n"
20080 " max_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20081 " maximum cmap1 argument.\n"
20085 "Set 8-bit RGB values for given cmap0 color index\n"
20089 " Set 8-bit RGB values for given cmap0 (see the PLplot documentation)\n"
20090 " index. Overwrites the previous color value for the given index and,\n"
20091 " thus, does not result in any additional allocation of space for\n"
20094 " Redacted form: plscol0(icol0, r, g, b)\n"
20096 " This function is used in any example 31.\n"
20102 "plscol0(icol0, r, g, b)\n"
20106 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20107 " number of colors (which is set by default, by plscmap0n, or even\n"
20110 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20111 " degree of red in the color.\n"
20113 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20114 " degree of green in the color.\n"
20116 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20117 " degree of blue in the color.\n"
20121 "Set 8-bit RGB values and PLFLT alpha transparency value for given cmap0 color index\n"
20125 " Set 8-bit RGB value and PLFLT alpha transparency value for given cmap0\n"
20126 " (see the PLplot documentation) index. Overwrites the previous color\n"
20127 " value for the given index and, thus, does not result in any additional\n"
20128 " allocation of space for colors.\n"
20130 " This function is used in example 30.\n"
20136 "plscol0a(icol0, r, g, b, alpha)\n"
20140 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20141 " number of colors (which is set by default, by plscmap0n, or even\n"
20144 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20145 " degree of red in the color.\n"
20147 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20148 " degree of green in the color.\n"
20150 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20151 " degree of blue in the color.\n"
20153 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20158 "Set the background color by 8-bit RGB value\n"
20162 " Set the background color (color 0 in cmap0) by 8-bit RGB value (see\n"
20163 " the PLplot documentation).\n"
20165 " Redacted form: plscolbg(r, g, b)\n"
20167 " This function is used in examples 15 and 31.\n"
20173 "plscolbg(r, g, b)\n"
20177 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20178 " degree of red in the color.\n"
20180 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20181 " degree of green in the color.\n"
20183 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20184 " degree of blue in the color.\n"
20188 "Set the background color by 8-bit RGB value and PLFLT alpha transparency value.\n"
20192 " Set the background color (color 0 in cmap0) by 8-bit RGB value and\n"
20193 " PLFLT alpha transparency value (see the PLplot documentation).\n"
20195 " This function is used in example 31.\n"
20201 "plscolbga(r, g, b, alpha)\n"
20205 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20206 " degree of red in the color.\n"
20208 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20209 " degree of green in the color.\n"
20211 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20212 " degree of blue in the color.\n"
20214 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20219 "Used to globally turn color output on/off\n"
20223 " Used to globally turn color output on/off for those drivers/devices\n"
20224 " that support it.\n"
20226 " Redacted form: plscolor(color)\n"
20228 " This function is used in example 31.\n"
20234 "plscolor(color)\n"
20238 " color (PLINT, input) : Color flag (Boolean). If zero, color is\n"
20239 " turned off. If non-zero, color is turned on.\n"
20243 "Set device-compression level\n"
20247 " Set device-compression level. Only used for drivers that provide\n"
20248 " compression. This function, if used, should be invoked before a call\n"
20251 " Redacted form: plscompression(compression)\n"
20253 " This function is used in example 31.\n"
20259 "plscompression(compression)\n"
20263 " compression (PLINT, input) : The desired compression level. This is\n"
20264 " a device-dependent value. Currently only the jpeg and png devices\n"
20265 " use these values. For jpeg value is the jpeg quality which should\n"
20266 " normally be in the range 0-95. Higher values denote higher quality\n"
20267 " and hence larger image sizes. For png values are in the range -1\n"
20268 " to 99. Values of 0-9 are taken as the compression level for zlib.\n"
20269 " A value of -1 denotes the default zlib compression level. Values\n"
20270 " in the range 10-99 are divided by 10 and then used as the zlib\n"
20271 " compression level. Higher compression levels correspond to greater\n"
20272 " compression and small file sizes at the expense of more\n"
20277 "Set the device (keyword) name\n"
20281 " Set the device (keyword) name.\n"
20283 " Redacted form: plsdev(devname)\n"
20285 " This function is used in examples 1, 14, and 20.\n"
20291 "plsdev(devname)\n"
20295 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
20296 " containing the device name keyword of the required output device.\n"
20298 " devname is NULL or if the first character of the string is a ``?'',\n"
20299 " the normal (prompted) start up is used.\n"
20303 "Set parameters that define current device-space window\n"
20307 " Set relative margin width, aspect ratio, and relative justification\n"
20308 " that define current device-space window. If you want to just use the\n"
20309 " previous value for any of these, just pass in the magic value\n"
20310 " PL_NOTSET. It is unlikely that one should ever need to change the\n"
20311 " aspect ratio but it's in there for completeness. If plsdidev is not\n"
20312 " called the default values of mar, jx, and jy are all 0. aspect is set\n"
20313 " to a device-specific value.\n"
20315 " Redacted form: plsdidev(mar, aspect, jx, jy)\n"
20317 " This function is used in example 31.\n"
20323 "plsdidev(mar, aspect, jx, jy)\n"
20327 " mar (PLFLT, input) : Relative margin width.\n"
20329 " aspect (PLFLT, input) : Aspect ratio.\n"
20331 " jx (PLFLT, input) : Relative justification in x. Value must lie in\n"
20332 " the range -0.5 to 0.5.\n"
20334 " jy (PLFLT, input) : Relative justification in y. Value must lie in\n"
20335 " the range -0.5 to 0.5.\n"
20339 "Set up transformation from metafile coordinates\n"
20343 " Set up transformation from metafile coordinates. The size of the plot\n"
20344 " is scaled so as to preserve aspect ratio. This isn't intended to be a\n"
20345 " general-purpose facility just yet (not sure why the user would need\n"
20348 " Redacted form: plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm,\n"
20351 " This function is not used in any examples.\n"
20357 "plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm, dimypmm)\n"
20361 " dimxmin (PLINT, input) : NEEDS DOCUMENTATION\n"
20363 " dimxmax (PLINT, input) : NEEDS DOCUMENTATION\n"
20365 " dimymin (PLINT, input) : NEEDS DOCUMENTATION\n"
20367 " dimymax (PLINT, input) : NEEDS DOCUMENTATION\n"
20369 " dimxpmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20371 " dimypmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20375 "Set plot orientation\n"
20379 " Set plot orientation parameter which is multiplied by 90 degrees to\n"
20380 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
20381 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
20382 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
20383 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
20384 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori is\n"
20385 " not called the default value of rot is 0.\n"
20387 " N.B. aspect ratio is unaffected by calls to plsdiori. So you will\n"
20388 " probably want to change the aspect ratio to a value suitable for the\n"
20389 " plot orientation using a call to plsdidev or the command-line options\n"
20390 " -a or -freeaspect. For more documentation of those options see the\n"
20391 " PLplot documentation. Such command-line options can be set internally\n"
20392 " using plsetopt or set directly using the command line and parsed using\n"
20393 " a call to plparseopts.\n"
20395 " Redacted form: plsdiori(rot)\n"
20397 " This function is not used in any examples.\n"
20407 " rot (PLFLT, input) : Plot orientation parameter.\n"
20411 "Set parameters that define current plot-space window\n"
20415 " Set relative minima and maxima that define the current plot-space\n"
20416 " window. If plsdiplt is not called the default values of xmin, ymin,\n"
20417 " xmax, and ymax are 0., 0., 1., and 1.\n"
20419 " Redacted form: plsdiplt(xmin, ymin, xmax, ymax)\n"
20421 " This function is used in example 31.\n"
20427 "plsdiplt(xmin, ymin, xmax, ymax)\n"
20431 " xmin (PLFLT, input) : Relative minimum in x.\n"
20433 " ymin (PLFLT, input) : Relative minimum in y.\n"
20435 " xmax (PLFLT, input) : Relative maximum in x.\n"
20437 " ymax (PLFLT, input) : Relative maximum in y.\n"
20441 "Set parameters incrementally (zoom mode) that define current plot-space window\n"
20445 " Set relative minima and maxima incrementally (zoom mode) that define\n"
20446 " the current plot-space window. This function has the same effect as\n"
20447 " plsdiplt if that function has not been previously called. Otherwise,\n"
20448 " this function implements zoom mode using the transformation min_used =\n"
20449 " old_min + old_length*min and max_used = old_min + old_length*max for\n"
20450 " each axis. For example, if min = 0.05 and max = 0.95 for each axis,\n"
20451 " repeated calls to plsdiplz will zoom in by 10 per cent for each call.\n"
20453 " Redacted form: plsdiplz(xmin, ymin, xmax, ymax)\n"
20455 " This function is used in example 31.\n"
20461 "plsdiplz(xmin, ymin, xmax, ymax)\n"
20465 " xmin (PLFLT, input) : Relative (incremental) minimum in x.\n"
20467 " ymin (PLFLT, input) : Relative (incremental) minimum in y.\n"
20469 " xmax (PLFLT, input) : Relative (incremental) maximum in x.\n"
20471 " ymax (PLFLT, input) : Relative (incremental) maximum in y.\n"
20475 "Set seed for internal random number generator.\n"
20479 " Set the seed for the internal random number generator. See plrandd for\n"
20480 " further details.\n"
20482 " Redacted form: plseed(seed)\n"
20484 " This function is used in example 21.\n"
20494 " seed (unsigned int, input) : Seed for random number generator.\n"
20498 "Set the escape character for text strings\n"
20502 " Set the escape character for text strings. From C (in contrast to\n"
20503 " Fortran, see plsescfortran) you pass esc as a character. Only selected\n"
20504 " characters are allowed to prevent the user from shooting himself in\n"
20505 " the foot (For example, a \\ isn't allowed since it conflicts with C's\n"
20506 " use of backslash as a character escape). Here are the allowed escape\n"
20507 " characters and their corresponding decimal ASCII values: !, ASCII 33\n"
20518 " Redacted form: General: plsesc(esc)\n"
20521 " This function is used in example 29.\n"
20531 " esc (char, input) : Escape character.\n"
20535 "Set any command-line option\n"
20539 " Set any command-line option internally from a program before it\n"
20540 " invokes plinit. opt is the name of the command-line option and optarg\n"
20541 " is the corresponding command-line option argument.\n"
20543 " This function returns 0 on success.\n"
20545 " Redacted form: plsetopt(opt, optarg)\n"
20547 " This function is used in example 14.\n"
20553 "PLINT plsetopt(opt, optarg)\n"
20557 " opt (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20558 " the command-line option.\n"
20560 " optarg (PLCHAR_VECTOR, input) : An ascii character string\n"
20561 " containing the argument of the command-line option.\n"
20565 "Set family file parameters\n"
20569 " Sets variables dealing with output file familying. Does nothing if\n"
20570 " familying not supported by the driver. This routine, if used, must be\n"
20571 " called before initializing PLplot. See the PLplot documentation for\n"
20572 " more information.\n"
20574 " Redacted form: plsfam(fam, num, bmax)\n"
20576 " This function is used in examples 14 and 31.\n"
20582 "plsfam(fam, num, bmax)\n"
20586 " fam (PLINT, input) : Family flag (Boolean). If nonzero, familying\n"
20589 " num (PLINT, input) : Current family file number.\n"
20591 " bmax (PLINT, input) : Maximum file size (in bytes) for a family\n"
20596 "Set FCI (font characterization integer)\n"
20600 " Sets font characteristics to be used at the start of the next string\n"
20601 " using the FCI approach. See the PLplot documentation for more\n"
20602 " information. Note, plsfont (which calls plsfci internally) provides a\n"
20603 " more user-friendly API for setting the font characterisitics.\n"
20605 " Redacted form: General: plsfci(fci)\n"
20608 " This function is used in example 23.\n"
20618 " fci (PLUNICODE, input) : PLUNICODE (unsigned 32-bit integer) value\n"
20623 "Set output file name\n"
20627 " Sets the current output file name, if applicable. If the file name\n"
20628 " has not been specified and is required by the driver, the user will be\n"
20629 " prompted for it. If using the X-windows output driver, this sets the\n"
20630 " display name. This routine, if used, must be called before\n"
20631 " initializing PLplot.\n"
20633 " Redacted form: plsfnam(fnam)\n"
20635 " This function is used in examples 1 and 20.\n"
20645 " fnam (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20646 " the file name.\n"
20650 "Set family, style and weight of the current font\n"
20654 " Sets the current font. See the PLplot documentation for more\n"
20655 " information on font selection.\n"
20657 " Redacted form: plsfont(family, style, weight)\n"
20659 " This function is used in example 23.\n"
20665 "plsfont(family, style, weight)\n"
20669 " family (PLINT, input) : Font family to select for the current font.\n"
20670 " The available values are given by the PL_FCI_* constants in\n"
20671 " plplot.h. Current options are PL_FCI_SANS, PL_FCI_SERIF,\n"
20672 " PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. A negative value\n"
20673 " signifies that the font family should not be altered.\n"
20675 " style (PLINT, input) : Font style to select for the current font.\n"
20676 " The available values are given by the PL_FCI_* constants in\n"
20677 " plplot.h. Current options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and\n"
20678 " PL_FCI_OBLIQUE. A negative value signifies that the font style\n"
20679 " should not be altered.\n"
20681 " weight (PLINT, input) : Font weight to select for the current font.\n"
20682 " The available values are given by the PL_FCI_* constants in\n"
20683 " plplot.h. Current options are PL_FCI_MEDIUM and PL_FCI_BOLD. A\n"
20684 " negative value signifies that the font weight should not be\n"
20689 "Shade regions on the basis of value\n"
20693 " Shade regions on the basis of value. This is the high-level routine\n"
20694 " for making continuous color shaded plots with cmap1 while plshade\n"
20695 " should be used to plot individual shaded regions using either cmap0 or\n"
20696 " cmap1. examples/;<language>/x16* shows how to use plshades for each of\n"
20697 " our supported languages.\n"
20699 " Redacted form: General: plshades(a, defined, xmin, xmax, ymin, ymax,\n"
20700 " clevel, fill_width, cont_color, cont_width, fill, rectangular, pltr,\n"
20704 " This function is used in examples 16, 21, and 22.\n"
20710 "plshades(a, nx, ny, defined, xmin, xmax, ymin, ymax, clevel, nlevel, fill_width, cont_color, cont_width, fill, rectangular, pltr, pltr_data)\n"
20714 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20715 " plot. Should have dimensions of\n"
20719 " nx (PLINT, input) : First dimension of matrix \"a\".\n"
20721 " ny (PLINT, input) : Second dimension of matrix \"a\".\n"
20723 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20724 " the region that should be plotted in the shade plot. This\n"
20725 " function accepts x and y coordinates as input arguments and must\n"
20726 " return 1 if the point is to be included in the shade plot and 0\n"
20727 " otherwise. If you want to plot the entire shade plot (the usual\n"
20728 " case), this argument should be set to NULL.\n"
20730 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20731 " pltr below for how these arguments are used (only for the special case\n"
20732 " when the callback function\n"
20733 " pltr is not supplied).\n"
20735 " clevel (PLFLT_VECTOR, input) : A vector containing the data levels\n"
20736 " corresponding to the edges of each shaded region that will be\n"
20737 " plotted by this function. To work properly the levels should be\n"
20740 " nlevel (PLINT, input) : Number of shades plus 1 (i.e., the number\n"
20741 " of shade edge values in clevel).\n"
20743 " fill_width (PLFLT, input) : Defines the line width used by the fill\n"
20746 " cont_color (PLINT, input) : Defines cmap0 pen color used for\n"
20747 " contours defining edges of shaded regions. The pen color is only\n"
20748 " temporary set for the contour drawing. Set this value to zero or\n"
20749 " less if no shade edge contours are wanted.\n"
20751 " cont_width (PLFLT, input) : Defines line width used for contours\n"
20752 " defining edges of shaded regions. This value may not be honored\n"
20753 " by all drivers. The pen width is only temporary set for the\n"
20754 " contour drawing. Set this value to zero or less if no shade edge\n"
20755 " contours are wanted.\n"
20757 " fill (PLFILL_callback, input) : Callback routine used to fill the\n"
20758 " region. Use plfill for this purpose.\n"
20760 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20761 " map to rectangles after coordinate transformation with pltrl.\n"
20762 " Otherwise, set rectangular to false. If rectangular is set to\n"
20763 " true, plshade tries to save time by filling large rectangles.\n"
20764 " This optimization fails if the coordinate transformation distorts\n"
20765 " the shape of rectangles. For example a plot in polar coordinates\n"
20766 " has to have rectangular set to false.\n"
20768 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20769 " defines the transformation between the zero-based indices of the\n"
20770 " matrix a and world coordinates. If\n"
20771 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20772 " indices of a are mapped to the range\n"
20774 " xmax and the y indices of a are mapped to the range\n"
20776 " ymax.For the C case, transformation functions are provided in the\n"
20777 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20778 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20779 " matrices. In addition, C callback routines for the transformation\n"
20780 " can be supplied by the user such as the mypltr function in\n"
20781 " examples/c/x09c.c which provides a general linear transformation\n"
20782 " between index coordinates and world coordinates.For languages\n"
20783 " other than C you should consult the PLplot documentation for the\n"
20784 " details concerning how PLTRANSFORM_callback arguments are\n"
20785 " interfaced. However, in general, a particular pattern of\n"
20786 " callback-associated arguments such as a tr vector with 6 elements;\n"
20787 " xg and yg vectors; or xg and yg matrices are respectively\n"
20788 " interfaced to a linear-transformation routine similar to the above\n"
20789 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20790 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20791 " support native language callbacks for handling index to\n"
20792 " world-coordinate transformations. Examples of these various\n"
20793 " approaches are given in examples/<language>x09*,\n"
20794 " examples/<language>x16*, examples/<language>x20*,\n"
20795 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20796 " supported languages.\n"
20798 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20799 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20800 " externally supplied.\n"
20804 "Shade individual region on the basis of value\n"
20808 " Shade individual region on the basis of value. Use plshades if you\n"
20809 " want to shade a number of contiguous regions using continuous colors.\n"
20810 " In particular the edge contours are treated properly in plshades. If\n"
20811 " you attempt to do contiguous regions with plshade the contours at the\n"
20812 " edge of the shade are partially obliterated by subsequent plots of\n"
20813 " contiguous shaded regions.\n"
20815 " Redacted form: General: plshade(a, defined, xmin, xmax, ymin, ymax,\n"
20816 " shade_min, shade_max, sh_cmap, sh_color, sh_width, min_color,\n"
20817 " min_width, max_color, max_width, fill, rectangular, pltr, pltr_data)\n"
20820 " This function is used in example 15.\n"
20826 "plshade(a, nx, ny, defined, xmin, xmax, ymin, ymax, shade_min, shade_max, sh_cmap, sh_color, sh_width, min_color, min_width, max_color, max_width, fill, rectangular, pltr, pltr_data)\n"
20830 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20831 " plot. Should have dimensions of\n"
20835 " nx (PLINT, input) : First dimension of the matrix \"a\".\n"
20837 " ny (PLINT, input) : Second dimension of the matrix \"a\".\n"
20839 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20840 " the region that should be plotted in the shade plot. This\n"
20841 " function accepts x and y coordinates as input arguments and must\n"
20842 " return 1 if the point is to be included in the shade plot and 0\n"
20843 " otherwise. If you want to plot the entire shade plot (the usual\n"
20844 " case), this argument should be set to NULL.\n"
20846 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20847 " pltr below for how these arguments are used (only for the special case\n"
20848 " when the callback function\n"
20849 " pltr is not supplied).\n"
20851 " shade_min (PLFLT, input) : Defines the lower end of the interval to\n"
20852 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20854 " shade_max (PLFLT, input) : Defines the upper end of the interval to\n"
20855 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20857 " sh_cmap (PLINT, input) : Defines color map. If sh_cmap=0, then\n"
20858 " sh_color is interpreted as a cmap0 (integer) index. If sh_cmap=1,\n"
20859 " then sh_color is interpreted as a cmap1 argument in the range\n"
20862 " sh_color (PLFLT, input) : Defines color map index with integer\n"
20863 " value if cmap0 or value in range (0.0-1.0) if cmap1.\n"
20865 " sh_width (PLFLT, input) : Defines width used by the fill pattern.\n"
20867 " min_color (PLINT, input) : Defines pen color, width used by the\n"
20868 " boundary of shaded region. The min values are used for the\n"
20869 " shade_min boundary, and the max values are used on the shade_max\n"
20870 " boundary. Set color and width to zero for no plotted boundaries.\n"
20872 " min_width (PLFLT, input) : Defines pen color, width used by the\n"
20873 " boundary of shaded region. The min values are used for the\n"
20874 " shade_min boundary, and the max values are used on the shade_max\n"
20875 " boundary. Set color and width to zero for no plotted boundaries.\n"
20877 " max_color (PLINT, input) : Defines pen color, width used by the\n"
20878 " boundary of shaded region. The min values are used for the\n"
20879 " shade_min boundary, and the max values are used on the shade_max\n"
20880 " boundary. Set color and width to zero for no plotted boundaries.\n"
20882 " max_width (PLFLT, input) : Defines pen color, width used by the\n"
20883 " boundary of shaded region. The min values are used for the\n"
20884 " shade_min boundary, and the max values are used on the shade_max\n"
20885 " boundary. Set color and width to zero for no plotted boundaries.\n"
20887 " fill (PLFILL_callback, input) : Routine used to fill the region.\n"
20888 " Use plfill. Future version of PLplot may have other fill\n"
20891 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20892 " map to rectangles after coordinate transformation with pltrl.\n"
20893 " Otherwise, set rectangular to false. If rectangular is set to\n"
20894 " true, plshade tries to save time by filling large rectangles.\n"
20895 " This optimization fails if the coordinate transformation distorts\n"
20896 " the shape of rectangles. For example a plot in polar coordinates\n"
20897 " has to have rectangular set to false.\n"
20899 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20900 " defines the transformation between the zero-based indices of the\n"
20901 " matrix a and world coordinates. If\n"
20902 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20903 " indices of a are mapped to the range\n"
20905 " xmax and the y indices of a are mapped to the range\n"
20907 " ymax.For the C case, transformation functions are provided in the\n"
20908 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20909 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20910 " matrices. In addition, C callback routines for the transformation\n"
20911 " can be supplied by the user such as the mypltr function in\n"
20912 " examples/c/x09c.c which provides a general linear transformation\n"
20913 " between index coordinates and world coordinates.For languages\n"
20914 " other than C you should consult the PLplot documentation for the\n"
20915 " details concerning how PLTRANSFORM_callback arguments are\n"
20916 " interfaced. However, in general, a particular pattern of\n"
20917 " callback-associated arguments such as a tr vector with 6 elements;\n"
20918 " xg and yg vectors; or xg and yg matrices are respectively\n"
20919 " interfaced to a linear-transformation routine similar to the above\n"
20920 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20921 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20922 " support native language callbacks for handling index to\n"
20923 " world-coordinate transformations. Examples of these various\n"
20924 " approaches are given in examples/<language>x09*,\n"
20925 " examples/<language>x16*, examples/<language>x20*,\n"
20926 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20927 " supported languages.\n"
20929 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20930 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20931 " externally supplied.\n"
20935 "Assign a function to use for generating custom axis labels\n"
20939 " This function allows a user to provide their own function to provide\n"
20940 " axis label text. The user function is given the numeric value for a\n"
20941 " point on an axis and returns a string label to correspond with that\n"
20942 " value. Custom axis labels can be enabled by passing appropriate\n"
20943 " arguments to plenv, plbox, plbox3 and similar functions.\n"
20945 " This function is used in example 19.\n"
20951 "plslabelfunc(label_func, label_data)\n"
20955 " label_func (PLLABEL_FUNC_callback, input) : This is the custom\n"
20956 " label function. In order to reset to the default labelling, set\n"
20957 " this to NULL. The labelling function parameters are, in order:\n"
20958 " axis: This indicates which axis a label is being requested for.\n"
20959 " The value will be one of PL_X_AXIS, PL_Y_AXIS or PL_Z_AXIS.\n"
20961 " value: This is the value along the axis which is being labelled.\n"
20963 " label_text: The string representation of the label value.\n"
20965 " length: The maximum length in characters allowed for label_text.\n"
20968 " label_data (PLPointer, input) : This parameter may be used to pass\n"
20969 " data to the label_func function.\n"
20973 "Set length of major ticks\n"
20977 " This sets up the length of the major ticks. The actual length is the\n"
20978 " product of the default length and a scaling factor as for character\n"
20981 " Redacted form: plsmaj(def, scale)\n"
20983 " This function is used in example 29.\n"
20989 "plsmaj(def, scale)\n"
20993 " def (PLFLT, input) : The default length of a major tick in\n"
20994 " millimeters, should be set to zero if the default length is to\n"
20995 " remain unchanged.\n"
20997 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
20998 " actual tick length.\n"
21002 "Set the memory area to be plotted (RGB)\n"
21006 " Set the memory area to be plotted (with the mem or memcairo driver) as\n"
21007 " the dev member of the stream structure. Also set the number of pixels\n"
21008 " in the memory passed in\n"
21009 " plotmem, which is a block of memory\n"
21011 " maxx by 3 bytes long, say: 480 x 640 x 3 (Y, X, RGB)\n"
21013 " This memory will have to be freed by the user!\n"
21015 " Redacted form: plsmem(maxx, maxy, plotmem)\n"
21017 " This function is not used in any examples.\n"
21023 "plsmem(maxx, maxy, plotmem)\n"
21027 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21029 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21031 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21032 " user-supplied writeable memory area.\n"
21036 "Set the memory area to be plotted (RGBA)\n"
21040 " Set the memory area to be plotted (with the memcairo driver) as the\n"
21041 " dev member of the stream structure. Also set the number of pixels in\n"
21042 " the memory passed in\n"
21043 " plotmem, which is a block of memory\n"
21045 " maxx by 4 bytes long, say: 480 x 640 x 4 (Y, X, RGBA)\n"
21047 " This memory will have to be freed by the user!\n"
21049 " Redacted form: plsmema(maxx, maxy, plotmem)\n"
21051 " This function is not used in any examples.\n"
21057 "plsmema(maxx, maxy, plotmem)\n"
21061 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21063 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21065 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21066 " user-supplied writeable memory area.\n"
21070 "Set length of minor ticks\n"
21074 " This sets up the length of the minor ticks and the length of the\n"
21075 " terminals on error bars. The actual length is the product of the\n"
21076 " default length and a scaling factor as for character height.\n"
21078 " Redacted form: plsmin(def, scale)\n"
21080 " This function is used in example 29.\n"
21086 "plsmin(def, scale)\n"
21090 " def (PLFLT, input) : The default length of a minor tick in\n"
21091 " millimeters, should be set to zero if the default length is to\n"
21092 " remain unchanged.\n"
21094 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21095 " actual tick length.\n"
21099 "Set orientation\n"
21103 " Set integer plot orientation parameter. This function is identical to\n"
21104 " plsdiori except for the type of the argument, and should be used in\n"
21105 " the same way. See the documentation of plsdiori for details.\n"
21107 " Redacted form: plsori(ori)\n"
21109 " This function is used in example 3.\n"
21119 " ori (PLINT, input) : Orientation value (0 for landscape, 1 for\n"
21120 " portrait, etc.) The value is multiplied by 90 degrees to get the\n"
21125 "Set page parameters\n"
21129 " Sets the page configuration (optional). If an individual parameter is\n"
21130 " zero then that parameter value is not updated. Not all parameters are\n"
21131 " recognized by all drivers and the interpretation is device-dependent.\n"
21132 " The X-window driver uses the length and offset parameters to determine\n"
21133 " the window size and location. The length and offset values are\n"
21134 " expressed in units that are specific to the current driver. For\n"
21135 " instance: screen drivers will usually interpret them as number of\n"
21136 " pixels, whereas printer drivers will usually use mm.\n"
21138 " This routine, if used, must be called before initializing PLplot. It\n"
21139 " may be called at later times for interactive drivers to change only\n"
21140 " the dpi for subsequent redraws which you can force via a call to\n"
21141 " plreplot. If this function is not called then the page size defaults\n"
21142 " to landscape A4 for drivers which use real world page sizes and 744\n"
21143 " pixels wide by 538 pixels high for raster drivers. The default value\n"
21144 " for dx and dy is 90 pixels per inch for raster drivers.\n"
21148 " Redacted form: plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21150 " This function is used in examples 14 and 31.\n"
21156 "plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21160 " xp (PLFLT, input) : Number of pixels per inch (DPI), x. Used only\n"
21161 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21164 " yp (PLFLT, input) : Number of pixels per inch (DPI), y. Used only\n"
21165 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21168 " xleng (PLINT, input) : Page length, x.\n"
21170 " yleng (PLINT, input) : Page length, y.\n"
21172 " xoff (PLINT, input) : Page offset, x.\n"
21174 " yoff (PLINT, input) : Page offset, y.\n"
21178 "Set the cmap0 palette using the specified cmap0*.pal format file\n"
21182 " Set the cmap0 palette using the specified cmap0*.pal format file.\n"
21184 " Redacted form: plspal0(filename)\n"
21186 " This function is in example 16.\n"
21192 "plspal0(filename)\n"
21196 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21197 " containing the name of the cmap0*.pal file. If this string is\n"
21198 " empty, use the default cmap0*.pal file.\n"
21202 "Set the cmap1 palette using the specified cmap1*.pal format file\n"
21206 " Set the cmap1 palette using the specified cmap1*.pal format file.\n"
21208 " Redacted form: plspal1(filename, interpolate)\n"
21210 " This function is used in example 16.\n"
21216 "plspal1(filename, interpolate)\n"
21220 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21221 " containing the name of the cmap1*.pal file. If this string is\n"
21222 " empty, use the default cmap1*.pal file.\n"
21224 " interpolate (PLBOOL, input) : If this parameter is true, the\n"
21225 " columns containing the intensity index, r, g, b, alpha and\n"
21226 " alt_hue_path in the cmap1*.pal file are used to set the cmap1\n"
21227 " palette with a call to plscmap1la. (The cmap1*.pal header contains\n"
21228 " a flag which controls whether the r, g, b data sent to plscmap1la\n"
21229 " are interpreted as HLS or RGB.) If this parameter is false, the\n"
21230 " intensity index and alt_hue_path columns are ignored and the r, g,\n"
21231 " b (interpreted as RGB), and alpha columns of the cmap1*.pal file\n"
21232 " are used instead to set the cmap1 palette directly with a call to\n"
21237 "Set the pause (on end-of-page) status\n"
21241 " Set the pause (on end-of-page) status.\n"
21243 " Redacted form: plspause(pause)\n"
21245 " This function is in examples 14,20.\n"
21251 "plspause(pause)\n"
21255 " pause (PLBOOL, input) : If pause is true there will be a pause on\n"
21256 " end-of-page for those drivers which support this. Otherwise there\n"
21261 "Set current output stream\n"
21265 " Sets the number of the current output stream. The stream number\n"
21266 " defaults to 0 unless changed by this routine. The first use of this\n"
21267 " routine must be followed by a call initializing PLplot (e.g. plstar).\n"
21269 " Redacted form: plsstrm(strm)\n"
21271 " This function is examples 1,14,20.\n"
21281 " strm (PLINT, input) : The current stream number.\n"
21285 "Set the number of subpages in x and y\n"
21289 " Set the number of subpages in x and y.\n"
21291 " Redacted form: plssub(nx, ny)\n"
21293 " This function is examples 1,2,14,21,25,27.\n"
21303 " nx (PLINT, input) : Number of windows in x direction (i.e., number\n"
21304 " of window columns).\n"
21306 " ny (PLINT, input) : Number of windows in y direction (i.e., number\n"
21307 " of window rows).\n"
21311 "Set symbol size\n"
21315 " This sets up the size of all subsequent symbols drawn by plpoin and\n"
21316 " plsym. The actual height of a symbol is the product of the default\n"
21317 " symbol size and a scaling factor as for the character height.\n"
21319 " Redacted form: plssym(def, scale)\n"
21321 " This function is used in example 29.\n"
21327 "plssym(def, scale)\n"
21331 " def (PLFLT, input) : The default height of a symbol in millimeters,\n"
21332 " should be set to zero if the default height is to remain\n"
21335 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21336 " actual symbol height.\n"
21344 " Initializing the plotting package. The program prompts for the device\n"
21345 " keyword or number of the desired output device. Hitting a RETURN in\n"
21346 " response to the prompt is the same as selecting the first device. If\n"
21347 " only one device is enabled when PLplot is installed, plstar will issue\n"
21348 " no prompt. The output device is divided into nx by ny subpages, each\n"
21349 " of which may be used independently. The subroutine pladv is used to\n"
21350 " advance from one subpage to the next.\n"
21352 " Redacted form: plstar(nx, ny)\n"
21354 " This function is used in example 1.\n"
21364 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21367 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21376 " Alternative to plstar for initializing the plotting package. The\n"
21377 " device name keyword for the desired output device must be supplied as\n"
21378 " an argument. These keywords are the same as those printed out by\n"
21379 " plstar. If the requested device is not available, or if the input\n"
21380 " string is empty or begins with ``?'', the prompted start up of plstar\n"
21381 " is used. This routine also divides the output device page into nx by\n"
21382 " ny subpages, each of which may be used independently. The subroutine\n"
21383 " pladv is used to advance from one subpage to the next.\n"
21385 " Redacted form: General: plstart(devname, nx, ny)\n"
21388 " This function is not used in any examples.\n"
21394 "plstart(devname, nx, ny)\n"
21398 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
21399 " containing the device name keyword of the required output device.\n"
21401 " devname is NULL or if the first character of the string is a ``?'',\n"
21402 " the normal (prompted) start up is used.\n"
21404 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21407 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21412 "Set a global coordinate transform function\n"
21416 " This function can be used to define a coordinate transformation which\n"
21417 " affects all elements drawn within the current plot window. The\n"
21418 " coordinate_transform callback function is similar to that provided for\n"
21419 " the plmap and plmeridians functions. The coordinate_transform_data\n"
21420 " parameter may be used to pass extra data to coordinate_transform.\n"
21422 " Redacted form: General: plstransform(coordinate_transform,\n"
21423 " coordinate_transform_data)\n"
21426 " This function is used in examples 19 and 22.\n"
21432 "plstransform(coordinate_transform, coordinate_transform_data)\n"
21436 " coordinate_transform (PLTRANSFORM_callback, input) : A callback\n"
21437 " function that defines the transformation from the input (x, y)\n"
21438 " world coordinates to new PLplot world coordinates. If\n"
21439 " coordinate_transform is not supplied (e.g., is set to NULL in the C\n"
21440 " case), then no transform is applied.\n"
21442 " coordinate_transform_data (PLPointer, input) : Optional extra data\n"
21444 " coordinate_transform.\n"
21448 "Plot a glyph at the specified points\n"
21452 " Plot a glyph at the specified points. (Supersedes plpoin and plsym\n"
21453 " because many[!] more glyphs are accessible with plstring.) The glyph\n"
21454 " is specified with a PLplot user string. Note that the user string is\n"
21455 " not actually limited to one glyph so it is possible (but not normally\n"
21456 " useful) to plot more than one glyph at the specified points with this\n"
21457 " function. As with plmtex and plptex, the user string can contain FCI\n"
21458 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21459 " else PLplot escapes for Hershey or unicode text to determine the\n"
21462 " Redacted form: plstring(x, y, string)\n"
21464 " This function is used in examples 4, 21 and 26.\n"
21470 "plstring(n, x, y, string)\n"
21474 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21476 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21479 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21482 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21483 " the glyph(s) to be plotted at each of the n points.\n"
21487 "Plot a glyph at the specified 3D points\n"
21491 " Plot a glyph at the specified 3D points. (Supersedes plpoin3 because\n"
21492 " many[!] more glyphs are accessible with plstring3.) Set up the call to\n"
21493 " this function similar to what is done for plline3. The glyph is\n"
21494 " specified with a PLplot user string. Note that the user string is not\n"
21495 " actually limited to one glyph so it is possible (but not normally\n"
21496 " useful) to plot more than one glyph at the specified points with this\n"
21497 " function. As with plmtex and plptex, the user string can contain FCI\n"
21498 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21499 " else PLplot escapes for Hershey or unicode text to determine the\n"
21502 " Redacted form: plstring3(x, y, z, string)\n"
21504 " This function is used in example 18.\n"
21510 "plstring3(n, x, y, z, string)\n"
21514 " n (PLINT, input) : Number of points in the x, y, and z vectors.\n"
21516 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21519 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21522 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
21525 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21526 " the glyph(s) to be plotted at each of the n points. points.\n"
21530 "Add a point to a strip chart\n"
21534 " Add a point to a given pen of a given strip chart. There is no need\n"
21535 " for all pens to have the same number of points or to be equally\n"
21536 " sampled in the x coordinate. Allocates memory and rescales as\n"
21539 " Redacted form: plstripa(id, pen, x, y)\n"
21541 " This function is used in example 17.\n"
21547 "plstripa(id, pen, x, y)\n"
21551 " id (PLINT, input) : Identification number of the strip chart (set\n"
21552 " up in plstripc).\n"
21554 " pen (PLINT, input) : Pen number (ranges from 0 to 3).\n"
21556 " x (PLFLT, input) : X coordinate of point to plot.\n"
21558 " y (PLFLT, input) : Y coordinate of point to plot.\n"
21562 "Create a 4-pen strip chart\n"
21566 " Create a 4-pen strip chart, to be used afterwards by plstripa\n"
21568 " Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump,\n"
21569 " ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline,\n"
21570 " styline, legline, labx, laby, labz)\n"
21573 " This function is used in example 17.\n"
21579 "plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby, labtop)\n"
21583 " id (PLINT_NC_SCALAR, output) : Returned value of the identification\n"
21584 " number of the strip chart to use on plstripa and plstripd.\n"
21586 " xspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21587 " the x-axis specification as in plbox.\n"
21589 " yspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21590 " the y-axis specification as in plbox.\n"
21592 " xmin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21593 " change as data are added.\n"
21595 " xmax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21596 " change as data are added.\n"
21598 " xjump (PLFLT, input) : When x attains xmax, the length of the plot\n"
21599 " is multiplied by the factor (1 +\n"
21602 " ymin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21603 " change as data are added.\n"
21605 " ymax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21606 " change as data are added.\n"
21608 " xlpos (PLFLT, input) : X legend box position (range from 0 to 1).\n"
21610 " ylpos (PLFLT, input) : Y legend box position (range from 0 to 1).\n"
21612 " y_ascl (PLBOOL, input) : Autoscale y between x jumps if y_ascl is\n"
21613 " true, otherwise not.\n"
21615 " acc (PLBOOL, input) : Accumulate strip plot if acc is true,\n"
21616 " otherwise slide display.\n"
21618 " colbox (PLINT, input) : Plot box color index (cmap0).\n"
21620 " collab (PLINT, input) : Legend color index (cmap0).\n"
21622 " colline (PLINT_VECTOR, input) : A vector containing the cmap0 color\n"
21623 " indices for the 4 pens.\n"
21625 " styline (PLINT_VECTOR, input) : A vector containing the line style\n"
21626 " indices for the 4 pens.\n"
21628 " legline (PLCHAR_MATRIX, input) : A vector of UTF-8 character\n"
21629 " strings containing legends for the 4 pens.\n"
21631 " labx (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21632 " the label for the x axis.\n"
21634 " laby (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21635 " the label for the y axis.\n"
21637 " labtop (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21638 " the plot title.\n"
21642 "Deletes and releases memory used by a strip chart\n"
21646 " Deletes and releases memory used by a strip chart.\n"
21648 " Redacted form: plstripd(id)\n"
21650 " This function is used in example 17.\n"
21660 " id (PLINT, input) : Identification number of strip chart to delete.\n"
21668 " This sets up the line style for all lines subsequently drawn. A line\n"
21669 " consists of segments in which the pen is alternately down and up. The\n"
21670 " lengths of these segments are passed in the vectors mark and space\n"
21671 " respectively. The number of mark-space pairs is specified by nms. In\n"
21672 " order to return the line style to the default continuous line, plstyl\n"
21673 " should be called with nms =0 .(see also pllsty)\n"
21675 " Redacted form: plstyl(mark, space)\n"
21677 " This function is used in examples 1, 9, and 14.\n"
21683 "plstyl(nms, mark, space)\n"
21687 " nms (PLINT, input) : The number of mark and space elements in a\n"
21688 " line. Thus a simple broken line can be obtained by setting nms=1\n"
21689 " . A continuous line is specified by setting nms=0 .\n"
21691 " mark (PLINT_VECTOR, input) : A vector containing the lengths of the\n"
21692 " segments during which the pen is down, measured in micrometers.\n"
21694 " space (PLINT_VECTOR, input) : A vector containing the lengths of\n"
21695 " the segments during which the pen is up, measured in micrometers.\n"
21699 "Set arrow style for vector plots\n"
21703 " Set the style for the arrow used by plvect to plot vectors.\n"
21705 " Redacted form: plsvect(arrowx, arrowy, fill)\n"
21707 " This function is used in example 22.\n"
21713 "plsvect(arrowx, arrowy, npts, fill)\n"
21717 " arrowx, arrowy (PLFLT_VECTOR, input) : A pair of vectors containing\n"
21718 " the x and y points which make up the arrow. The arrow is plotted\n"
21719 " by joining these points to form a polygon. The scaling assumes\n"
21720 " that the x and y points in the arrow lie in the range -0.5 <= x,y\n"
21721 " <= 0.5. If both arrowx and arrowy are NULL then the arrow style\n"
21722 " will be reset to its default.\n"
21724 " npts (PLINT, input) : Number of points in the vectors arrowx and\n"
21727 " fill (PLBOOL, input) : If fill is true then the arrow is closed, if\n"
21728 " fill is false then the arrow is open.\n"
21732 "Specify viewport in absolute coordinates\n"
21736 " Alternate routine to plvpor for setting up the viewport. This routine\n"
21737 " should be used only if the viewport is required to have a definite\n"
21738 " size in millimeters. The routine plgspa is useful for finding out the\n"
21739 " size of the current subpage.\n"
21741 " Redacted form: plsvpa(xmin, xmax, ymin, ymax)\n"
21743 " This function is used in example 10.\n"
21749 "plsvpa(xmin, xmax, ymin, ymax)\n"
21753 " xmin (PLFLT, input) : The distance of the left-hand edge of the\n"
21754 " viewport from the left-hand edge of the subpage in millimeters.\n"
21756 " xmax (PLFLT, input) : The distance of the right-hand edge of the\n"
21757 " viewport from the left-hand edge of the subpage in millimeters.\n"
21759 " ymin (PLFLT, input) : The distance of the bottom edge of the\n"
21760 " viewport from the bottom edge of the subpage in millimeters.\n"
21762 " ymax (PLFLT, input) : The distance of the top edge of the viewport\n"
21763 " from the bottom edge of the subpage in millimeters.\n"
21767 "Set x axis parameters\n"
21771 " Sets values of the digmax and digits flags for the x axis. See the\n"
21772 " PLplot documentation for more information.\n"
21774 " Redacted form: plsxax(digmax, digits)\n"
21776 " This function is used in example 31.\n"
21782 "plsxax(digmax, digits)\n"
21786 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21787 " digits for the x axis. If nonzero, the printed label will be\n"
21788 " switched to a floating-point representation when the number of\n"
21789 " digits exceeds digmax.\n"
21791 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21792 " its value here has no effect since it is set only by plbox or\n"
21793 " plbox3. However, the user may obtain its value after a call to\n"
21794 " either of these functions by calling plgxax.\n"
21798 "Set y axis parameters\n"
21802 " Identical to plsxax, except that arguments are flags for y axis. See\n"
21803 " the description of plsxax for more detail.\n"
21805 " Redacted form: plsyax(digmax, digits)\n"
21807 " This function is used in examples 1, 14, and 31.\n"
21813 "plsyax(digmax, digits)\n"
21817 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21818 " digits for the y axis. If nonzero, the printed label will be\n"
21819 " switched to a floating-point representation when the number of\n"
21820 " digits exceeds digmax.\n"
21822 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21823 " its value here has no effect since it is set only by plbox or\n"
21824 " plbox3. However, the user may obtain its value after a call to\n"
21825 " either of these functions by calling plgyax.\n"
21829 "Plot a glyph at the specified points\n"
21833 " Plot a glyph at the specified points. (This function is largely\n"
21834 " superseded by plstring which gives access to many[!] more glyphs.)\n"
21836 " Redacted form: plsym(x, y, code)\n"
21838 " This function is used in example 7.\n"
21844 "plsym(n, x, y, code)\n"
21848 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21850 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21853 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21856 " code (PLINT, input) : Hershey symbol code corresponding to a glyph\n"
21857 " to be plotted at each of the n points.\n"
21861 "Set z axis parameters\n"
21865 " Identical to plsxax, except that arguments are flags for z axis. See\n"
21866 " the description of plsxax for more detail.\n"
21868 " Redacted form: plszax(digmax, digits)\n"
21870 " This function is used in example 31.\n"
21876 "plszax(digmax, digits)\n"
21880 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21881 " digits for the z axis. If nonzero, the printed label will be\n"
21882 " switched to a floating-point representation when the number of\n"
21883 " digits exceeds digmax.\n"
21885 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21886 " its value here has no effect since it is set only by plbox or\n"
21887 " plbox3. However, the user may obtain its value after a call to\n"
21888 " either of these functions by calling plgzax.\n"
21892 "Switch to text screen\n"
21896 " Sets an interactive device to text mode, used in conjunction with\n"
21897 " plgra to allow graphics and text to be interspersed. On a device\n"
21898 " which supports separate text and graphics windows, this command causes\n"
21899 " control to be switched to the text window. This can be useful for\n"
21900 " printing diagnostic messages or getting user input, which would\n"
21901 " otherwise interfere with the plots. The program must switch back to\n"
21902 " the graphics window before issuing plot commands, as the text (or\n"
21903 " console) device will probably become quite confused otherwise. If\n"
21904 " already in text mode, this command is ignored. It is also ignored on\n"
21905 " devices which only support a single window or use a different method\n"
21906 " for shifting focus (see also plgra).\n"
21908 " Redacted form: pltext()\n"
21910 " This function is used in example 1.\n"
21920 "Set format for date / time labels\n"
21924 " Sets the format for date / time labels. To enable date / time format\n"
21925 " labels see the options to plbox, plbox3, and plenv.\n"
21927 " Redacted form: pltimefmt(fmt)\n"
21929 " This function is used in example 29.\n"
21939 " fmt (PLCHAR_VECTOR, input) : An ascii character string which is\n"
21940 " interpreted similarly to the format specifier of typical system\n"
21941 " strftime routines except that PLplot ignores locale and also\n"
21942 " supplies some useful extensions in the context of plotting. All\n"
21943 " text in the string is printed as-is other than conversion\n"
21944 " specifications which take the form of a '%' character followed by\n"
21945 " further conversion specification character. The conversion\n"
21946 " specifications which are similar to those provided by system\n"
21947 " strftime routines are the following: %a: The abbreviated (English)\n"
21949 " %A: The full (English) weekday name.\n"
21950 " %b: The abbreviated (English) month name.\n"
21951 " %B: The full (English) month name.\n"
21952 " %c: Equivalent to %a %b %d %T %Y (non-ISO).\n"
21953 " %C: The century number (year/100) as a 2-digit integer.\n"
21954 " %d: The day of the month as a decimal number (range 01 to 31).\n"
21955 " %D: Equivalent to %m/%d/%y (non-ISO).\n"
21956 " %e: Like %d, but a leading zero is replaced by a space.\n"
21957 " %F: Equivalent to %Y-%m-%d (the ISO 8601 date format).\n"
21958 " %h: Equivalent to %b.\n"
21959 " %H: The hour as a decimal number using a 24-hour clock (range\n"
21961 " %I: The hour as a decimal number using a 12-hour clock (range\n"
21963 " %j: The day of the year as a decimal number (range 001 to\n"
21965 " %k: The hour (24-hour clock) as a decimal number (range 0 to\n"
21966 " 23); single digits are preceded by a blank. (See also %H.)\n"
21967 " %l: The hour (12-hour clock) as a decimal number (range 1 to\n"
21968 " 12); single digits are preceded by a blank. (See also %I.)\n"
21969 " %m: The month as a decimal number (range 01 to 12).\n"
21970 " %M: The minute as a decimal number (range 00 to 59).\n"
21971 " %n: A newline character.\n"
21972 " %p: Either \"AM\" or \"PM\" according to the given time value.\n"
21973 " Noon is treated as \"PM\" and midnight as \"AM\".\n"
21974 " %r: Equivalent to %I:%M:%S %p.\n"
21975 " %R: The time in 24-hour notation (%H:%M). For a version\n"
21976 " including the seconds, see %T below.\n"
21977 " %s: The number of seconds since the Epoch, 1970-01-01 00:00:00\n"
21979 " %S: The second as a decimal number (range 00 to 60). (The\n"
21980 " range is up to 60 to allow for occasional leap seconds.)\n"
21981 " %t: A tab character.\n"
21982 " %T: The time in 24-hour notation (%H:%M:%S).\n"
21983 " %u: The day of the week as a decimal, range 1 to 7, Monday\n"
21984 " being 1. See also %w.\n"
21985 " %U: The week number of the current year as a decimal number,\n"
21986 " range 00 to 53, starting with the first Sunday as the first\n"
21987 " day of week 01. See also %V and %W.\n"
21988 " %v: Equivalent to %e-%b-%Y.\n"
21989 " %V: The ISO 8601 week number of the current year as a decimal\n"
21990 " number, range 01 to 53, where week 1 is the first week that\n"
21991 " has at least 4 days in the new year. See also %U and %W.\n"
21992 " %w: The day of the week as a decimal, range 0 to 6, Sunday\n"
21993 " being 0. See also %u.\n"
21994 " %W: The week number of the current year as a decimal number,\n"
21995 " range 00 to 53, starting with the first Monday as the first\n"
21996 " day of week 01.\n"
21997 " %x: Equivalent to %a %b %d %Y.\n"
21998 " %X: Equivalent to %T.\n"
21999 " %y: The year as a decimal number without a century (range 00\n"
22001 " %Y: The year as a decimal number including a century.\n"
22002 " %z: The UTC time-zone string = \"+0000\".\n"
22003 " %Z: The UTC time-zone abbreviation = \"UTC\".\n"
22004 " %+: The UTC date and time in default format of the Unix date\n"
22005 " command which is equivalent to %a %b %d %T %Z %Y.\n"
22006 " %%: A literal \"%\" character.\n"
22007 " The conversion specifications which are extensions to those normally\n"
22008 " provided by system strftime routines are the following: %(0-9):\n"
22009 " The fractional part of the seconds field (including leading\n"
22010 " decimal point) to the specified accuracy. Thus %S%3 would give\n"
22011 " seconds to millisecond accuracy (00.000).\n"
22012 " %.: The fractional part of the seconds field (including\n"
22013 " leading decimal point) to the maximum available accuracy. Thus\n"
22014 " %S%. would give seconds with fractional part up to 9 decimal\n"
22015 " places if available.\n"
22019 "Specify viewport using aspect ratio only\n"
22023 " Selects the largest viewport with the given aspect ratio within the\n"
22024 " subpage that leaves a standard margin (left-hand margin of eight\n"
22025 " character heights, and a margin around the other three sides of five\n"
22026 " character heights).\n"
22028 " Redacted form: plvasp(aspect)\n"
22030 " This function is used in example 13.\n"
22040 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22041 " axis of resulting viewport.\n"
22049 " Draws a plot of vector data contained in the matrices (\n"
22055 " ny]) . The scaling factor for the vectors is given by scale. A\n"
22056 " transformation routine pointed to by pltr with a pointer pltr_data for\n"
22057 " additional data required by the transformation routine to map indices\n"
22058 " within the matrices to the world coordinates. The style of the vector\n"
22059 " arrow may be set using plsvect.\n"
22061 " Redacted form: plvect(u, v, scale, pltr, pltr_data) where (see above\n"
22062 " discussion) the pltr, pltr_data callback arguments are sometimes\n"
22063 " replaced by a tr vector with 6 elements, or xg and yg array arguments\n"
22064 " with either one or two dimensions.\n"
22066 " This function is used in example 22.\n"
22072 "plvect(u, v, nx, ny, scale, pltr, pltr_data)\n"
22076 " u, v (PLFLT_MATRIX, input) : A pair of matrices containing the x\n"
22077 " and y components of the vector data to be plotted.\n"
22079 " nx, ny (PLINT, input) : Dimensions of the matrices u and v.\n"
22081 " scale (PLFLT, input) : Parameter to control the scaling factor of\n"
22082 " the vectors for plotting. If scale = 0 then the scaling factor is\n"
22083 " automatically calculated for the data. If scale < 0 then the\n"
22084 " scaling factor is automatically calculated for the data and then\n"
22085 " multiplied by -\n"
22086 " scale. If scale > 0 then the scaling factor is set to scale.\n"
22088 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22089 " defines the transformation between the zero-based indices of the\n"
22090 " matrices u and v and world coordinates.For the C case,\n"
22091 " transformation functions are provided in the PLplot library: pltr0\n"
22092 " for the identity mapping, and pltr1 and pltr2 for arbitrary\n"
22093 " mappings respectively defined by vectors and matrices. In\n"
22094 " addition, C callback routines for the transformation can be\n"
22095 " supplied by the user such as the mypltr function in\n"
22096 " examples/c/x09c.c which provides a general linear transformation\n"
22097 " between index coordinates and world coordinates.For languages\n"
22098 " other than C you should consult the PLplot documentation for the\n"
22099 " details concerning how PLTRANSFORM_callback arguments are\n"
22100 " interfaced. However, in general, a particular pattern of\n"
22101 " callback-associated arguments such as a tr vector with 6 elements;\n"
22102 " xg and yg vectors; or xg and yg matrices are respectively\n"
22103 " interfaced to a linear-transformation routine similar to the above\n"
22104 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22105 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22106 " support native language callbacks for handling index to\n"
22107 " world-coordinate transformations. Examples of these various\n"
22108 " approaches are given in examples/<language>x09*,\n"
22109 " examples/<language>x16*, examples/<language>x20*,\n"
22110 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22111 " supported languages.\n"
22113 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22114 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
22115 " that is externally supplied.\n"
22119 "Specify viewport using coordinates and aspect ratio\n"
22123 " Device-independent routine for setting up the viewport. The viewport\n"
22124 " is chosen to be the largest with the given aspect ratio that fits\n"
22125 " within the specified region (in terms of normalized subpage\n"
22126 " coordinates). This routine is functionally equivalent to plvpor when\n"
22127 " a ``natural'' aspect ratio (0.0) is chosen. Unlike plvasp, this\n"
22128 " routine reserves no extra space at the edges for labels.\n"
22130 " Redacted form: plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22132 " This function is used in example 9.\n"
22138 "plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22142 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22143 " left-hand edge of the viewport.\n"
22145 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22146 " right-hand edge of the viewport.\n"
22148 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22149 " bottom edge of the viewport.\n"
22151 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22152 " edge of the viewport.\n"
22154 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22159 "Specify viewport using normalized subpage coordinates\n"
22163 " Device-independent routine for setting up the viewport. This defines\n"
22164 " the viewport in terms of normalized subpage coordinates which run from\n"
22165 " 0.0 to 1.0 (left to right and bottom to top) along each edge of the\n"
22166 " current subpage. Use the alternate routine plsvpa in order to create\n"
22167 " a viewport of a definite size.\n"
22169 " Redacted form: plvpor(xmin, xmax, ymin, ymax)\n"
22171 " This function is used in examples 2, 6-8, 10, 11, 15, 16, 18, 21, 23,\n"
22172 " 24, 26, 27, and 31.\n"
22178 "plvpor(xmin, xmax, ymin, ymax)\n"
22182 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22183 " left-hand edge of the viewport.\n"
22185 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22186 " right-hand edge of the viewport.\n"
22188 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22189 " bottom edge of the viewport.\n"
22191 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22192 " edge of the viewport.\n"
22196 "Select standard viewport\n"
22200 " Selects the largest viewport within the subpage that leaves a standard\n"
22201 " margin (left-hand margin of eight character heights, and a margin\n"
22202 " around the other three sides of five character heights).\n"
22204 " Redacted form: plvsta()\n"
22206 " This function is used in examples 1, 12, 14, 17, 25, and 29.\n"
22216 "Configure the transformations required for projecting a 3D surface on a 2D window\n"
22220 " Configure the transformations required for projecting a 3D surface on\n"
22221 " an existing 2D window. Those transformations (see the PLplot\n"
22222 " documentation) are done to a rectangular cuboid enclosing the 3D\n"
22223 " surface which has its limits expressed in 3D world coordinates and\n"
22224 " also normalized 3D coordinates (used for interpreting the altitude and\n"
22225 " azimuth of the viewing angle). The transformations consist of the\n"
22226 " linear transform from 3D world coordinates to normalized 3D\n"
22227 " coordinates, and the 3D rotation of normalized coordinates required to\n"
22228 " align the pole of the new 3D coordinate system with the viewing\n"
22229 " direction specified by altitude and azimuth so that x and y of the\n"
22230 " surface elements in that transformed coordinate system are the\n"
22231 " projection of the 3D surface with given viewing direction on the 2D\n"
22234 " The enclosing rectangular cuboid for the surface plot is defined by\n"
22235 " xmin, xmax, ymin, ymax, zmin and zmax in 3D world coordinates. It is\n"
22236 " mapped into the same rectangular cuboid with normalized 3D coordinate\n"
22237 " sizes of basex by basey by height so that xmin maps to -\n"
22238 " basex/2, xmax maps to basex/2, ymin maps to -\n"
22239 " basey/2, ymax maps to basey/2, zmin maps to 0 and zmax maps to height.\n"
22240 " The resulting rectangular cuboid in normalized coordinates is then\n"
22241 " viewed by an observer at altitude alt and azimuth az. This routine\n"
22242 " must be called before plbox3 or any of the 3D surface plotting\n"
22243 " routines; plmesh, plmeshc, plot3d, plot3dc, plot3dcl, plsurf3d,\n"
22244 " plsurf3dl or plfill3.\n"
22246 " Redacted form: plw3d(basex, basey, height, xmin, xmax, ymin, ymax,\n"
22247 " zmin, zmax, alt, az)\n"
22249 " This function is examples 8, 11, 18, and 21.\n"
22255 "plw3d(basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az)\n"
22259 " basex (PLFLT, input) : The normalized x coordinate size of the\n"
22260 " rectangular cuboid.\n"
22262 " basey (PLFLT, input) : The normalized y coordinate size of the\n"
22263 " rectangular cuboid.\n"
22265 " height (PLFLT, input) : The normalized z coordinate size of the\n"
22266 " rectangular cuboid.\n"
22268 " xmin (PLFLT, input) : The minimum x world coordinate of the\n"
22269 " rectangular cuboid.\n"
22271 " xmax (PLFLT, input) : The maximum x world coordinate of the\n"
22272 " rectangular cuboid.\n"
22274 " ymin (PLFLT, input) : The minimum y world coordinate of the\n"
22275 " rectangular cuboid.\n"
22277 " ymax (PLFLT, input) : The maximum y world coordinate of the\n"
22278 " rectangular cuboid.\n"
22280 " zmin (PLFLT, input) : The minimum z world coordinate of the\n"
22281 " rectangular cuboid.\n"
22283 " zmax (PLFLT, input) : The maximum z world coordinate of the\n"
22284 " rectangular cuboid.\n"
22286 " alt (PLFLT, input) : The viewing altitude in degrees above the xy\n"
22287 " plane of the rectangular cuboid in normalized coordinates.\n"
22289 " az (PLFLT, input) : The viewing azimuth in degrees of the\n"
22290 " rectangular cuboid in normalized coordinates. When az=0, the\n"
22291 " observer is looking face onto the zx plane of the rectangular\n"
22292 " cuboid in normalized coordinates, and as az is increased, the\n"
22293 " observer moves clockwise around that cuboid when viewed from above\n"
22302 " Sets the pen width.\n"
22304 " Redacted form: plwidth(width)\n"
22306 " This function is used in examples 1 and 2.\n"
22316 " width (PLFLT, input) : The desired pen width. If width is negative\n"
22317 " or the same as the previous value no action is taken. width = 0.\n"
22318 " should be interpreted as as the minimum valid pen width for the\n"
22319 " device. The interpretation of positive width values is also\n"
22320 " device dependent.\n"
22328 " Specify the window, i.e., the world coordinates of the edges of the\n"
22331 " Redacted form: plwind(xmin, xmax, ymin, ymax)\n"
22333 " This function is used in examples 1, 2, 4, 6-12, 14-16, 18, 21, 23-27,\n"
22340 "plwind(xmin, xmax, ymin, ymax)\n"
22344 " xmin (PLFLT, input) : The world x coordinate of the left-hand edge\n"
22345 " of the viewport.\n"
22347 " xmax (PLFLT, input) : The world x coordinate of the right-hand edge\n"
22348 " of the viewport.\n"
22350 " ymin (PLFLT, input) : The world y coordinate of the bottom edge of\n"
22353 " ymax (PLFLT, input) : The world y coordinate of the top edge of the\n"
22358 "Enter or leave xor mode\n"
22362 " Enter (when mode is true) or leave (when mode is false) xor mode for\n"
22363 " those drivers (e.g., the xwin driver) that support it. Enables\n"
22364 " erasing plots by drawing twice the same line, symbol, etc. If driver\n"
22365 " is not capable of xor operation it returns a status of false.\n"
22367 " Redacted form: plxormod(mode, status)\n"
22369 " This function is used in examples 1 and 20.\n"
22375 "plxormod(mode, status)\n"
22379 " mode (PLBOOL, input) : mode is true means enter xor mode and mode\n"
22380 " is false means leave xor mode.\n"
22382 " status (PLBOOL_NC_SCALAR, output) : Returned value of the status.\n"
22383 " modestatus of true (false) means driver is capable (incapable) of\n"
22388 "Plot continental outline or shapefile data in world coordinates\n"
22392 " Plots continental outlines or shapefile data in world coordinates. A\n"
22393 " demonstration of how to use this function to create different\n"
22394 " projections can be found in examples/c/x19c. PLplot is provided with\n"
22395 " basic coastal outlines and USA state borders. To use the map\n"
22396 " functionality PLplot must be compiled with the shapelib library.\n"
22397 " Shapefiles have become a popular standard for geographical data and\n"
22398 " data in this format can be easily found from a number of online\n"
22399 " sources. Shapefile data is actually provided as three or more files\n"
22400 " with the same filename, but different extensions. The .shp and .shx\n"
22401 " files are required for plotting Shapefile data with PLplot.\n"
22403 " PLplot currently supports the point, multipoint, polyline and polygon\n"
22404 " objects within shapefiles. However holes in polygons are not\n"
22405 " supported. When plmap is used the type of object is derived from the\n"
22406 " shapefile, if you wish to override the type then use one of the other\n"
22407 " plmap variants. The built in maps have line data only.\n"
22409 " Redacted form: plmap(mapform, name, minx, maxx, miny, maxy)\n"
22411 " This function is used in example 19.\n"
22417 "plmap(mapform, name, minx, maxx, miny, maxy)\n"
22421 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22422 " transform the original map data coordinates to a new coordinate\n"
22423 " system. The PLplot-supplied map data is provided as latitudes and\n"
22424 " longitudes; other Shapefile data may be provided in other\n"
22425 " coordinate systems as can be found in their .prj plain text files.\n"
22426 " For example, by using this transform we can change from a\n"
22427 " longitude, latitude coordinate to a polar stereographic\n"
22428 " projection. Initially, x[0]..[n-1] are the original x coordinates\n"
22429 " (longitudes for the PLplot-supplied data) and y[0]..y[n-1] are the\n"
22430 " corresponding y coordinates (latitudes for the PLplot supplied\n"
22431 " data). After the call to mapform(), x[] and y[] should be\n"
22432 " replaced by the corresponding plot coordinates. If no transform is\n"
22433 " desired, mapform can be replaced by NULL.\n"
22435 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22436 " the type of map plotted. This is either one of the PLplot built-in\n"
22437 " maps or the file name of a set of Shapefile files without the file\n"
22438 " extensions. For the PLplot built-in maps the possible values are:\n"
22439 " \"globe\" -- continental outlines\n"
22440 " \"usa\" -- USA and state boundaries\n"
22441 " \"cglobe\" -- continental outlines and countries\n"
22442 " \"usaglobe\" -- USA, state boundaries and continental outlines\n"
22445 " minx (PLFLT, input) : The minimum x value of map elements to be\n"
22446 " drawn. The units must match the shapefile (built in maps are\n"
22447 " degrees lat/lon). Objects in the file which do not encroach on the\n"
22448 " box defined by minx, maxx, miny, maxy will not be rendered. But\n"
22449 " note this is simply an optimisation, not a clipping so for objects\n"
22450 " with some points inside the box and some points outside the box\n"
22451 " all the points will be rendered. These parameters also define\n"
22452 " latitude and longitude wrapping for shapefiles using these units.\n"
22453 " Longitude points will be wrapped by integer multiples of 360\n"
22454 " degrees to place them in the box. This allows the same data to be\n"
22455 " used on plots from -180-180 or 0-360 longitude ranges. In fact if\n"
22456 " you plot from -180-540 you will get two cycles of data drawn. The\n"
22457 " value of minx must be less than the value of maxx. Passing in a\n"
22458 " nan, max/-max floating point number or +/-infinity will case the\n"
22459 " bounding box from the shapefile to be used.\n"
22461 " maxx (PLFLT, input) : The maximum x value of map elements to be\n"
22462 " drawn - see minx.\n"
22464 " miny (PLFLT, input) : The minimum y value of map elements to be\n"
22465 " drawn - see minx.\n"
22467 " maxy (PLFLT, input) : The maximum y value of map elements to be\n"
22468 " drawn - see minx.\n"
22472 "Plot all or a subset of Shapefile data using lines in world coordinates\n"
22476 " Plot all or a subset of Shapefile data using lines in world\n"
22477 " coordinates. Our 19th standard example demonstrates how to use this\n"
22478 " function. This function plots data from a Shapefile using lines as in\n"
22479 " plmap, however it also has the option of also only drawing specified\n"
22480 " elements from the Shapefile. The vector of indices of the required\n"
22481 " elements are passed as a function argument. The Shapefile data should\n"
22482 " include a metadata file (extension.dbf) listing all items within the\n"
22483 " Shapefile. This file can be opened by most popular spreadsheet\n"
22484 " programs and can be used to decide which indices to pass to this\n"
22487 " Redacted form: plmapline(mapform, name, minx, maxx, miny, maxy,\n"
22490 " This function is used in example 19.\n"
22496 "plmapline(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22500 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22501 " transform the coordinates given in the shapefile into a plot\n"
22502 " coordinate system. By using this transform, we can change from a\n"
22503 " longitude, latitude coordinate to a polar stereographic project,\n"
22504 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22505 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22506 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22507 " plot coordinates. If no transform is desired, mapform can be\n"
22508 " replaced by NULL.\n"
22510 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22511 " the file name of a set of Shapefile files without the file\n"
22514 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22515 " be in the same units as used by the Shapefile. You could use a\n"
22516 " very large negative number to plot everything, but you can improve\n"
22517 " performance by limiting the area drawn. The units must match those\n"
22518 " of the Shapefile projection, which may be for example longitude or\n"
22519 " distance. The value of minx must be less than the value of maxx.\n"
22521 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22522 " use a very large number to plot everything, but you can improve\n"
22523 " performance by limiting the area drawn.\n"
22525 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22526 " be in the same units as used by the Shapefile. You could use a\n"
22527 " very large negative number to plot everything, but you can improve\n"
22528 " performance by limiting the area drawn. The units must match those\n"
22529 " of the Shapefile projection, which may be for example latitude or\n"
22530 " distance. The value of miny must be less than the value of maxy.\n"
22532 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22533 " use a very large number to plot everything, but you can improve\n"
22534 " performance by limiting the area drawn.\n"
22536 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22537 " zero-based indices of the Shapefile elements which will be drawn.\n"
22539 " plotentries to NULL will plot all elements of the Shapefile.\n"
22541 " nplotentries (PLINT, input) : The number of items in\n"
22542 " plotentries. Ignored if\n"
22543 " plotentries is NULL.\n"
22547 "Plot all or a subset of Shapefile data using strings or points in world coordinates\n"
22551 " As per plmapline, however the items are plotted as strings or points\n"
22552 " in the same way as plstring.\n"
22554 " Redacted form: plmapstring(mapform, name, string, minx, maxx, miny,\n"
22555 " maxy, plotentries)\n"
22557 " This function is not used in any examples.\n"
22563 "plmapstring(mapform, name, string, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22567 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22568 " transform the coordinates given in the shapefile into a plot\n"
22569 " coordinate system. By using this transform, we can change from a\n"
22570 " longitude, latitude coordinate to a polar stereographic project,\n"
22571 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22572 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22573 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22574 " plot coordinates. If no transform is desired, mapform can be\n"
22575 " replaced by NULL.\n"
22577 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22578 " the file name of a set of Shapefile files without the file\n"
22581 " string (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
22584 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22585 " be in the same units as used by the Shapefile. You could use a\n"
22586 " very large negative number to plot everything, but you can improve\n"
22587 " performance by limiting the area drawn. The units must match those\n"
22588 " of the Shapefile projection, which may be for example longitude or\n"
22589 " distance. The value of minx must be less than the value of maxx.\n"
22591 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22592 " use a very large number to plot everything, but you can improve\n"
22593 " performance by limiting the area drawn.\n"
22595 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22596 " be in the same units as used by the Shapefile. You could use a\n"
22597 " very large negative number to plot everything, but you can improve\n"
22598 " performance by limiting the area drawn. The units must match those\n"
22599 " of the Shapefile projection, which may be for example latitude or\n"
22600 " distance. The value of miny must be less than the value of maxy.\n"
22602 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22603 " use a very large number to plot everything, but you can improve\n"
22604 " performance by limiting the area drawn.\n"
22606 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22607 " zero-based indices of the Shapefile elements which will be drawn.\n"
22609 " plotentries to NULL will plot all elements of the Shapefile.\n"
22611 " nplotentries (PLINT, input) : The number of items in\n"
22612 " plotentries. Ignored if\n"
22613 " plotentries is NULL.\n"
22617 "Draw text at points defined by Shapefile data in world coordinates\n"
22621 " As per plmapline, however the items are plotted as text in the same\n"
22622 " way as plptex.\n"
22624 " Redacted form: plmaptex(mapform, name, dx, dy, just, text, minx, maxx,\n"
22625 " miny, maxy, plotentry)\n"
22627 " This function is used in example 19.\n"
22633 "plmaptex(mapform, name, dx, dy, just, text, minx, maxx, miny, maxy, plotentry)\n"
22637 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22638 " transform the coordinates given in the shapefile into a plot\n"
22639 " coordinate system. By using this transform, we can change from a\n"
22640 " longitude, latitude coordinate to a polar stereographic project,\n"
22641 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22642 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22643 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22644 " plot coordinates. If no transform is desired, mapform can be\n"
22645 " replaced by NULL.\n"
22647 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22648 " the file name of a set of Shapefile files without the file\n"
22651 " dx (PLFLT, input) : Used to define the slope of the texts which is\n"
22654 " dy (PLFLT, input) : Used to define the slope of the texts which is\n"
22657 " just (PLFLT, input) : Set the justification of the text. The value\n"
22658 " given will be the fraction of the distance along the string that\n"
22659 " sits at the given point. 0.0 gives left aligned text, 0.5 gives\n"
22660 " centralized text and 1.0 gives right aligned text.\n"
22662 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be drawn.\n"
22664 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22665 " be in the same units as used by the Shapefile. You could use a\n"
22666 " very large negative number to plot everything, but you can improve\n"
22667 " performance by limiting the area drawn. The units must match those\n"
22668 " of the Shapefile projection, which may be for example longitude or\n"
22669 " distance. The value of minx must be less than the value of maxx.\n"
22671 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22672 " use a very large number to plot everything, but you can improve\n"
22673 " performance by limiting the area drawn.\n"
22675 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22676 " be in the same units as used by the Shapefile. You could use a\n"
22677 " very large negative number to plot everything, but you can improve\n"
22678 " performance by limiting the area drawn. The units must match those\n"
22679 " of the Shapefile projection, which may be for example latitude or\n"
22680 " distance. The value of miny must be less than the value of maxy.\n"
22682 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22683 " use a very large number to plot everything, but you can improve\n"
22684 " performance by limiting the area drawn.\n"
22686 " plotentry (PLINT, input) : An integer indicating which text string\n"
22687 " of the Shapefile (zero indexed) will be drawn.\n"
22691 "Plot all or a subset of Shapefile data, filling the polygons\n"
22695 " As per plmapline, however the items are filled in the same way as\n"
22698 " Redacted form: plmapfill(mapform, name, minx, maxx, miny, maxy,\n"
22701 " This function is used in example 19.\n"
22707 "plmapfill(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22711 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22712 " transform the coordinates given in the shapefile into a plot\n"
22713 " coordinate system. By using this transform, we can change from a\n"
22714 " longitude, latitude coordinate to a polar stereographic project,\n"
22715 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22716 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22717 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22718 " plot coordinates. If no transform is desired, mapform can be\n"
22719 " replaced by NULL.\n"
22721 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22722 " the file name of a set of Shapefile files without the file\n"
22725 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22726 " be in the same units as used by the Shapefile. You could use a\n"
22727 " very large negative number to plot everything, but you can improve\n"
22728 " performance by limiting the area drawn. The units must match those\n"
22729 " of the Shapefile projection, which may be for example longitude or\n"
22730 " distance. The value of minx must be less than the value of maxx.\n"
22732 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22733 " use a very large number to plot everything, but you can improve\n"
22734 " performance by limiting the area drawn.\n"
22736 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22737 " be in the same units as used by the Shapefile. You could use a\n"
22738 " very large negative number to plot everything, but you can improve\n"
22739 " performance by limiting the area drawn. The units must match those\n"
22740 " of the Shapefile projection, which may be for example latitude or\n"
22741 " distance. The value of miny must be less than the value of maxy.\n"
22743 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22744 " use a very large number to plot everything, but you can improve\n"
22745 " performance by limiting the area drawn.\n"
22747 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22748 " zero-based indices of the Shapefile elements which will be drawn.\n"
22750 " plotentries to NULL will plot all elements of the Shapefile.\n"
22752 " nplotentries (PLINT, input) : The number of items in\n"
22753 " plotentries. Ignored if\n"
22754 " plotentries is NULL.\n"
22758 "Plot latitude and longitude lines\n"
22762 " Displays latitude and longitude on the current plot. The lines are\n"
22763 " plotted in the current color and line style.\n"
22765 " Redacted form: plmeridians(mapform, dlong, dlat, minlong, maxlong,\n"
22766 " minlat, maxlat)\n"
22768 " This function is used in example 19.\n"
22774 "plmeridians(mapform, dlong, dlat, minlong, maxlong, minlat, maxlat)\n"
22778 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22779 " transform the coordinate longitudes and latitudes to a plot\n"
22780 " coordinate system. By using this transform, we can change from a\n"
22781 " longitude, latitude coordinate to a polar stereographic project,\n"
22782 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22783 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22784 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22785 " plot coordinates. If no transform is desired, mapform can be\n"
22786 " replaced by NULL.\n"
22788 " dlong (PLFLT, input) : The interval in degrees at which the\n"
22789 " longitude lines are to be plotted.\n"
22791 " dlat (PLFLT, input) : The interval in degrees at which the latitude\n"
22792 " lines are to be plotted.\n"
22794 " minlong (PLFLT, input) : The value of the longitude on the left\n"
22795 " side of the plot. The value of minlong must be less than the value\n"
22796 " of maxlong, and the quantity maxlong-minlong must be less than or\n"
22799 " maxlong (PLFLT, input) : The value of the longitude on the right\n"
22800 " side of the plot.\n"
22802 " minlat (PLFLT, input) : The minimum latitude to be plotted on the\n"
22803 " background. One can always use -90.0 as the boundary outside the\n"
22804 " plot window will be automatically eliminated. However, the\n"
22805 " program will be faster if one can reduce the size of the\n"
22806 " background plotted.\n"
22808 " maxlat (PLFLT, input) : The maximum latitudes to be plotted on the\n"
22809 " background. One can always use 90.0 as the boundary outside the\n"
22810 " plot window will be automatically eliminated.\n"
22814 "Plot a 2D matrix using cmap1 with automatic color adjustment\n"
22818 " Plot a 2D matrix using the cmap1 palette. The color scale is\n"
22819 " automatically adjusted to use the maximum and minimum values in idata\n"
22820 " as valuemin and valuemax in a call to plimagefr.\n"
22822 " Redacted form: General: plimage(idata, xmin, xmax, ymin, ymax, zmin,\n"
22823 " zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22826 " This function is used in example 20.\n"
22832 "plimage(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22836 " idata (PLFLT_MATRIX, input) : A matrix containing function values\n"
22837 " to plot. Should have dimensions of\n"
22841 " nx, ny (PLINT, input) : Dimensions of idata\n"
22843 " xmin, xmax, ymin, ymax (PLFLT, input) : The x and y index ranges\n"
22844 " are linearly transformed to these world coordinate ranges such\n"
22845 " that idata[0][0] corresponds to (xmin, ymin) and idata[nx - 1][ny\n"
22846 " - 1] corresponds to (xmax, ymax).\n"
22848 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22849 " (inclusive) will be plotted.\n"
22851 " Dxmin, Dxmax, Dymin, Dymax (PLFLT, input) : Plot only the window of\n"
22852 " points whose plot coordinates fall inside the window of (Dxmin,\n"
22853 " Dymin) to (Dxmax, Dymax).\n"
22857 "Plot a 2D matrix using cmap1\n"
22861 " Plot a 2D matrix using cmap1.\n"
22863 " Redacted form: General: plimagefr(idata, xmin, xmax, ymin, ymax, zmin,\n"
22864 " zmax, valuemin, valuemax, pltr, pltr_data)\n"
22867 " This function is used in example 20.\n"
22873 "plimagefr(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data)\n"
22877 " idata (PLFLT_MATRIX, input) : A matrix of values (intensities) to\n"
22878 " plot. Should have dimensions of\n"
22882 " nx, ny (PLINT, input) : Dimensions of idata\n"
22884 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
22885 " pltr below for how these arguments are used (only for the special case\n"
22886 " when the callback function\n"
22887 " pltr is not supplied).\n"
22889 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22890 " (inclusive) will be plotted.\n"
22892 " valuemin, valuemax (PLFLT, input) : The minimum and maximum data\n"
22893 " values to use for value to color mappings. A datum equal to or\n"
22894 " less than valuemin will be plotted with color 0.0, while a datum\n"
22895 " equal to or greater than valuemax will be plotted with color 1.0.\n"
22896 " Data between valuemin and valuemax map linearly to colors in the\n"
22897 " range (0.0-1.0).\n"
22899 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22900 " defines the transformation between the zero-based indices of the\n"
22901 " matrix idata and world coordinates. If\n"
22902 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
22903 " indices of idata are mapped to the range\n"
22905 " xmax and the y indices of idata are mapped to the range\n"
22907 " ymax.For the C case, transformation functions are provided in the\n"
22908 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
22909 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
22910 " matrices. In addition, C callback routines for the transformation\n"
22911 " can be supplied by the user such as the mypltr function in\n"
22912 " examples/c/x09c.c which provides a general linear transformation\n"
22913 " between index coordinates and world coordinates.For languages\n"
22914 " other than C you should consult the PLplot documentation for the\n"
22915 " details concerning how PLTRANSFORM_callback arguments are\n"
22916 " interfaced. However, in general, a particular pattern of\n"
22917 " callback-associated arguments such as a tr vector with 6 elements;\n"
22918 " xg and yg vectors; or xg and yg matrices are respectively\n"
22919 " interfaced to a linear-transformation routine similar to the above\n"
22920 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22921 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22922 " support native language callbacks for handling index to\n"
22923 " world-coordinate transformations. Examples of these various\n"
22924 " approaches are given in examples/<language>x09*,\n"
22925 " examples/<language>x16*, examples/<language>x20*,\n"
22926 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22927 " supported languages.\n"
22929 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22930 " information to pltr0, pltr1, pltr2, or whatever routine is\n"
22931 " externally supplied.\n"
22940 "Wait for graphics input event and translate to world coordinates.\n"
22944 " Wait for graphics input event and translate to world coordinates.\n"
22945 " Returns 0 if no translation to world coordinates is possible.\n"
22947 " This function returns 1 on success and 0 if no translation to world\n"
22948 " coordinates is possible.\n"
22950 " Redacted form: plGetCursor(gin)\n"
22952 " This function is used in examples 1 and 20.\n"
22958 "PLINT plGetCursor(gin)\n"
22962 " gin (PLGraphicsIn *, output) : Pointer to PLGraphicsIn structure\n"
22963 " which will contain the output. The structure is not allocated by\n"
22964 " the routine and must exist before the function is called.\n"
22967 { NULL, NULL, 0, NULL }
23041{0, 0, 0, 0.0, 0, 0}};
23095#define SWIGRUNTIME_DEBUG
23098#ifndef SWIG_INIT_CLIENT_DATA_TYPE
23099#define SWIG_INIT_CLIENT_DATA_TYPE void *
23121 if (!module_head) {
23134 }
while (iter!= module_head);
23145 if (init == 0)
return;
23148#ifdef SWIGRUNTIME_DEBUG
23149 printf(
"SWIG_InitializeModule: size %lu\n", (
unsigned long)
swig_module.
size);
23156#ifdef SWIGRUNTIME_DEBUG
23166#ifdef SWIGRUNTIME_DEBUG
23167 printf(
"SWIG_InitializeModule: found type %s\n", type->name);
23171#ifdef SWIGRUNTIME_DEBUG
23172 printf(
"SWIG_InitializeModule: found and overwrite type %s \n", type->name);
23181 while (cast->
type) {
23184#ifdef SWIGRUNTIME_DEBUG
23185 printf(
"SWIG_InitializeModule: look cast %s\n", cast->
type->
name);
23189#ifdef SWIGRUNTIME_DEBUG
23190 if (ret) printf(
"SWIG_InitializeModule: found cast %s\n", ret->
name);
23195#ifdef SWIGRUNTIME_DEBUG
23196 printf(
"SWIG_InitializeModule: skip old type %s\n", ret->
name);
23203#ifdef SWIGRUNTIME_DEBUG
23204 if (ocast) printf(
"SWIG_InitializeModule: skip old cast %s\n", ret->
name);
23206 if (!ocast) ret = 0;
23211#ifdef SWIGRUNTIME_DEBUG
23212 printf(
"SWIG_InitializeModule: adding cast %s\n", cast->
type->
name);
23215 type->cast->prev = cast;
23216 cast->
next = type->cast;
23227#ifdef SWIGRUNTIME_DEBUG
23228 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23233 while (cast->
type) {
23234 printf(
"SWIG_InitializeModule: cast type %s\n", cast->
type->
name);
23238 printf(
"---- Total casts: %d\n",j);
23240 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23253 static int init_run = 0;
23255 if (init_run)
return;
23266 equiv = equiv->
next;
23295 for (i = 0; constants[i].
type; ++i) {
23296 switch(constants[i].type) {
23301 obj =
SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
23308 PyDict_SetItemString(d, constants[i].
name, obj);
23321 for (i = 0; methods[i].ml_name; ++i) {
23322 const char *c = methods[i].ml_doc;
23324 c = strstr(c,
"swig_ptr: ");
23328 const char *
name = c + 10;
23329 for (j = 0; const_table[j].
type; ++j) {
23330 if (strncmp(const_table[j].
name,
name,
23331 strlen(const_table[j].
name)) == 0) {
23332 ci = &(const_table[j]);
23339 size_t shift = (ci->
ptype) - types;
23341 size_t ldoc = (c - methods[i].ml_doc);
23342 size_t lptr = strlen(ty->
name)+2*
sizeof(
void*)+2;
23343 char *ndoc = (
char*)malloc(ldoc + lptr + 10);
23346 memcpy(buff, methods[i].ml_doc, ldoc);
23348 memcpy(buff,
"swig_ptr: ", 10);
23351 methods[i].ml_doc = ndoc;
23375#if PY_VERSION_HEX >= 0x03000000
23381 PyObject *m, *d, *md, *globals;
23383#if PY_VERSION_HEX >= 0x03000000
23384 static struct PyModuleDef SWIG_module = {
23385 PyModuleDef_HEAD_INIT,
23397#if defined(SWIGPYTHON_BUILTIN)
23399 0, 0, 0, 0, 0, 0, 0
23401 static PyGetSetDef this_getset_def = {
23402 (
char *)
"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
23404 static SwigPyGetSet thisown_getset_closure = {
23408 static PyGetSetDef thisown_getset_def = {
23409 (
char *)
"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
23411 PyTypeObject *builtin_pytype;
23412 int builtin_base_count;
23415 PyGetSetDescrObject *static_getset;
23416 PyTypeObject *metatype;
23417 PyTypeObject *swigpyobject;
23419 PyObject *public_interface, *public_symbol;
23420 PyObject *this_descr;
23421 PyObject *thisown_descr;
23422 PyObject *self = 0;
23425 (void)builtin_pytype;
23426 (void)builtin_base_count;
23427 (void)builtin_basetype;
23429 (void)static_getset;
23433 metatype = SwigPyObjectType();
23443#ifndef SWIGPYTHON_BUILTIN
23450#if PY_VERSION_HEX >= 0x03000000
23451 m = PyModule_Create(&SWIG_module);
23456 md = d = PyModule_GetDict(m);
23461#ifdef SWIGPYTHON_BUILTIN
23465 assert(SwigPyObject_stype);
23468 SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
23469 SwigPyObject_clientdata.
pytype = swigpyobject;
23470 }
else if (swigpyobject->tp_basicsize != cd->
pytype->tp_basicsize) {
23471 PyErr_SetString(PyExc_RuntimeError,
"Import error: attempted to load two incompatible swig-generated modules.");
23472# if PY_VERSION_HEX >= 0x03000000
23485 (void)thisown_descr;
23487 public_interface = PyList_New(0);
23489 (void)public_symbol;
23491 PyDict_SetItemString(md,
"__all__", public_interface);
23494 SwigPyBuiltin_AddPublicSymbol(public_interface,
SwigMethods[i].ml_name);
23689#if PY_VERSION_HEX >= 0x03000000
void plSetUsage(PLCHAR_VECTOR program_string, PLCHAR_VECTOR usage_string)
void pltr2(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void pltr1(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void pltr0(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer PL_UNUSED(pltr_data))
void plsxwin(PLINT window_id)
static PLFLT value(double n1, double n2, double hue)
void plMinMax2dGrid(PLFLT_MATRIX f, PLINT nx, PLINT ny, PLFLT *fnmax, PLFLT *fnmin)
PLINT plGetCursor(PLGraphicsIn *plg)
#define pl_setcontlabelformat
#define pl_setcontlabelparam
SWIGINTERN PyObject * _wrap_plstransform(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata)
SWIGINTERN PyObject * _wrap_plgcol0a(PyObject *self, PyObject *args)
SWIGRUNTIME swig_module_info * SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata))
SWIGINTERN PyObject * _wrap_plsxwin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgchr(PyObject *self, PyObject *args)
SWIGINTERNINLINE PyObject * SWIG_From_int(int value)
SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plcolorbar(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstripc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_type_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plshade(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plhlsrgb(PyObject *self, PyObject *args)
static swig_cast_info * swig_cast_initial[]
SWIGINTERN int swig_varlink_setattr(PyObject *o, char *n, PyObject *p)
SWIGINTERN PyObject * _wrap_plgra(PyObject *self, PyObject *args)
static int interpreter_counter
SWIGINTERN PyObject * _wrap_plvpas(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiori(PyObject *self, PyObject *args)
#define SWIG_MangledTypeQuery(name)
SWIGINTERN PyObject * _wrap_plSetUsage(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plssub(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmaptex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiplt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscolbg(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dY_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plResetOpts(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plshades(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdimap(PyObject *self, PyObject *args)
static PyObject * Swig_This_global
SWIGRUNTIME int SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
SWIGINTERN int SWIG_AsVal_double(PyObject *obj, double *val)
static swig_cast_info _swigc__p_PLcGrid2[]
SWIGINTERN PyObject * _wrap_plerrx(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plprec(PyObject *self, PyObject *args)
SWIGINTERN Py_ssize_t SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
static swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void
#define SWIG_TypeQuery(name)
PLFLT do_f2eval_callback(PLINT x, PLINT y, PLPointer data)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_keysym_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_string_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0n(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfill3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_subwindow_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsurf3d(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfont(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvsta(PyObject *self, PyObject *args)
#define SWIG_CheckState(r)
static swig_cast_info _swigc__p_f_double_double__int[]
void cleanup_mapform(void)
void cleanup_PLPointer(void)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pX_set(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_int[]
SWIGINTERN PyObject * _wrap_plschr(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_keysym_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstart(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgvpw(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_TypeEquiv(const char *nb, const char *tb)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dY_get(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_AddErrMesg(const char *mesg, int infront)
SWIGRUNTIME PyObject * SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
SWIGINTERN void SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[])
pltr_func marshal_pltr(PyObject *input)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_button_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_string_get(PyObject *self, PyObject *args)
#define myArray_ContiguousFromObject
SWIGRUNTIME PyObject * SwigPyObject_next(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgyax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plend(PyObject *self, PyObject *args)
#define SWIG_POINTER_IMPLICIT_CONV
static swig_cast_info _swigc__p_double[]
#define SWIGTYPE_p_PLGraphicsIn
SWIGINTERN PyObject * _wrap_plscmap1la(PyObject *self, PyObject *args)
void do_mapform_callback(PLINT n, PLFLT *x, PLFLT *y)
SWIGRUNTIME PyObject * SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plbin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcol1(PyObject *self, PyObject *args)
struct swig_cast_info swig_cast_info
SWIGINTERN PyObject * _wrap_plpoin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltext(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcalc_world(PyObject *self, PyObject *args)
void(* label_func)(PLINT, PLFLT, char *, PLINT, PLPointer)
SWIGRUNTIME int SWIG_TypeNameComp(const char *f1, const char *l1, const char *f2, const char *l2)
SWIGRUNTIME PyObject * SwigPyObject_hex(SwigPyObject *v)
#define SWIG_Python_ConvertPtr(obj, pptr, type, flags)
SWIGRUNTIME void SwigPyObject_dealloc(PyObject *v)
SWIGRUNTIME PyTypeObject * SwigPyPacked_TypeOnce(void)
#define SWIG_PYTHON_THREAD_END_BLOCK
SWIGINTERN PyObject * _wrap_plClearOpts(PyObject *self, PyObject *args)
SWIGINTERN size_t SWIG_strnlen(const char *s, size_t maxlen)
SWIGINTERN PyObject * _wrap_plgradient(PyObject *self, PyObject *args)
#define SWIG_RuntimeError
SWIGRUNTIME PyObject * SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
SWIGINTERN PyObject * _wrap_pladv(PyObject *self, PyObject *args)
void(* mapform_func)(PLINT, PLFLT *, PLFLT *)
SWIGRUNTIME PyObject * SwigPyObject_append(PyObject *v, PyObject *next)
SWIGINTERN PyObject * _wrap_plsdev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgxax(PyObject *self, PyObject *args)
#define SWIGPY_CAPSULE_ATTR_NAME
SWIGINTERN PyObject * _wrap_plsfont(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SWIG_Python_newvarlink(void)
SWIGINTERN PyObject * _wrap_plsdidev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsmema(PyObject *self, PyObject *args)
struct swig_varlinkobject swig_varlinkobject
SWIGINTERN PyObject * _wrap_pl_setcontlabelformat(PyObject *self, PyObject *args)
#define SWIG_NewClientData(obj)
SWIGINTERN PyObject * _wrap_plot3d(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plptex3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dX_set(PyObject *self, PyObject *args)
void(* pltr_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
SWIGINTERN PyObject * _wrap_plspal1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plwidth(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgpage(PyObject *self, PyObject *args)
mapform_func marshal_mapform(PyObject *input)
static swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void[]
SWIGINTERN PyObject * _wrap_plline(PyObject *self, PyObject *args)
SWIGINTERNINLINE int SWIG_CanCastAsInteger(double *d, double min, double max)
SWIGINTERN int SWIG_AsVal_unsigned_SS_long(PyObject *obj, unsigned long *val)
SWIGINTERN PyObject * _wrap_plscmap1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvasp(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0a(PyObject *self, PyObject *args)
#define SWIG_as_voidptrptr(a)
SWIGINTERN PyObject * _wrap_plsmaj(PyObject *self, PyObject *args)
#define SWIG_RUNTIME_VERSION
SWIGINTERN PyObject * _wrap_plscolor(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plrgbhls(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE const char * SwigPyObject_GetDesc(PyObject *self)
SWIGINTERN PyObject * _wrap_plssym(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_own(PyObject *v, PyObject *args)
SWIGINTERN PyObject * _wrap_plptex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstar(PyObject *self, PyObject *args)
#define SWIG_POINTER_NOSHADOW
SWIGINTERN PyObject * _wrap_plwind(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeClientData(swig_type_info *ti, void *clientdata)
SWIGINTERN PyObject * _wrap_plstyl(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name)
SWIGINTERN void SWIG_Python_addvarlink(PyObject *p, const char *name, PyObject *(*get_attr)(void), int(*set_attr)(PyObject *p))
SWIGINTERN PyObject * _wrap_plend1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_acquire(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgcompression(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsmin(PyObject *self, PyObject *args)
static PyMethodDef swigobject_methods[]
SWIGRUNTIME char * SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
SWIGINTERN PyObject * _wrap_plgcmap1_range(PyObject *self, PyObject *args)
void cleanup_PLcGrid1(void)
SWIGRUNTIME PyObject * SWIG_Python_TypeCache(void)
SWIGINTERN PyObject * _wrap_plgcol0(PyObject *self, PyObject *args)
#define SWIG_InternalNewPointerObj(ptr, type, flags)
SWIGINTERN PyObject * _wrap_plscmap1_range(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscol0a(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_long(SwigPyObject *v)
#define SWIG_exception_fail(code, msg)
SWIGINTERN PyObject * _wrap_plOptUsage(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plarc(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void(void)
SWIGINTERN PyObject * _wrap_plsfam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr2(PyObject *self, PyObject *args)
void do_label_callback(PLINT axis, PLFLT value, char *string, PLINT len, PLPointer data)
static swig_cast_info _swigc__p_f_int_p_double_p_double__void[]
SWIGINTERN PyObject * _wrap_plscmap1l(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_state_set(PyObject *self, PyObject *args)
#define SWIG_AttributeError
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pY_get(PyObject *self, PyObject *args)
SWIGRUNTIME const char * SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_state_get(PyObject *self, PyObject *args)
static swig_module_info swig_module
SWIGINTERN PyObject * _wrap_plsvpa(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgvpd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr1(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_double
SWIGINTERN PyObject * _wrap_plgdev(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_TypeErrorOccurred(PyObject *obj)
SWIGRUNTIME void SWIG_Python_DestroyModule(PyObject *obj)
#define SWIG_SetModule(clientdata, pointer)
SWIGINTERN PyObject * _wrap_plstripd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plw3d(PyObject *self, PyObject *args)
SWIGRUNTIME SwigPyClientData * SwigPyClientData_New(PyObject *obj)
SWIGINTERN PyObject * swig_varlink_str(PyObject *o)
SWIGINTERN PyTypeObject * swig_varlink_type(void)
SWIGINTERN PyObject * _wrap_pllab(PyObject *self, PyObject *args)
#define SWIG_INIT_CLIENT_DATA_TYPE
SWIGINTERN PyObject * _wrap_plcpstrm(PyObject *self, PyObject *args)
#define SWIGUNUSEDPARM(p)
SWIGINTERN PyObject * _wrap_plvpor(PyObject *self, PyObject *args)
PLPointer marshal_PLPointer(PyObject *input, int isimg)
#define SWIG_POINTER_RELEASE
SWIGINTERN PyObject * _wrap_plstring3(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr)
#define SWIG_as_voidptr(a)
SWIGINTERN swig_type_info * SWIG_pchar_descriptor(void)
static swig_const_info swig_const_table[]
SWIGINTERN PyObject * SwigPyObject_disown(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plscol0(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE int SwigPyPacked_Check(PyObject *op)
static swig_type_info _swigt__p_p_char
#define SWIG_Python_CallFunctor(functor, obj)
SWIGINTERN PyObject * _wrap_plmapline(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata)
static swig_type_info _swigt__p_p_double
SWIGINTERN PyObject * _wrap_plgfnam(PyObject *self, PyObject *args)
SWIGRUNTIME int SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
#define SWIG_POINTER_CLEAR
#define SWIG_ConvertPtr(obj, pptr, type, flags)
SWIGRUNTIME int SWIG_TypeCmp(const char *nb, const char *tb)
SWIGRUNTIME const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz)
struct swig_const_info swig_const_info
SWIGINTERN PyObject * _wrap_plpsty(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbox3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plimage(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_Python_CheckNoKeywords(PyObject *kwargs, const char *name)
SWIGINTERN PyObject * _wrap_plmesh(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plszax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plinit(PyObject *self, PyObject *args)
static PyObject * Swig_Globals_global
SWIGINTERN PyObject * _wrap_plpoly3(PyObject *self, PyObject *args)
void *(* swig_converter_func)(void *, int *)
SWIGINTERN PyObject * _wrap_plsvect(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmapfill(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyPacked_repr(SwigPyPacked *v)
SWIGINTERN PyObject * _wrap_plsetopt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0(PyObject *self, PyObject *args)
#define SWIG_newvarlink()
SWIGRUNTIME void SWIG_Python_RaiseOrModifyTypeError(const char *message)
SWIGRUNTIME swig_type_info * SWIG_Python_TypeQuery(const char *type)
PLFLT(* f2eval_func)(PLINT, PLINT, PLPointer)
SWIGINTERN const char * SWIG_PyUnicode_AsUTF8AndSize(PyObject *str, Py_ssize_t *psize, PyObject **pbytes)
SWIGINTERN PyObject * _wrap_plparseopts(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wX_get(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_char[]
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wY_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pljoin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfill(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void
PLINT(* defined_func)(PLFLT, PLFLT)
SWIGINTERN PyObject * _wrap_plmtex3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap1a(PyObject *self, PyObject *args)
void cleanup_PLcGrid2(void)
static PyObject * Swig_TypeCache_global
SWIGINTERN PyObject * _wrap_plglevel(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_p_double[]
SWIGRUNTIMEINLINE PyObject * SWIG_Python_ExceptionType(swig_type_info *desc)
SWIGINTERN PyObject * _wrap_plgriddata(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_AsVal_unsigned_SS_int(PyObject *obj, unsigned int *val)
SWIGRUNTIMEINLINE int SwigPyObject_Check(PyObject *op)
SWIGINTERN PyObject * _wrap_plpath(PyObject *self, PyObject *args)
SWIGINTERN void SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj)
SWIGINTERN int SWIG_AsVal_char(PyObject *obj, char *val)
SWIGINTERN PyObject * _wrap_plot3dcl(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_MangledTypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name)
struct swig_globalvar swig_globalvar
PyArrayObject * myIntArray_ContiguousFromObject(PyObject *in, int type, int mindims, int maxdims)
#define SWIGPY_CAPSULE_NAME
SWIGRUNTIME void * SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags)
SWIGRUNTIME void SWIG_Python_AddErrorMsg(const char *mesg)
SWIGINTERNINLINE PyObject * SWIG_FromCharPtrAndSize(const char *carray, size_t size)
SWIGRUNTIME const char * SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name)
#define SWIG_NewPointerObj(ptr, type, flags)
SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info *swig_module)
SWIGINTERN PyObject * _wrap_plgspa(PyObject *self, PyObject *args)
ct_func marshal_ct(PyObject *input)
void(* ct_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
SWIGINTERN void SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj)
SWIGINTERN PyObject * _wrap_plsesc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plline3(PyObject *self, PyObject *args)
#define SWIG_POINTER_NO_NULL
#define SWIG_Python_str_FromFormat
#define SWIG_InstallConstants(d, constants)
struct swig_type_info *(* swig_dycast_func)(void **)
SWIGINTERN PyObject * _wrap_pllegend(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsxax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfci(PyObject *self, PyObject *args)
static PyMethodDef SwigMethods[]
SWIGINTERN PyObject * SWIG_Python_AppendOutput(PyObject *result, PyObject *obj, int is_void)
#define SWIG_NullReferenceError
SWIGRUNTIME PyTypeObject * SwigPyPacked_type(void)
SWIGRUNTIMEINLINE const char * SWIG_TypeName(const swig_type_info *ty)
SWIGINTERN PyObject * _wrap_pleop(PyObject *self, PyObject *args)
SWIGINTERNINLINE PyObject * SWIG_From_unsigned_SS_int(unsigned int value)
void do_ct_callback(PLFLT x, PLFLT y, PLFLT *xt, PLFLT *yt, PLPointer data)
#define SWIG_POINTER_DISOWN
SWIGINTERN PyObject * _wrap_PLGraphicsIn_button_set(PyObject *self, PyObject *args)
#define SWIG_STATIC_POINTER(var)
struct swig_type_info swig_type_info
PyObject * python_mapform
SWIGINTERN PyObject * _wrap_plgdidev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgstrm(PyObject *self, PyObject *args)
SWIGINTERN PyObject * swig_varlink_repr(PyObject *SWIGUNUSEDPARM(v))
SWIGRUNTIME char * SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz)
static swig_type_info _swigt__p_PLGraphicsIn
SWIGINTERN PyObject * _wrap_plflush(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgzax(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_f_double_double__int
SWIGINTERN PyObject * _wrap_plcont(PyObject *self, PyObject *args)
SWIGRUNTIME char * SWIG_PackData(char *c, void *ptr, size_t sz)
SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty)
SWIGINTERN void SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg)
SWIGINTERN PyObject * _wrap_plsori(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstripa(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plrandd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsym(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_format(const char *fmt, SwigPyObject *v)
SWIGINTERN PyObject * _wrap_plbop(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags)
SWIGINTERN PyObject * _wrap_plgver(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsfnam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmapstring(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plreplot(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvect(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgdiplt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pllsty(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_ArgFail(int argnum)
#define SWIG_DelNewMask(r)
SWIGRUNTIME swig_type_info * SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
SWIGINTERN PyObject * _wrap_plpoin3(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own)
SWIGINTERN PyObject * _wrap_plimagefr(PyObject *self, PyObject *args)
#define SWIG_NewPackedObj(ptr, sz, type)
static swig_cast_info _swigc__p_PLcGrid[]
SWIGINTERN PyObject * _wrap_plot3dc(PyObject *self, PyObject *args)
PLcGrid * marshal_PLcGrid1(PyObject *input, int isimg)
#define SWIG_GetModule(clientdata)
SWIGINTERN PyObject * _wrap_plsstrm(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_unsigned_int[]
static swig_type_info _swigt__p_int
SWIGINTERN PyObject * PLGraphicsIn_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args)
SWIGINTERN PyObject * _wrap_plGetCursor(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspage(PyObject *self, PyObject *args)
SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct(const swig_type_info *from, swig_type_info *ty)
SWIGRUNTIME void SWIG_PropagateClientData(void)
SWIGINTERN PyObject * _wrap_plscolbga(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void[]
SWIGRUNTIME PyObject * SwigPyPacked_str(SwigPyPacked *v)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pX_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltimefmt(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
SWIGRUNTIME const char * SWIG_TypePrettyName(const swig_type_info *type)
SWIGINTERN PyObject * _wrap_plsmem(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmkstrm(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcol0(PyObject *self, PyObject *args)
SWIGINTERN void SWIG_Python_FixMethods(PyMethodDef *methods, const swig_const_info *const_table, swig_type_info **types, swig_type_info **types_initial)
SWIGRUNTIMEINLINE PyObject * SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type)
SWIGRUNTIME swig_cast_info * SWIG_TypeCheck(const char *c, swig_type_info *ty)
#define SWIG_ERROR_RELEASE_NOT_OWNED
SWIGRUNTIME PyObject * SWIG_This(void)
SWIGINTERN PyObject * _wrap_plenv(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsurf3dl(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_Python_TypeError(const char *type, PyObject *obj)
SWIGINTERN int SWIG_AsVal_int(PyObject *obj, int *val)
SWIGINTERN PyObject * _wrap_plenv0(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_PLcGrid
#define SWIG_BUILTIN_TP_INIT
static swig_type_info _swigt__p_unsigned_int
#define SWIG_CAST_NEW_MEMORY
SWIGINTERN void swig_varlink_dealloc(PyObject *o)
SWIGRUNTIME PyObject * SwigPyObject_repr(SwigPyObject *v)
static swig_type_info _swigt__p_f_int_p_double_p_double__void
#define SWIGTYPE_p_unsigned_int
SWIGINTERN PyObject * _wrap_plfont(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_AsVal_long(PyObject *obj, long *val)
SWIGINTERN int SWIG_AsCharArray(PyObject *obj, char *val, size_t size)
SWIGINTERN PyObject * _wrap_plslabelfunc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pY_set(PyObject *self, PyObject *args)
struct swig_module_info swig_module_info
SWIGINTERN PyObject * _wrap_plgcolbg(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SWIG_Python_ErrorType(int code)
SWIGRUNTIME void SwigPyClientData_Del(SwigPyClientData *data)
SWIGRUNTIME SwigPyObject * SWIG_Python_GetSwigThis(PyObject *pyobj)
static swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void
void do_pltr_callback(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer data)
SWIGINTERN PyObject * _wrap_plscompression(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmeridians(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dX_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsfci(PyObject *self, PyObject *args)
static swig_type_info * swig_type_initial[]
SWIGINTERN PyObject * _wrap_plerry(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plxormod(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plclear(PyObject *self, PyObject *args)
SWIGRUNTIME void SwigPyPacked_dealloc(PyObject *v)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_subwindow_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgcolbga(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SWIG_Python_str_FromChar(const char *c)
#define PySequence_Fast_GET_ITEM
SWIGINTERN PyObject * _wrap_plmap(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
SWIGINTERN PyObject * _wrap_plhist(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_PLGraphicsIn[]
SWIGINTERN PyObject * _wrap_pltr0(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit(swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plsyax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plpat(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmeshc(PyObject *self, PyObject *args)
PLcGrid2 * marshal_PLcGrid2(PyObject *input, int isimg)
SWIGINTERN PyObject * _wrap_plfamadv(PyObject *self, PyObject *args)
SWIGINTERN PyObject * swig_varlink_getattr(PyObject *o, char *n)
static swig_cast_info _swigc__p_p_char[]
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wY_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plMinMax2dGrid(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plseed(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmtex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfontld(PyObject *self, PyObject *args)
#define SWIG_DivisionByZero
SWIGINTERN PyObject * _wrap_delete_PLGraphicsIn(PyObject *self, PyObject *args)
#define SWIGTYPE_p_double
static swig_type_info _swigt__p_char
SWIGINTERN PyObject * _wrap_new_PLGraphicsIn(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wX_set(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_type(void)
#define SWIG_OverflowError
SWIGINTERN PyObject * _wrap_plconfigtime(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_TypeOnce(void)
SWIGINTERN PyObject * _wrap_plstring(PyObject *self, PyObject *args)
void(* fill_func)(PLINT, const PLFLT *, const PLFLT *)
SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject *obj, char **cptr, size_t *psize, int *alloc)
static PyObject * Swig_Capsule_global
static swig_type_info _swigt__p_PLcGrid2
SWIGINTERN PyObject * _wrap_plctime(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspause(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspal0(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_oct(SwigPyObject *v)
static swig_type_info * swig_types[15]
SWIGRUNTIME PyObject * SwigPyObject_repr2(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgdiori(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pllightsource(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void[]
SWIGINTERN PyObject * PLGraphicsIn_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args)
SWIGINTERN PyObject * SWIG_Python_InitShadowInstance(PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiplz(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbtime(PyObject *self, PyObject *args)
#define SWIG_AddNewMask(r)
SWIGINTERN PyObject * SWIG_globals(void)
SWIGINTERN PyObject * _wrap_pl_setcontlabelparam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbox(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_type_set(PyObject *self, PyObject *args)
#define SWIG_PYTHON_THREAD_BEGIN_BLOCK
SWIGINTERN PyObject * _wrap_plscmap1n(PyObject *self, PyObject *args)
enum callback_type pltr_type
SWIGINTERN PyObject * _wrap_plaxes(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_AcquirePtr(PyObject *obj, int own)
#define MY_UNBLOCK_THREADS
#define SWIGRUNTIMEINLINE
SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory)
PyObject_HEAD void * pack
struct swig_cast_info * prev
struct swig_cast_info * next
swig_converter_func converter
PyObject *(* get_attr)(void)
struct swig_globalvar * next
int(* set_attr)(PyObject *)
swig_cast_info ** cast_initial
swig_type_info ** type_initial
struct swig_module_info * next
struct swig_cast_info * cast
PyObject_HEAD swig_globalvar * vars
static tclMatrixXtnsnDescr * tail