10#define SWIG_VERSION 0x040201
12#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
20#ifndef SWIGTEMPLATEDISAMBIGUATOR
21# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
22# define SWIGTEMPLATEDISAMBIGUATOR template
23# elif defined(__HP_aCC)
26# define SWIGTEMPLATEDISAMBIGUATOR template
28# define SWIGTEMPLATEDISAMBIGUATOR
34# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
35# define SWIGINLINE inline
44# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
45# define SWIGUNUSED __attribute__ ((__unused__))
50# define SWIGUNUSED __attribute__ ((__unused__))
56#ifndef SWIG_MSC_UNSUPPRESS_4505
58# pragma warning(disable : 4505)
64# define SWIGUNUSEDPARM(p)
66# define SWIGUNUSEDPARM(p) p SWIGUNUSED
72# define SWIGINTERN static SWIGUNUSED
76#ifndef SWIGINTERNINLINE
77# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
82# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
83# ifndef GCC_HASCLASSVISIBILITY
84# define GCC_HASCLASSVISIBILITY
90# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
91# if defined(STATIC_LINKED)
94# define SWIGEXPORT __declspec(dllexport)
97# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
98# define SWIGEXPORT __attribute__ ((visibility("default")))
107# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
108# define SWIGSTDCALL __stdcall
115#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
116# define _CRT_SECURE_NO_DEPRECATE
120#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
121# define _SCL_SECURE_NO_DEPRECATE
125#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
126# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
134#ifdef __INTEL_COMPILER
135# pragma warning disable 592
138#if defined(__cplusplus) && __cplusplus >=201103L
139# define SWIG_NULLPTR nullptr
141# define SWIG_NULLPTR NULL
153#if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
154 (defined __cplusplus && __cplusplus >= 201103L) || \
155 defined SWIG_HAVE_SNPRINTF) && \
156 !defined SWIG_NO_SNPRINTF
157# define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
158# define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
164# define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
165# define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
169#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
174#if !defined(PY_SSIZE_T_CLEAN) && !defined(SWIG_NO_PY_SSIZE_T_CLEAN)
175#define PY_SSIZE_T_CLEAN
179#pragma GCC diagnostic push
180#if defined(__cplusplus) && __cplusplus >=201703L
181#pragma GCC diagnostic ignored "-Wregister"
185#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
188#if defined(_MSC_VER) && _MSC_VER >= 1929
202#pragma GCC diagnostic pop
216#define SWIG_RUNTIME_VERSION "4"
219#ifdef SWIG_TYPE_TABLE
220# define SWIG_QUOTE_STRING(x) #x
221# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
222# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
224# define SWIG_TYPE_TABLE_NAME
237# define SWIGRUNTIME SWIGINTERN
240#ifndef SWIGRUNTIMEINLINE
241# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
245#ifndef SWIG_BUFFER_SIZE
246# define SWIG_BUFFER_SIZE 1024
250#define SWIG_POINTER_DISOWN 0x1
251#define SWIG_CAST_NEW_MEMORY 0x2
252#define SWIG_POINTER_NO_NULL 0x4
253#define SWIG_POINTER_CLEAR 0x8
254#define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
257#define SWIG_POINTER_OWN 0x1
341#define SWIG_ERROR (-1)
345#define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
347#define SWIG_IsOK(r) (r >= 0)
348#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
351#define SWIG_CASTRANKLIMIT (1 << 8)
353#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
355#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
357#define SWIG_BADOBJ (SWIG_ERROR)
358#define SWIG_OLDOBJ (SWIG_OK)
359#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
360#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
362#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
363#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
364#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
365#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
366#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
367#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
370#if defined(SWIG_CASTRANK_MODE)
371# ifndef SWIG_TypeRank
372# define SWIG_TypeRank unsigned long
374# ifndef SWIG_MAXCASTRANK
375# define SWIG_MAXCASTRANK (2)
377# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
378# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
383 return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
386# define SWIG_AddCast(r) (r)
387# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
397typedef void *(*swig_converter_func)(
void *,
int *);
439 const char *f2,
const char *l2) {
440 for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
441 while ((*f1 ==
' ') && (f1 != l1)) ++f1;
442 while ((*f2 ==
' ') && (f2 != l2)) ++f2;
443 if (*f1 != *f2)
return (*f1 > *f2) ? 1 : -1;
445 return (
int)((l1 - f1) - (l2 - f2));
455 const char* te = tb + strlen(tb);
457 while (equiv != 0 && *ne) {
458 for (nb = ne; *ne; ++ne) {
459 if (*ne ==
'|')
break;
484 if (strcmp(iter->type->name, c) == 0) {
485 if (iter == ty->
cast)
488 iter->prev->next = iter->next;
490 iter->next->prev = iter->prev;
491 iter->next = ty->
cast;
493 if (ty->
cast) ty->
cast->prev = iter;
511 if (iter->type == from) {
512 if (iter == ty->
cast)
515 iter->prev->next = iter->next;
517 iter->next->prev = iter->prev;
518 iter->next = ty->
cast;
520 if (ty->
cast) ty->
cast->prev = iter;
544 if (!ty || !ty->
dcast)
return ty;
545 while (ty && (ty->
dcast)) {
546 ty = (*ty->
dcast)(ptr);
570 if (!type)
return NULL;
571 if (type->str != NULL) {
572 const char *last_name = type->str;
574 for (s = type->str; *s; s++)
575 if (*s ==
'|') last_name = s+1;
594 if (!tc->clientdata) {
623 size_t r = iter->
size - 1;
626 size_t i = (l + r) >> 1;
627 const char *iname = iter->types[i]->name;
629 int compare = strcmp(
name, iname);
631 return iter->types[i];
632 }
else if (compare < 0) {
638 }
else if (compare > 0) {
647 }
while (iter != end);
674 for (; i < iter->size; ++i) {
676 return iter->
types[i];
679 }
while (iter != end);
691 static const char hex[17] =
"0123456789abcdef";
692 const unsigned char *u = (
unsigned char *) ptr;
693 const unsigned char *eu = u + sz;
694 for (; u != eu; ++u) {
695 unsigned char uu = *u;
696 *(c++) = hex[(uu & 0xf0) >> 4];
697 *(c++) = hex[uu & 0xf];
707 unsigned char *u = (
unsigned char *) ptr;
708 const unsigned char *eu = u + sz;
709 for (; u != eu; ++u) {
712 if ((d >=
'0') && (d <=
'9'))
713 uu = (
unsigned char)((d -
'0') << 4);
714 else if ((d >=
'a') && (d <=
'f'))
715 uu = (
unsigned char)((d - (
'a'-10)) << 4);
719 if ((d >=
'0') && (d <=
'9'))
720 uu |= (
unsigned char)(d -
'0');
721 else if ((d >=
'a') && (d <=
'f'))
722 uu |= (
unsigned char)(d - (
'a'-10));
736 if ((2*
sizeof(
void *) + 2) > bsz)
return 0;
739 if (strlen(
name) + 1 > (bsz - (r - buff)))
return 0;
747 if (strcmp(c,
"NULL") == 0) {
760 size_t lname = (
name ? strlen(
name) : 0);
761 if ((2*sz + 2 + lname) > bsz)
return 0;
765 strncpy(r,
name,lname+1);
775 if (strcmp(c,
"NULL") == 0) {
790#define SWIG_UnknownError -1
791#define SWIG_IOError -2
792#define SWIG_RuntimeError -3
793#define SWIG_IndexError -4
794#define SWIG_TypeError -5
795#define SWIG_DivisionByZero -6
796#define SWIG_OverflowError -7
797#define SWIG_SyntaxError -8
798#define SWIG_ValueError -9
799#define SWIG_SystemError -10
800#define SWIG_AttributeError -11
801#define SWIG_MemoryError -12
802#define SWIG_NullReferenceError -13
806#if PY_VERSION_HEX >= 0x03000000
808#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
809#define PyInt_Check(x) PyLong_Check(x)
810#define PyInt_AsLong(x) PyLong_AsLong(x)
811#define PyInt_FromLong(x) PyLong_FromLong(x)
812#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
813#define PyString_Check(name) PyBytes_Check(name)
814#define PyString_FromString(x) PyUnicode_FromString(x)
815#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
816#define PyString_AsString(str) PyBytes_AsString(str)
817#define PyString_Size(str) PyBytes_Size(str)
818#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
819#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
820#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
825# define Py_TYPE(op) ((op)->ob_type)
830#if PY_VERSION_HEX >= 0x03000000
831# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
833# define SWIG_Python_str_FromFormat PyString_FromFormat
841#if PY_VERSION_HEX >= 0x03030000
842# if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
844 return PyUnicode_AsUTF8AndSize(str, psize);
846 *pbytes = PyUnicode_AsUTF8String(str);
847 const char *chars = *pbytes ? PyBytes_AsString(*pbytes) : NULL;
849 *psize = PyBytes_Size(*pbytes);
855 PyString_AsStringAndSize(str, &chars, psize);
863#if PY_VERSION_HEX >= 0x03000000
864 return PyUnicode_FromString(c);
866 return PyString_FromString(c);
871# define PyObject_DEL PyObject_Del
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
912 type = PyExc_MemoryError;
915 type = PyExc_IOError;
918 type = PyExc_RuntimeError;
921 type = PyExc_IndexError;
924 type = PyExc_TypeError;
927 type = PyExc_ZeroDivisionError;
930 type = PyExc_OverflowError;
933 type = PyExc_SyntaxError;
936 type = PyExc_ValueError;
939 type = PyExc_SystemError;
942 type = PyExc_AttributeError;
945 type = PyExc_RuntimeError;
956 PyObject *traceback = 0;
958 if (PyErr_Occurred())
959 PyErr_Fetch(&type, &
value, &traceback);
961 PyObject *old_str = PyObject_Str(
value);
962 PyObject *bytes = NULL;
967 PyErr_Format(type,
"%s %s", tmp, mesg);
969 PyErr_Format(type,
"%s", mesg);
974 PyErr_SetString(PyExc_RuntimeError, mesg);
984 error = PyErr_Occurred();
985 return error && PyErr_GivenExceptionMatches(
error, PyExc_TypeError);
994 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
995 PyErr_Fetch(&type, &
value, &traceback);
996#if PY_VERSION_HEX >= 0x03000000
997 newvalue = PyUnicode_FromFormat(
"%S\nAdditional information:\n%s",
value, message);
999 newvalue = PyString_FromFormat(
"%s\nAdditional information:\n%s", PyString_AsString(
value), message);
1003 PyErr_Restore(type, newvalue, traceback);
1005 PyErr_Restore(type,
value, traceback);
1009 PyErr_SetString(PyExc_TypeError, message);
1013#if defined(SWIG_PYTHON_NO_THREADS)
1014# if defined(SWIG_PYTHON_THREADS)
1015# undef SWIG_PYTHON_THREADS
1018#if defined(SWIG_PYTHON_THREADS)
1019# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
1020# define SWIG_PYTHON_USE_GIL
1022# if defined(SWIG_PYTHON_USE_GIL)
1023# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1024# if PY_VERSION_HEX < 0x03070000
1025# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
1027# define SWIG_PYTHON_INITIALIZE_THREADS
1031 class SWIG_Python_Thread_Block {
1033 PyGILState_STATE state;
1035 void end() {
if (status) { PyGILState_Release(state); status =
false;} }
1036 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
1037 ~SWIG_Python_Thread_Block() { end(); }
1039 class SWIG_Python_Thread_Allow {
1041 PyThreadState *save;
1043 void end() {
if (status) { status =
false; PyEval_RestoreThread(save); }}
1044 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
1045 ~SWIG_Python_Thread_Allow() { end(); }
1047# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
1048# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
1049# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
1050# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
1052# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
1053# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
1054# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
1055# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
1058# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1059# define SWIG_PYTHON_INITIALIZE_THREADS
1061# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
1062# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1064# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
1065# define SWIG_PYTHON_THREAD_END_BLOCK
1067# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
1068# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1070# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
1071# define SWIG_PYTHON_THREAD_END_ALLOW
1075# define SWIG_PYTHON_INITIALIZE_THREADS
1076# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1077# define SWIG_PYTHON_THREAD_END_BLOCK
1078# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1079# define SWIG_PYTHON_THREAD_END_ALLOW
1095#define SWIG_PY_POINTER 4
1096#define SWIG_PY_BINARY 5
1122#if PY_VERSION_HEX < 0x02070000
1123# error "This version of SWIG only supports Python >= 2.7"
1126#if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03030000
1127# error "This version of SWIG only supports Python 3 >= 3.3"
1133#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
1134#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
1135#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
1137#ifdef SWIGPYTHON_BUILTIN
1138#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
1140#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1143#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1145#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
1146#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
1147#define swig_owntype int
1150#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1151#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1154#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1155#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1158#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1159#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
1162#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1163#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1168#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
1169#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1170#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
1172#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1173#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1174#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1175#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1176#define SWIG_fail goto fail
1186 PyErr_SetObject(errtype, obj);
1194 PyErr_SetString(errtype, msg);
1198#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1202#if defined(SWIGPYTHON_BUILTIN)
1205SwigPyBuiltin_AddPublicSymbol(PyObject *seq,
const char *key) {
1206 PyObject *s = PyString_InternFromString(key);
1207 PyList_Append(seq, s);
1213 PyDict_SetItemString(d,
name, obj);
1215 if (public_interface)
1216 SwigPyBuiltin_AddPublicSymbol(public_interface,
name);
1223 PyDict_SetItemString(d,
name, obj);
1235 }
else if (result == Py_None) {
1239 if (!PyList_Check(result)) {
1240 PyObject *o2 = result;
1241 result = PyList_New(1);
1243 PyList_SET_ITEM(result, 0, o2);
1249 PyList_Append(result,obj);
1264 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got none",
1269 if (!PyTuple_Check(args)) {
1270 if (min <= 1 && max >= 1) {
1273 for (i = 1; i <
max; ++i) {
1278 PyErr_SetString(PyExc_SystemError,
"UnpackTuple() argument list is not a tuple");
1281 Py_ssize_t l = PyTuple_GET_SIZE(args);
1283 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1286 }
else if (l >
max) {
1287 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1292 for (i = 0; i < l; ++i) {
1293 objs[i] = PyTuple_GET_ITEM(args, i);
1295 for (; l <
max; ++l) {
1307 assert(PyDict_Check(kwargs));
1308 if (PyDict_Size(kwargs) > 0) {
1309 PyErr_Format(PyExc_TypeError,
"%s() does not take keyword arguments",
name);
1317#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1324#define SWIG_STATIC_POINTER(var) var
1326#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1334#define SWIG_newvarlink() SWIG_Python_newvarlink()
1335#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
1336#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
1344 PyObject *(*get_attr)(void);
1356#if PY_VERSION_HEX >= 0x03000000
1357 return PyUnicode_InternFromString(
"<Swig global variables>");
1359 return PyString_FromString(
"<Swig global variables>");
1366#if PY_VERSION_HEX >= 0x03000000
1367 PyObject *str = PyUnicode_InternFromString(
"(");
1371 for (var = v->
vars; var; var=var->
next) {
1372 tail = PyUnicode_FromString(var->
name);
1373 joined = PyUnicode_Concat(str,
tail);
1378 tail = PyUnicode_InternFromString(
", ");
1379 joined = PyUnicode_Concat(str,
tail);
1385 tail = PyUnicode_InternFromString(
")");
1386 joined = PyUnicode_Concat(str,
tail);
1391 PyObject *str = PyString_FromString(
"(");
1393 for (var = v->
vars; var; var=var->
next) {
1394 PyString_ConcatAndDel(&str,PyString_FromString(var->
name));
1395 if (var->
next) PyString_ConcatAndDel(&str,PyString_FromString(
", "));
1397 PyString_ConcatAndDel(&str,PyString_FromString(
")"));
1417 PyObject *res = NULL;
1420 if (strcmp(var->
name,n) == 0) {
1426 if (res == NULL && !PyErr_Occurred()) {
1427 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1438 if (strcmp(var->
name,n) == 0) {
1444 if (res == 1 && !PyErr_Occurred()) {
1445 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1452 static char varlink__doc__[] =
"Swig var link object";
1453#ifndef Py_LIMITED_API
1454 static PyTypeObject varlink_type;
1455 static int type_init = 0;
1457 const PyTypeObject tmp = {
1458#if PY_VERSION_HEX >= 0x03000000
1459 PyVarObject_HEAD_INIT(NULL, 0)
1461 PyObject_HEAD_INIT(NULL)
1468#if PY_VERSION_HEX < 0x030800b4
1492 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1495#if PY_VERSION_HEX >= 0x03040000
1498#if PY_VERSION_HEX >= 0x03080000
1501#if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
1504#if PY_VERSION_HEX >= 0x030C0000
1517 if (PyType_Ready(&varlink_type) < 0)
1520 return &varlink_type;
1522 PyType_Slot slots[] = {
1528 { Py_tp_doc, (
void *)varlink__doc__ },
1531 PyType_Spec spec = {
1538 return (PyTypeObject *)PyType_FromSpec(&spec);
1549 return ((PyObject*) result);
1557 size_t size = strlen(
name)+1;
1558 gv->
name = (
char *)malloc(size);
1560 memcpy(gv->name,
name, size);
1561 gv->get_attr = get_attr;
1562 gv->set_attr = set_attr;
1589#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1590#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1592#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1594#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
1595#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
1606 PyObject *none = Py_None;
1627 int fail = data ? data->implicitconv : 0;
1629 PyErr_SetString(PyExc_TypeError,
"Implicit conversion is prohibited for explicit constructors.");
1636 PyObject *klass = data ? data->klass : 0;
1637 return (klass ? klass : PyExc_RuntimeError);
1650 Py_INCREF(data->klass);
1652 if (PyClass_Check(obj)) {
1655 data->newargs = obj;
1657 data->newraw = PyObject_GetAttrString(data->klass,
"__new__");
1659 data->newargs = PyTuple_New(1);
1660 if (data->newargs) {
1662 PyTuple_SET_ITEM(data->newargs, 0, obj);
1664 Py_DECREF(data->newraw);
1665 Py_DECREF(data->klass);
1671 data->newargs = obj;
1675 data->destroy = PyObject_GetAttrString(data->klass,
"__swig_destroy__");
1676 if (PyErr_Occurred()) {
1680 if (data->destroy) {
1681 data->delargs = !(PyCFunction_GET_FLAGS(data->destroy) & METH_O);
1685 data->implicitconv = 0;
1694 Py_XDECREF(data->klass);
1695 Py_XDECREF(data->newraw);
1696 Py_XDECREF(data->newargs);
1697 Py_XDECREF(data->destroy);
1709#ifdef SWIGPYTHON_BUILTIN
1715#ifdef SWIGPYTHON_BUILTIN
1718SwigPyObject_get___dict__(PyObject *v, PyObject *
SWIGUNUSEDPARM(args))
1723 sobj->dict = PyDict_New();
1725 Py_XINCREF(sobj->dict);
1734 return PyLong_FromVoidPtr(v->
ptr);
1740 PyObject *res = NULL;
1741 PyObject *args = PyTuple_New(1);
1746 PyTuple_SET_ITEM(args, 0, val);
1749#if PY_VERSION_HEX >= 0x03000000
1750 res = PyUnicode_Format(ofmt,args);
1752 res = PyString_Format(ofmt,args);
1779 if (repr && v->
next) {
1782# if PY_VERSION_HEX >= 0x03000000
1783 PyObject *joined = PyUnicode_Concat(repr, nrep);
1788 PyString_ConcatAndDel(&repr,nrep);
1811 return (i < j) ? -1 : ((i > j) ? 1 : 0);
1818 PyObject* res = NULL;
1819 if (!PyErr_Occurred()) {
1820 if (op != Py_EQ && op != Py_NE) {
1821 Py_INCREF(Py_NotImplemented);
1822 return Py_NotImplemented;
1832#ifdef SWIGPYTHON_BUILTIN
1837 assert(SwigPyObject_stype);
1854 PyTypeObject *op_type =
Py_TYPE(op);
1855#ifdef SWIGPYTHON_BUILTIN
1856 if (PyType_IsSubtype(op_type, target_tp))
1858 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1860 if (op_type == target_tp)
1862# ifdef Py_LIMITED_API
1864 PyObject *tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
1867 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyObject");
1871 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1885 PyObject *next = sobj->next;
1889 PyObject *destroy = data ? data->destroy : 0;
1901 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
1902 PyErr_Fetch(&type, &
value, &traceback);
1904 if (data->delargs) {
1914 PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
1915 PyObject *mself = PyCFunction_GET_SELF(destroy);
1916 res = ((*meth)(mself, v));
1919 PyErr_WriteUnraisable(destroy);
1921 PyErr_Restore(type,
value, traceback);
1925#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1928 printf(
"swig/python detected a memory leak of type '%s', no destructor found.\n", (
name ?
name :
"unknown"));
1934#ifdef SWIGPYTHON_BUILTIN
1935 Py_XDECREF(sobj->dict);
1945 PyErr_SetString(PyExc_TypeError,
"Attempt to append a non SwigPyObject");
1959 Py_INCREF(sobj->next);
1986 if (!PyArg_UnpackTuple(args,
"own", 0, 1, &val)) {
1990 PyObject *obj = PyBool_FromLong(sobj->own);
1992 if (PyObject_IsTrue(val)) {
2006 {
"own",
SwigPyObject_own, METH_VARARGS,
"returns/sets ownership of the pointer"},
2015 static char swigobject_doc[] =
"Swig object carries a C/C++ instance pointer";
2016#ifndef Py_LIMITED_API
2017 static PyNumberMethods SwigPyObject_as_number = {
2022#
if PY_VERSION_HEX < 0x03000000
2038#
if PY_VERSION_HEX < 0x03000000
2042#if PY_VERSION_HEX < 0x03000000
2048#if PY_VERSION_HEX < 0x03000000
2052#if PY_VERSION_HEX >= 0x03050000
2053 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2054#elif PY_VERSION_HEX >= 0x03000000
2055 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2057 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2061 static PyTypeObject swigpyobject_type;
2062 static int type_init = 0;
2064 const PyTypeObject tmp = {
2065#if PY_VERSION_HEX >= 0x03000000
2066 PyVarObject_HEAD_INIT(NULL, 0)
2068 PyObject_HEAD_INIT(NULL)
2075#if PY_VERSION_HEX < 0x030800b4
2082#if PY_VERSION_HEX >= 0x03000000
2088 &SwigPyObject_as_number,
2094 PyObject_GenericGetAttr,
2125#
if PY_VERSION_HEX >= 0x03040000
2128#
if PY_VERSION_HEX >= 0x03080000
2131#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2134#
if PY_VERSION_HEX >= 0x030C0000
2145 swigpyobject_type = tmp;
2147 if (PyType_Ready(&swigpyobject_type) != 0)
2150 return &swigpyobject_type;
2152 PyType_Slot slots[] = {
2155 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2156 { Py_tp_doc, (
void *)swigobject_doc },
2162 PyType_Spec spec = {
2169 return (PyTypeObject *)PyType_FromSpec(&spec);
2182#ifdef SWIGPYTHON_BUILTIN
2192 return (PyObject *)sobj;
2233 int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
2234 return s ? s : strncmp((
const char *)v->
pack, (
const char *)w->
pack, 2*v->
size);
2247 PyTypeObject* op_type =
Py_TYPE(op);
2250#ifdef Py_LIMITED_API
2252 PyObject *tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
2255 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyPacked");
2259 return (strcmp(op_type->tp_name,
"SwigPyPacked") == 0);
2275 static char swigpacked_doc[] =
"Swig object carries a C/C++ instance pointer";
2276#ifndef Py_LIMITED_API
2277 static PyTypeObject swigpypacked_type;
2278 static int type_init = 0;
2280 const PyTypeObject tmp = {
2281#if PY_VERSION_HEX>=0x03000000
2282 PyVarObject_HEAD_INIT(NULL, 0)
2284 PyObject_HEAD_INIT(NULL)
2291#if PY_VERSION_HEX < 0x030800b4
2298#if PY_VERSION_HEX>=0x03000000
2310 PyObject_GenericGetAttr,
2341#
if PY_VERSION_HEX >= 0x03040000
2344#
if PY_VERSION_HEX >= 0x03080000
2347#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2350#
if PY_VERSION_HEX >= 0x030C0000
2361 swigpypacked_type = tmp;
2363 if (PyType_Ready(&swigpypacked_type) != 0)
2366 return &swigpypacked_type;
2368 PyType_Slot slots[] = {
2372 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2373 { Py_tp_doc, (
void *)swigpacked_doc },
2376 PyType_Spec spec = {
2383 return (PyTypeObject *)PyType_FromSpec(&spec);
2392 void *pack = malloc(size);
2394 memcpy(pack, ptr, size);
2403 return (PyObject *) sobj;
2411 if (sobj->size != size)
return 0;
2412 memcpy(ptr, sobj->pack, size);
2436#if PY_VERSION_HEX>=0x03000000
2437#define SWIG_PYTHON_SLOW_GETSET_THIS
2448#ifdef SWIGPYTHON_BUILTIN
2450# ifdef PyWeakref_CheckProxy
2451 if (PyWeakref_CheckProxy(pyobj)) {
2452 pyobj = PyWeakref_GET_OBJECT(pyobj);
2462#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2463 if (PyInstance_Check(pyobj)) {
2464 obj = _PyInstance_Lookup(pyobj,
SWIG_This());
2466 PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
2467 if (dictptr != NULL) {
2468 PyObject *dict = *dictptr;
2469 obj = dict ? PyDict_GetItem(dict,
SWIG_This()) : 0;
2471#ifdef PyWeakref_CheckProxy
2472 if (PyWeakref_CheckProxy(pyobj)) {
2473 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
2477 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2481 if (PyErr_Occurred()) PyErr_Clear();
2487 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2491 if (PyErr_Occurred()) PyErr_Clear();
2511 int oldown = sobj->own;
2529 if (obj == Py_None && !implicit_conv) {
2541 void *vptr = sobj->ptr;
2546 if (ptr) *ptr = vptr;
2566 if (ptr) *ptr = vptr;
2575 *own = *own | sobj->own;
2585 if (implicit_conv) {
2587 if (data && !data->implicitconv) {
2588 PyObject *klass = data->klass;
2591 data->implicitconv = 1;
2593 data->implicitconv = 0;
2594 if (PyErr_Occurred()) {
2619 if (!
SWIG_IsOK(res) && obj == Py_None) {
2622 if (PyErr_Occurred())
2635 if (!PyCFunction_Check(obj)) {
2642#ifndef Py_LIMITED_API
2643 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
2645 PyObject* pystr_doc = PyObject_GetAttrString(obj,
"__doc__");
2646 PyObject *bytes = NULL;
2649 const char *desc = doc ? strstr(doc,
"swig_ptr: ") : 0;
2652#ifdef Py_LIMITED_API
2654 Py_XDECREF(pystr_doc);
2699 PyObject *newraw = data->newraw;
2701 inst = PyObject_Call(newraw, data->newargs, NULL);
2703#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2704 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2705 if (dictptr != NULL) {
2706 PyObject *dict = *dictptr;
2708 dict = PyDict_New();
2712 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2719 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2726#if PY_VERSION_HEX >= 0x03000000
2727 PyObject *empty_args = PyTuple_New(0);
2729 PyObject *empty_kwargs = PyDict_New();
2731#ifndef Py_LIMITED_API
2732 newfunc newfn = ((PyTypeObject *)data->newargs)->tp_new;
2734 newfunc newfn = (newfunc)PyType_GetSlot((PyTypeObject *)data->newargs, Py_tp_new);
2736 inst = newfn((PyTypeObject *)data->newargs, empty_args, empty_kwargs);
2737 Py_DECREF(empty_kwargs);
2739 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2743 PyType_Modified(
Py_TYPE(inst));
2747 Py_DECREF(empty_args);
2750 PyObject *dict = PyDict_New();
2752 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2753 inst = PyInstance_NewRaw(data->newargs, dict);
2764#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2765 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2766 if (dictptr != NULL) {
2767 PyObject *dict = *dictptr;
2769 dict = PyDict_New();
2773 return PyDict_SetItem(dict,
SWIG_This(), swig_this);
2779 return PyObject_SetAttr(inst,
SWIG_This(), swig_this);
2813 if (clientdata && clientdata->
pytype) {
2818#ifndef Py_LIMITED_API
2819 allocfunc alloc = clientdata->
pytype->tp_alloc;
2821 allocfunc alloc = (allocfunc)PyType_GetSlot(clientdata->
pytype, Py_tp_alloc);
2823 PyObject *next_self = alloc(clientdata->
pytype, 0);
2824 while (newobj->next)
2826 newobj->next = next_self;
2828#ifdef SWIGPYTHON_BUILTIN
2834#ifdef SWIGPYTHON_BUILTIN
2845 return (PyObject*) newobj;
2872#ifdef SWIG_LINK_RUNTIME
2873void *SWIG_ReturnGlobalTypeList(
void *);
2889#ifdef SWIG_LINK_RUNTIME
2890 static void *type_pointer = (
void *)0;
2892 if (!type_pointer) {
2893 type_pointer = SWIG_ReturnGlobalTypeList((
void *)0);
2897 if (PyErr_Occurred()) {
2899 type_pointer = (
void *)0;
2935#if PY_VERSION_HEX >= 0x03000000
2937 PyObject *
module = PyImport_AddModule("swig_runtime_data" SWIG_RUNTIME_VERSION);
2939 static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };
2940 PyObject *
module = Py_InitModule("swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
2943 if (pointer && module) {
2951 Py_XDECREF(pointer);
2960 PyObject *obj = PyDict_GetItem(cache, key);
2968 obj = PyCapsule_New((
void*) descriptor, NULL, NULL);
2970 PyDict_SetItem(cache, key, obj);
2982#define SWIG_POINTER_EXCEPTION 0
2983#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2984#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2989 if (PyErr_Occurred()) {
2991 PyObject *
value = 0;
2992 PyObject *traceback = 0;
2993 PyErr_Fetch(&type, &
value, &traceback);
2995 PyObject *old_str = PyObject_Str(
value);
2996 PyObject *bytes = NULL;
2998 const char *errmesg = tmp ? tmp :
"Invalid error message";
3002 PyErr_Format(type,
"%s %s", mesg, errmesg);
3004 PyErr_Format(type,
"%s %s", errmesg, mesg);
3018 if (PyErr_Occurred()) {
3021 PyOS_snprintf(mesg,
sizeof(mesg),
"argument number %d:", argnum);
3033 return ty ? ty->
str :
"";
3040#if defined(SWIG_COBJECT_TYPES)
3044 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, 'SwigPyObject(%s)' is received",
3051#ifndef Py_LIMITED_API
3053 const char *otype = (obj ? obj->ob_type->tp_name : 0);
3055 PyObject *str = PyObject_Str(obj);
3056 PyObject *bytes = NULL;
3059 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s(%s)' is received",
3062 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s' is received",
3071 PyErr_Format(PyExc_TypeError,
"a '%s' is expected", type);
3073 PyErr_Format(PyExc_TypeError,
"unexpected type is received");
3088#ifdef SWIGPYTHON_BUILTIN
3090SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *
name, PyObject *
value) {
3091 PyTypeObject *tp = obj->ob_type;
3093 PyObject *encoded_name;
3097# ifdef Py_USING_UNICODE
3098 if (PyString_Check(
name)) {
3099 name = PyUnicode_Decode(PyString_AsString(
name), PyString_Size(
name), NULL, NULL);
3102 }
else if (!PyUnicode_Check(
name))
3104 if (!PyString_Check(
name))
3107 PyErr_Format(PyExc_TypeError,
"attribute name must be string, not '%.200s'",
name->ob_type->tp_name);
3114 if (PyType_Ready(tp) != 0)
3118 descr = _PyType_Lookup(tp,
name);
3121 f = descr->ob_type->tp_descr_set;
3123 if (PyString_Check(
name)) {
3124 encoded_name =
name;
3127 encoded_name = PyUnicode_AsUTF8String(
name);
3131 PyErr_Format(PyExc_AttributeError,
"'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
3132 Py_DECREF(encoded_name);
3134 res = f(descr, obj,
value);
3150#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
3152#define SWIG_contract_assert(expr, msg) do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
3158#define SWIGTYPE_p_PLGraphicsIn swig_types[0]
3159#define SWIGTYPE_p_PLcGrid swig_types[1]
3160#define SWIGTYPE_p_PLcGrid2 swig_types[2]
3161#define SWIGTYPE_p_char swig_types[3]
3162#define SWIGTYPE_p_double swig_types[4]
3163#define SWIGTYPE_p_f_double_double__int swig_types[5]
3164#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void swig_types[6]
3165#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void swig_types[7]
3166#define SWIGTYPE_p_f_int_p_double_p_double__void swig_types[8]
3167#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void swig_types[9]
3168#define SWIGTYPE_p_int swig_types[10]
3169#define SWIGTYPE_p_p_char swig_types[11]
3170#define SWIGTYPE_p_p_double swig_types[12]
3171#define SWIGTYPE_p_unsigned_int swig_types[13]
3174#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
3175#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
3179#ifdef SWIG_TypeQuery
3180# undef SWIG_TypeQuery
3182#define SWIG_TypeQuery SWIG_Python_TypeQuery
3187#if PY_VERSION_HEX >= 0x03000000
3188# define SWIG_init PyInit__plplotc
3191# define SWIG_init init_plplotc
3194#define SWIG_name "_plplotc"
3196#define SWIG_as_voidptr(a) (void *)((const void *)(a))
3197#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
3200#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
3201#include <arrayobject.h>
3205#define NPY_PLINT NPY_INT32
3208#define NPY_PLFLT NPY_FLOAT64
3210#define NPY_PLFLT NPY_FLOAT32
3214#if !defined ( PySequence_Fast_GET_ITEM )
3215 #define PySequence_Fast_GET_ITEM PySequence_GetItem
3217#define PySequence_Size PySequence_Length
3228 if (PyFloat_Check(obj)) {
3229 if (val) *val = PyFloat_AsDouble(obj);
3231#if PY_VERSION_HEX < 0x03000000
3232 }
else if (PyInt_Check(obj)) {
3233 if (val) *val = (double) PyInt_AsLong(obj);
3236 }
else if (PyLong_Check(obj)) {
3237 double v = PyLong_AsDouble(obj);
3238 if (!PyErr_Occurred()) {
3245#ifdef SWIG_PYTHON_CAST_MODE
3248 double d = PyFloat_AsDouble(obj);
3249 if (!PyErr_Occurred()) {
3256 long v = PyLong_AsLong(obj);
3257 if (!PyErr_Occurred()) {
3270 #define SWIG_From_double PyFloat_FromDouble
3285 return PyInt_FromLong((
long)
value);
3290#if !defined(SWIG_NO_LLONG_MAX)
3291# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
3292# define LLONG_MAX __LONG_LONG_MAX__
3293# define LLONG_MIN (-LLONG_MAX - 1LL)
3294# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
3308 if ((
min <= x && x <=
max)) {
3313 rd = ((x - fx) < 0.5) ? fx : cx;
3314 if ((errno == EDOM) || (errno == ERANGE)) {
3317 double summ, reps, diff;
3320 }
else if (rd > x) {
3327 if (reps < 8*DBL_EPSILON) {
3340#if PY_VERSION_HEX < 0x03000000
3341 if (PyInt_Check(obj)) {
3342 if (val) *val = PyInt_AsLong(obj);
3346 if (PyLong_Check(obj)) {
3347 long v = PyLong_AsLong(obj);
3348 if (!PyErr_Occurred()) {
3356#ifdef SWIG_PYTHON_CAST_MODE
3359 long v = PyInt_AsLong(obj);
3360 if (!PyErr_Occurred()) {
3372 const double long_max =
sizeof(long) == 8 ? 0x7ffffffffffffc00LL : LONG_MAX;
3375 if (val) *val = (long)(d);
3391 if ((v < INT_MIN || v > INT_MAX)) {
3394 if (val) *val = (int)(v);
3404#if PY_VERSION_HEX < 0x03000000
3405 if (PyInt_Check(obj)) {
3406 long v = PyInt_AsLong(obj);
3415 if (PyLong_Check(obj)) {
3416 unsigned long v = PyLong_AsUnsignedLong(obj);
3417 if (!PyErr_Occurred()) {
3425#ifdef SWIG_PYTHON_CAST_MODE
3428 unsigned long v = PyLong_AsUnsignedLong(obj);
3429 if (!PyErr_Occurred()) {
3441 const double ulong_max =
sizeof(
unsigned long) == 8 ? 0xfffffffffffff800ULL : ULONG_MAX;
3443 if (val) *val = (
unsigned long)(d);
3459 if ((v > UINT_MAX)) {
3462 if (val) *val = (
unsigned int)(v);
3472 return PyInt_FromSize_t((
size_t)
value);
3479 static int init = 0;
3494#if PY_VERSION_HEX>=0x03000000
3495#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3496 if (PyBytes_Check(obj))
3498 if (PyUnicode_Check(obj))
3501 if (PyString_Check(obj))
3504 char *cstr; Py_ssize_t len;
3505 PyObject *bytes = NULL;
3509#if PY_VERSION_HEX>=0x03000000 && defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3510 if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1)
3517 if (bytes && cptr) {
3519 cstr = (
char *)memcpy(malloc((len + 1)*
sizeof(char)), cstr,
sizeof(char)*(len + 1));
3527 if (cptr) *cptr = cstr;
3528 if (psize) *psize = len + 1;
3532#if defined(SWIG_PYTHON_2_UNICODE)
3533#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3534#error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once"
3536#if PY_VERSION_HEX<0x03000000
3537 if (PyUnicode_Check(obj)) {
3538 char *cstr; Py_ssize_t len;
3539 if (!alloc && cptr) {
3542 obj = PyUnicode_AsUTF8String(obj);
3545 if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) {
3548 *cptr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(char)*(len + 1));
3550 if (psize) *psize = len + 1;
3562 if (pchar_descriptor) {
3565 if (cptr) *cptr = (
char *) vptr;
3566 if (psize) *psize = vptr ? (strlen((
char *)vptr) + 1) : 0;
3579 char* cptr = 0;
size_t csize = 0;
int alloc =
SWIG_OLDOBJ;
3583 if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize;
3584 if (csize <= size) {
3586 if (csize) memcpy(val, cptr, csize*
sizeof(
char));
3587 if (csize < size) memset(val + csize, 0, (size - csize)*
sizeof(
char));
3605 if (size > INT_MAX) {
3607 return pchar_descriptor ?
3610#if PY_VERSION_HEX >= 0x03000000
3611#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3612 return PyBytes_FromStringAndSize(carray, (Py_ssize_t)(size));
3614 return PyUnicode_DecodeUTF8(carray, (Py_ssize_t)(size),
"surrogateescape");
3617 return PyString_FromStringAndSize(carray, (Py_ssize_t)(size));
3630 for (p = s; maxlen-- && *p; p++)
3639#define t_output_helper SWIG_Python_AppendOutput
3650 if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) {
3651 if (val) *val = (char)(v);
3669 PyArrayObject* tmp = (PyArrayObject *) PyArray_ContiguousFromObject( in,
NPY_PLINT,
3674 if ( PyArray_Check( in ) )
3677 tmp = (PyArrayObject *) PyArray_Cast( (PyArrayObject *) in,
NPY_PLINT );
3684#define myArray_ContiguousFromObject PyArray_ContiguousFromObject
3687 PyObject *resultobj = 0;
3701 PyObject *swig_obj[2] ;
3714 arg1 = (
PLFLT)(val1);
3719 arg2 = (
PLFLT)(val2);
3720 pltr0(arg1,arg2,arg3,arg4,arg5);
3755 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3764 PyErr_SetString( PyExc_ValueError,
"Expected a sequence to two 1D arrays." );
3773 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3781 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3803 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3812 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two 2D arrays." );
3818 PyErr_SetString( PyExc_ValueError,
"Arrays must be same size." );
3827 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3835 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3841 for ( i = 0; i <
tmpGrid2.nx; i++ )
3844 for ( i = 0; i <
tmpGrid2.nx; i++ )
3859 PyObject *resultobj = 0;
3873 PyObject *swig_obj[3] ;
3883 arg1 = (
PLFLT)(val1);
3888 arg2 = (
PLFLT)(val2);
3894 pltr1(arg1,arg2,arg3,arg4,arg5);
3921 PyObject *resultobj = 0;
3935 PyObject *swig_obj[3] ;
3945 arg1 = (
PLFLT)(val1);
3950 arg2 = (
PLFLT)(val2);
3956 pltr2(arg1,arg2,arg3,arg4,arg5);
3985 static PyInterpreterState *save_interp = NULL;
3995#define MY_BLOCK_THREADS { \
3996 PyThreadState *prev_state, *new_state; \
3999 PyEval_AcquireLock(); \
4000 new_state = PyThreadState_New( save_interp ); \
4001 prev_state = PyThreadState_Swap( new_state );
4002#define MY_UNBLOCK_THREADS \
4003 new_state = PyThreadState_Swap( prev_state ); \
4004 PyThreadState_Clear( new_state ); \
4005 PyEval_ReleaseLock(); \
4006 PyThreadState_Delete( new_state ); \
4009#define MY_BLOCK_THREADS
4010#define MY_UNBLOCK_THREADS
4033 PyObject *pdata, *arglist, *result;
4037 pdata = (PyObject *) data;
4044 Py_XINCREF( pdata );
4049 arglist = Py_BuildValue(
"(ddO)", x, y, pdata );
4051 arglist = Py_BuildValue(
"(ffO)", x, y, pdata );
4053 if ( arglist == NULL )
4055 fprintf( stderr,
"Py_BuildValue failed to make argument list.\n" );
4060 result = PyEval_CallObject(
python_pltr, arglist );
4062 Py_CLEAR( arglist );
4064 if ( result == NULL )
4066 fprintf( stderr,
"call to python pltr function with 3 arguments failed\n" );
4067 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must take 3 arguments." );
4073 if ( tmp == 0 || PyArray_DIMS( tmp )[0] != 2 )
4075 fprintf( stderr,
"pltr callback must return a 2 element array or sequence\n" );
4076 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must return a 2-sequence." );
4096 PyObject *pdata, *arglist, *result;
4097 PLFLT fresult = 0.0;
4100 pdata = (PyObject *) data;
4103 Py_XINCREF( pdata );
4107 arglist = Py_BuildValue(
"(iiO)", x, y, pdata );
4111 Py_CLEAR( arglist );
4113 if ( !PyFloat_Check( result ) )
4115 fprintf( stderr,
"f2eval callback must return a float\n" );
4116 PyErr_SetString( PyExc_RuntimeError,
"f2eval callback must return a float." );
4121 fresult = (
PLFLT) PyFloat_AsDouble( result );
4133 PyObject *pdata, *arglist, *result, *unicode_string;
4138 pdata = (PyObject *) data;
4143 Py_XINCREF( pdata );
4148 arglist = Py_BuildValue(
"(ldO)", axis,
value, pdata );
4150 arglist = Py_BuildValue(
"(lfO)", axis,
value, pdata );
4157 if ( result == NULL )
4159 fprintf( stderr,
"label callback failed with 3 arguments\n" );
4160 PyErr_SetString( PyExc_RuntimeError,
"label callback must take 3 arguments." );
4162 else if ( PyString_Check( result ) )
4165 pystring = PyString_AsString( result );
4166 strncpy(
string, pystring, len );
4168 else if ( PyUnicode_Check( result ) )
4171 unicode_string = PyUnicode_AsEncodedString( result,
"utf-8",
"Error ~" );
4172 pystring = PyBytes_AS_STRING( unicode_string );
4174 strncpy(
string, pystring, len );
4178 fprintf( stderr,
"label callback must return a string\n" );
4179 PyErr_SetString( PyExc_RuntimeError,
"label callback must return a string." );
4190 PyObject *px, *py, *pdata, *arglist, *result;
4195 pdata = (PyObject *) data;
4202 Py_XINCREF( pdata );
4206 px = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) xt );
4207 py = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) yt );
4208 arglist = Py_BuildValue(
"(ddOOO)", x, y, px, py, pdata );
4210 result = PyEval_CallObject(
python_ct, arglist );
4212 Py_CLEAR( arglist );
4217 if ( result == NULL )
4219 fprintf( stderr,
"call to python coordinate transform function with 5 arguments failed\n" );
4220 PyErr_SetString( PyExc_RuntimeError,
"coordinate transform callback must take 5 arguments." );
4231 PyObject *px, *py, *arglist, *result;
4242#ifdef PL_HAVE_PTHREAD
4243 px = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) x );
4244 py = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) y );
4246 px = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) x );
4247 py = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) y );
4249 arglist = Py_BuildValue(
"(iOO)", n, px, py );
4253 Py_CLEAR( arglist );
4257 if ( result == NULL )
4259 fprintf( stderr,
"call to python mapform function with 3 arguments failed\n" );
4260 PyErr_SetString( PyExc_RuntimeError,
"mapform callback must take 3 arguments." );
4273 PyObject * rep = PyObject_Repr( input );
4278 if ( PyUnicode_Check( rep ) )
4280 PyObject *uni_str = PyUnicode_AsEncodedString( rep,
"utf-8",
"Error ~" );
4281 str = PyBytes_AS_STRING( uni_str );
4285 str = PyString_AsString( rep );
4287 if ( strstr( str,
"function pltr0" ) != 0 )
4293 else if ( strstr( str,
"function pltr1" ) != 0 )
4299 else if ( strstr( str,
"function pltr2" ) != 0 )
4309 Py_XINCREF( input );
4317 Py_XINCREF( input );
4333 Py_XINCREF( input );
4348 Py_XINCREF( input );
4366 if ( input != Py_None )
4370 if ( input != Py_None )
4374 Py_XINCREF( input );
4378 fprintf( stderr,
"pltr_type is invalid\n" );
4399 fprintf( stderr,
"pltr_type is invalid\n" );
4408 PyObject *resultobj = 0;
4415 PyObject *swig_obj[2] ;
4429 if (arg1) (arg1)->type = arg2;
4438 PyObject *resultobj = 0;
4442 PyObject *swig_obj[1] ;
4453 result = (int) ((arg1)->type);
4462 PyObject *resultobj = 0;
4469 PyObject *swig_obj[2] ;
4482 arg2 = (
unsigned int)(val2);
4483 if (arg1) (arg1)->state = arg2;
4492 PyObject *resultobj = 0;
4496 PyObject *swig_obj[1] ;
4497 unsigned int result;
4507 result = (
unsigned int) ((arg1)->state);
4516 PyObject *resultobj = 0;
4523 PyObject *swig_obj[2] ;
4536 arg2 = (
unsigned int)(val2);
4537 if (arg1) (arg1)->keysym = arg2;
4546 PyObject *resultobj = 0;
4550 PyObject *swig_obj[1] ;
4551 unsigned int result;
4561 result = (
unsigned int) ((arg1)->keysym);
4570 PyObject *resultobj = 0;
4577 PyObject *swig_obj[2] ;
4590 arg2 = (
unsigned int)(val2);
4591 if (arg1) (arg1)->button = arg2;
4600 PyObject *resultobj = 0;
4604 PyObject *swig_obj[1] ;
4605 unsigned int result;
4615 result = (
unsigned int) ((arg1)->button);
4624 PyObject *resultobj = 0;
4631 PyObject *swig_obj[2] ;
4644 arg2 = (
PLINT)(val2);
4645 if (arg1) (arg1)->subwindow = arg2;
4654 PyObject *resultobj = 0;
4658 PyObject *swig_obj[1] ;
4669 result = (
PLINT) ((arg1)->subwindow);
4678 PyObject *resultobj = 0;
4680 char *arg2 = (
char *) (
char *)0 ;
4685 PyObject *swig_obj[2] ;
4698 arg2 = (
char *)(temp2);
4699 if (arg2) memcpy(arg1->string,arg2,16*
sizeof(
char));
4700 else memset(arg1->string,0,16*
sizeof(
char));
4709 PyObject *resultobj = 0;
4713 PyObject *swig_obj[1] ;
4724 result = (
char *)(
char *) ((arg1)->
string);
4739 PyObject *resultobj = 0;
4746 PyObject *swig_obj[2] ;
4760 if (arg1) (arg1)->pX = arg2;
4769 PyObject *resultobj = 0;
4773 PyObject *swig_obj[1] ;
4784 result = (int) ((arg1)->pX);
4793 PyObject *resultobj = 0;
4800 PyObject *swig_obj[2] ;
4814 if (arg1) (arg1)->pY = arg2;
4823 PyObject *resultobj = 0;
4827 PyObject *swig_obj[1] ;
4838 result = (int) ((arg1)->pY);
4847 PyObject *resultobj = 0;
4854 PyObject *swig_obj[2] ;
4867 arg2 = (
PLFLT)(val2);
4868 if (arg1) (arg1)->dX = arg2;
4877 PyObject *resultobj = 0;
4881 PyObject *swig_obj[1] ;
4892 result = (
PLFLT) ((arg1)->dX);
4901 PyObject *resultobj = 0;
4908 PyObject *swig_obj[2] ;
4921 arg2 = (
PLFLT)(val2);
4922 if (arg1) (arg1)->dY = arg2;
4931 PyObject *resultobj = 0;
4935 PyObject *swig_obj[1] ;
4946 result = (
PLFLT) ((arg1)->dY);
4955 PyObject *resultobj = 0;
4962 PyObject *swig_obj[2] ;
4975 arg2 = (
PLFLT)(val2);
4976 if (arg1) (arg1)->wX = arg2;
4985 PyObject *resultobj = 0;
4989 PyObject *swig_obj[1] ;
5000 result = (
PLFLT) ((arg1)->wX);
5009 PyObject *resultobj = 0;
5016 PyObject *swig_obj[2] ;
5029 arg2 = (
PLFLT)(val2);
5030 if (arg1) (arg1)->wY = arg2;
5039 PyObject *resultobj = 0;
5043 PyObject *swig_obj[1] ;
5054 result = (
PLFLT) ((arg1)->wY);
5063 PyObject *resultobj = 0;
5077 PyObject *resultobj = 0;
5081 PyObject *swig_obj[1] ;
5091 free((
char *) arg1);
5111 PyObject *resultobj = 0;
5115 PyObject *swig_obj[1] ;
5124 arg1 = (
PLINT)(val1);
5134 PyObject *resultobj = 0;
5141 PyObject *swig_obj[2] ;
5149 arg1 = (
PLINT)(val1);
5154 arg2 = (
PLINT)(val2);
5164 PyObject *resultobj = 0;
5177 PyObject *swig_obj[4] ;
5185 arg1 = (
PLFLT)(val1);
5190 arg2 = (
PLFLT)(val2);
5195 arg3 = (
PLFLT)(val3);
5200 arg4 = (
PLINT)(val4);
5210 PyObject *resultobj = 0;
5214 PyObject *swig_obj[1] ;
5223 arg1 = (
PLINT)(val1);
5233 PyObject *resultobj = 0;
5258 PyObject *swig_obj[8] ;
5266 arg1 = (
PLFLT)(val1);
5271 arg2 = (
PLFLT)(val2);
5276 arg3 = (
PLFLT)(val3);
5281 arg4 = (
PLFLT)(val4);
5286 arg5 = (
PLFLT)(val5);
5291 arg6 = (
PLFLT)(val6);
5296 arg7 = (
PLFLT)(val7);
5302 plarc(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
5311 PyObject *resultobj = 0;
5314 char *arg3 = (
char *) 0 ;
5317 char *arg6 = (
char *) 0 ;
5338 PyObject *swig_obj[8] ;
5346 arg1 = (
PLFLT)(val1);
5351 arg2 = (
PLFLT)(val2);
5356 arg3 = (
char *)(buf3);
5361 arg4 = (
PLFLT)(val4);
5366 arg5 = (
PLINT)(val5);
5371 arg6 = (
char *)(buf6);
5376 arg7 = (
PLFLT)(val7);
5381 arg8 = (
PLINT)(val8);
5382 plaxes(arg1,arg2,(
char const *)arg3,arg4,arg5,(
char const *)arg6,arg7,arg8);
5395 PyObject *resultobj = 0;
5400 PyArrayObject *tmp1 = NULL ;
5401 PyArrayObject *tmp3 = NULL ;
5404 PyObject *swig_obj[3] ;
5412 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
5413 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
5419 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
5421 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
5424 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
5430 arg4 = (
PLINT)(val4);
5431 plbin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
5452 PyObject *resultobj = 0;
5474 PyObject *swig_obj[1] ;
5489 arg7 = (
PLFLT)(val7);
5490 plbtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5535 PyObject *resultobj = 0;
5548 PyObject *resultobj = 0;
5549 char *arg1 = (
char *) 0 ;
5552 char *arg4 = (
char *) 0 ;
5569 PyObject *swig_obj[6] ;
5577 arg1 = (
char *)(buf1);
5582 arg2 = (
PLFLT)(val2);
5587 arg3 = (
PLINT)(val3);
5592 arg4 = (
char *)(buf4);
5597 arg5 = (
PLFLT)(val5);
5602 arg6 = (
PLINT)(val6);
5603 plbox((
char const *)arg1,arg2,arg3,(
char const *)arg4,arg5,arg6);
5616 PyObject *resultobj = 0;
5617 char *arg1 = (
char *) 0 ;
5618 char *arg2 = (
char *) 0 ;
5621 char *arg5 = (
char *) 0 ;
5622 char *arg6 = (
char *) 0 ;
5625 char *arg9 = (
char *) 0 ;
5626 char *arg10 = (
char *) 0 ;
5659 PyObject *swig_obj[12] ;
5667 arg1 = (
char *)(buf1);
5672 arg2 = (
char *)(buf2);
5677 arg3 = (
PLFLT)(val3);
5682 arg4 = (
PLINT)(val4);
5687 arg5 = (
char *)(buf5);
5692 arg6 = (
char *)(buf6);
5697 arg7 = (
PLFLT)(val7);
5702 arg8 = (
PLINT)(val8);
5707 arg9 = (
char *)(buf9);
5712 arg10 = (
char *)(buf10);
5717 arg11 = (
PLFLT)(val11);
5722 arg12 = (
PLINT)(val12);
5723 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);
5744 PyObject *resultobj = 0;
5760 PyObject *swig_obj[2] ;
5771 arg1 = (
PLFLT)(val1);
5776 arg2 = (
PLFLT)(val2);
5804 PyObject *resultobj = 0;
5817 PyObject *resultobj = 0;
5821 PyObject *swig_obj[1] ;
5830 arg1 = (
PLINT)(val1);
5840 PyObject *resultobj = 0;
5844 PyObject *swig_obj[1] ;
5853 arg1 = (
PLFLT)(val1);
5863 PyObject *resultobj = 0;
5897 PyObject *swig_obj[11] ;
5905 arg1 = (
PLFLT)(val1);
5910 arg2 = (
PLFLT)(val2);
5915 arg3 = (
PLFLT)(val3);
5920 arg4 = (
PLINT)(val4);
5930 arg6 = (
PLINT)(val6);
5935 arg7 = (
PLINT)(val7);
5940 arg8 = (
PLINT)(val8);
5945 arg9 = (
PLINT)(val9);
5950 arg10 = (
PLINT)(val10);
5955 arg11 = (
PLFLT)(val11);
5956 plconfigtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
5965 PyObject *resultobj = 0;
5977 PyArrayObject *tmp1 = NULL ;
5986 PyArrayObject *tmp8 = NULL ;
5987 PyObject *swig_obj[8] ;
6003 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
6004 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
6006 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
6007 for ( i = 0; i < arg2; i++ )
6008 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
6014 arg4 = (
PLINT)(val4);
6019 arg5 = (
PLINT)(val5);
6024 arg6 = (
PLINT)(val6);
6029 arg7 = (
PLINT)(val7);
6034 arg9 = PyArray_DIMS( tmp8 )[0];
6035 arg8 = (
PLFLT *) PyArray_DATA( tmp8 );
6040 if ( swig_obj[6] == Py_None )
6046 if ( !PyCallable_Check( (PyObject *) swig_obj[6] ) )
6048 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
6057 if ( swig_obj[7] == Py_None )
6065 plcont((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,(
double const *)arg8,arg9,arg10,arg11);
6100 PyObject *resultobj = 0;
6122 PyObject *swig_obj[6] ;
6131 arg1 = (
PLINT)(val1);
6136 arg2 = (
PLINT)(val2);
6141 arg3 = (
PLINT)(val3);
6146 arg4 = (
PLINT)(val4);
6151 arg5 = (
PLINT)(val5);
6156 arg6 = (
PLFLT)(val6);
6157 plctime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
6172 PyObject *resultobj = 0;
6179 PyObject *swig_obj[2] ;
6187 arg1 = (
PLINT)(val1);
6202 PyObject *resultobj = 0;
6215 PyObject *resultobj = 0;
6228 PyObject *resultobj = 0;
6247 PyObject *swig_obj[6] ;
6255 arg1 = (
PLFLT)(val1);
6260 arg2 = (
PLFLT)(val2);
6265 arg3 = (
PLFLT)(val3);
6270 arg4 = (
PLFLT)(val4);
6275 arg5 = (
PLINT)(val5);
6280 arg6 = (
PLINT)(val6);
6281 plenv(arg1,arg2,arg3,arg4,arg5,arg6);
6290 PyObject *resultobj = 0;
6309 PyObject *swig_obj[6] ;
6317 arg1 = (
PLFLT)(val1);
6322 arg2 = (
PLFLT)(val2);
6327 arg3 = (
PLFLT)(val3);
6332 arg4 = (
PLFLT)(val4);
6337 arg5 = (
PLINT)(val5);
6342 arg6 = (
PLINT)(val6);
6343 plenv0(arg1,arg2,arg3,arg4,arg5,arg6);
6352 PyObject *resultobj = 0;
6365 PyObject *resultobj = 0;
6370 PyArrayObject *tmp1 = NULL ;
6371 PyArrayObject *tmp3 = NULL ;
6372 PyArrayObject *tmp4 = NULL ;
6373 PyObject *swig_obj[3] ;
6381 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6382 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6388 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6390 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6393 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6399 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6401 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6404 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6406 plerrx(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6433 PyObject *resultobj = 0;
6438 PyArrayObject *tmp1 = NULL ;
6439 PyArrayObject *tmp3 = NULL ;
6440 PyArrayObject *tmp4 = NULL ;
6441 PyObject *swig_obj[3] ;
6449 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6450 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6456 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6458 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6461 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6467 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6469 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6472 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6474 plerry(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6501 PyObject *resultobj = 0;
6514 PyObject *resultobj = 0;
6518 PyArrayObject *tmp1 = NULL ;
6519 PyArrayObject *tmp3 = NULL ;
6520 PyObject *swig_obj[2] ;
6528 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6529 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6535 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6537 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6540 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6542 plfill(arg1,(
double const *)arg2,(
double const *)arg3);
6563 PyObject *resultobj = 0;
6568 PyArrayObject *tmp1 = NULL ;
6569 PyArrayObject *tmp3 = NULL ;
6570 PyArrayObject *tmp4 = NULL ;
6571 PyObject *swig_obj[3] ;
6579 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6580 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6586 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6588 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6591 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6597 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6599 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6602 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6604 plfill3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6631 PyObject *resultobj = 0;
6636 PyArrayObject *tmp1 = NULL ;
6637 PyArrayObject *tmp3 = NULL ;
6640 PyObject *swig_obj[3] ;
6648 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6649 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6655 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6657 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6660 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6666 arg4 = (
PLFLT)(val4);
6667 plgradient(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
6688 PyObject *resultobj = 0;
6701 PyObject *resultobj = 0;
6705 PyObject *swig_obj[1] ;
6714 arg1 = (
PLINT)(val1);
6724 PyObject *resultobj = 0;
6728 PyObject *swig_obj[1] ;
6737 arg1 = (
PLINT)(val1);
6747 PyObject *resultobj = 0;
6780 PyObject *resultobj = 0;
6793 PyObject *swig_obj[1] ;
6805 arg1 = (
PLINT)(val1);
6833 PyObject *resultobj = 0;
6849 PyObject *swig_obj[1] ;
6862 arg1 = (
PLINT)(val1);
6863 plgcol0a(arg1,arg2,arg3,arg4,arg5);
6896 PyObject *resultobj = 0;
6939 PyObject *resultobj = 0;
6992 PyObject *resultobj = 0;
7015 PyObject *resultobj = 0;
7016 char *arg1 = (
char *) 0 ;
7027 PyObject *o = PyString_FromString( arg1 );
7037 PyObject *resultobj = 0;
7090 PyObject *resultobj = 0;
7113 PyObject *resultobj = 0;
7166 PyObject *resultobj = 0;
7209 PyObject *resultobj = 0;
7232 PyObject *resultobj = 0;
7233 char *arg1 = (
char *) 0 ;
7244 PyObject *o = PyString_FromString( arg1 );
7254 PyObject *resultobj = 0;
7297 PyObject *resultobj = 0;
7320 PyObject *resultobj = 0;
7348 plgpage(arg1,arg2,arg3,arg4,arg5,arg6);
7393 PyObject *resultobj = 0;
7406 PyObject *resultobj = 0;
7418 PyArrayObject *tmp1 = NULL ;
7419 PyArrayObject *tmp2 = NULL ;
7420 PyArrayObject *tmp3 = NULL ;
7421 PyArrayObject *tmp5 = NULL ;
7422 PyArrayObject *tmp7 = NULL ;
7423 PyObject *array7 = NULL ;
7428 PyObject *swig_obj[7] ;
7436 Alen = PyArray_DIMS( tmp1 )[0];
7437 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
7443 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
7445 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7448 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
7454 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
7456 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7459 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
7460 arg4 = PyArray_DIMS( tmp3 )[0];
7466 Xlen = PyArray_DIMS( tmp5 )[0];
7468 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
7476 Ylen = PyArray_DIMS( tmp7 )[0];
7478 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
7483 array7 = PyArray_SimpleNew( 2, dims,
NPY_PLFLT );
7487 arg9 = (
PLFLT **) malloc(
sizeof (
double * ) * (size_t)
Xlen );
7488 for ( i = 0; i <
Xlen; i++ )
7489 arg9[i] = ( (
PLFLT *) PyArray_DATA( (PyArrayObject *) array7 ) + i * size );
7495 arg10 = (
PLINT)(val10);
7500 arg11 = (
PLFLT)(val11);
7501 plgriddata((
double const *)arg1,(
double const *)arg2,(
double const *)arg3,arg4,(
double const *)arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,arg11);
7545 PyObject *resultobj = 0;
7565 plgspa(arg1,arg2,arg3,arg4);
7598 PyObject *resultobj = 0;
7621 PyObject *resultobj = 0;
7622 char *arg1 = (
char *) 0 ;
7633 PyObject *o = PyString_FromString( arg1 );
7643 PyObject *resultobj = 0;
7663 plgvpd(arg1,arg2,arg3,arg4);
7696 PyObject *resultobj = 0;
7716 plgvpw(arg1,arg2,arg3,arg4);
7749 PyObject *resultobj = 0;
7782 PyObject *resultobj = 0;
7815 PyObject *resultobj = 0;
7848 PyObject *resultobj = 0;
7855 PyArrayObject *tmp1 = NULL ;
7864 PyObject *swig_obj[5] ;
7872 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
7873 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
7879 arg3 = (
PLFLT)(val3);
7884 arg4 = (
PLFLT)(val4);
7889 arg5 = (
PLINT)(val5);
7894 arg6 = (
PLINT)(val6);
7895 plhist(arg1,(
double const *)arg2,arg3,arg4,arg5,arg6);
7910 PyObject *resultobj = 0;
7929 PyObject *swig_obj[3] ;
7940 arg1 = (
PLFLT)(val1);
7945 arg2 = (
PLFLT)(val2);
7950 arg3 = (
PLFLT)(val3);
7951 plhlsrgb(arg1,arg2,arg3,arg4,arg5,arg6);
7978 PyObject *resultobj = 0;
7991 PyObject *resultobj = 0;
8004 PyObject *swig_obj[4] ;
8012 arg1 = (
PLFLT)(val1);
8017 arg2 = (
PLFLT)(val2);
8022 arg3 = (
PLFLT)(val3);
8027 arg4 = (
PLFLT)(val4);
8028 pljoin(arg1,arg2,arg3,arg4);
8037 PyObject *resultobj = 0;
8038 char *arg1 = (
char *) 0 ;
8039 char *arg2 = (
char *) 0 ;
8040 char *arg3 = (
char *) 0 ;
8050 PyObject *swig_obj[3] ;
8058 arg1 = (
char *)(buf1);
8063 arg2 = (
char *)(buf2);
8068 arg3 = (
char *)(buf3);
8069 pllab((
char const *)arg1,(
char const *)arg2,(
char const *)arg3);
8084 PyObject *resultobj = 0;
8104 char **arg20 = (
char **) 0 ;
8115 char **arg31 = (
char **) 0 ;
8140 PyArrayObject *tmp13 = NULL ;
8149 PyArrayObject *tmp19 = NULL ;
8150 PyArrayObject *tmp20 = NULL ;
8151 PyArrayObject *tmp21 = NULL ;
8152 PyArrayObject *tmp22 = NULL ;
8153 PyArrayObject *tmp23 = NULL ;
8154 PyArrayObject *tmp24 = NULL ;
8155 PyArrayObject *tmp25 = NULL ;
8156 PyArrayObject *tmp26 = NULL ;
8157 PyArrayObject *tmp27 = NULL ;
8158 PyArrayObject *tmp28 = NULL ;
8159 PyArrayObject *tmp29 = NULL ;
8160 PyArrayObject *tmp30 = NULL ;
8161 PyArrayObject *tmp31 = NULL ;
8162 PyObject *swig_obj[28] ;
8172 arg3 = (
PLINT)(val3);
8177 arg4 = (
PLINT)(val4);
8182 arg5 = (
PLFLT)(val5);
8187 arg6 = (
PLFLT)(val6);
8192 arg7 = (
PLFLT)(val7);
8197 arg8 = (
PLINT)(val8);
8202 arg9 = (
PLINT)(val9);
8207 arg10 = (
PLINT)(val10);
8212 arg11 = (
PLINT)(val11);
8217 arg12 = (
PLINT)(val12);
8220 if ( tmp13 == NULL )
8222 arg13 =
Alen = PyArray_DIMS( tmp13 )[0];
8223 arg14 = (
PLINT *) PyArray_DATA( tmp13 );
8229 arg15 = (
PLFLT)(val15);
8234 arg16 = (
PLFLT)(val16);
8239 arg17 = (
PLFLT)(val17);
8244 arg18 = (
PLFLT)(val18);
8247 if ( tmp19 == NULL )
8249 if ( PyArray_DIMS( tmp19 )[0] !=
Alen )
8251 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8254 arg19 = (
PLINT *) PyArray_DATA( tmp19 );
8258 tmp20 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[16], NPY_STRING, 1, 1 );
8259 if ( tmp20 == NULL )
8261 if ( PyArray_DIMS( tmp20 )[0] !=
Alen )
8263 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8266 arg20 = (
char **) malloc(
sizeof (
char* ) * (size_t)
Alen );
8267 for ( i = 0; i <
Alen; i++ )
8269 arg20[i] = (
char *) PyArray_DATA( tmp20 ) + i * PyArray_STRIDES( tmp20 )[0];
8270 if ( arg20[i] == NULL )
8279 if ( tmp21 == NULL )
8281 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8283 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8286 arg21 = (
PLINT *) PyArray_DATA( tmp21 );
8290 if ( tmp22 == NULL )
8292 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8294 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8297 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8300 if ( swig_obj[19] != Py_None )
8303 if ( tmp23 == NULL )
8305 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8307 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8310 arg23 = (
PLFLT *) PyArray_DATA( tmp23 );
8318 if ( swig_obj[20] != Py_None )
8321 if ( tmp24 == NULL )
8323 if ( PyArray_DIMS( tmp24 )[0] !=
Alen )
8325 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8328 arg24 = (
PLFLT *) PyArray_DATA( tmp24 );
8337 if ( tmp25 == NULL )
8339 if ( PyArray_DIMS( tmp25 )[0] !=
Alen )
8341 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8344 arg25 = (
PLINT *) PyArray_DATA( tmp25 );
8348 if ( tmp26 == NULL )
8350 if ( PyArray_DIMS( tmp26 )[0] !=
Alen )
8352 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8355 arg26 = (
PLINT *) PyArray_DATA( tmp26 );
8358 if ( swig_obj[23] != Py_None )
8361 if ( tmp27 == NULL )
8363 if ( PyArray_DIMS( tmp27 )[0] !=
Alen )
8365 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8368 arg27 = (
PLFLT *) PyArray_DATA( tmp27 );
8377 if ( tmp28 == NULL )
8379 if ( PyArray_DIMS( tmp28 )[0] !=
Alen )
8381 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8384 arg28 = (
PLINT *) PyArray_DATA( tmp28 );
8387 if ( swig_obj[25] != Py_None )
8390 if ( tmp29 == NULL )
8392 if ( PyArray_DIMS( tmp29 )[0] !=
Alen )
8394 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8397 arg29 = (
PLFLT *) PyArray_DATA( tmp29 );
8406 if ( tmp30 == NULL )
8408 if ( PyArray_DIMS( tmp30 )[0] !=
Alen )
8410 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8413 arg30 = (
PLINT *) PyArray_DATA( tmp30 );
8417 tmp31 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[27], NPY_STRING, 1, 1 );
8418 if ( tmp31 == NULL )
8420 if ( PyArray_DIMS( tmp31 )[0] !=
Alen )
8422 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8425 arg31 = (
char **) malloc(
sizeof (
char* ) * (size_t)
Alen );
8426 for ( i = 0; i <
Alen; i++ )
8428 arg31[i] = (
char *) PyArray_DATA( tmp31 ) + i * PyArray_STRIDES( tmp31 )[0];
8429 if ( arg31[i] == NULL )
8436 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);
8457 Py_CLEAR( tmp20 ); free( arg20 );
8490 Py_CLEAR( tmp31 ); free( arg31 );
8501 Py_CLEAR( tmp20 ); free( arg20 );
8534 Py_CLEAR( tmp31 ); free( arg31 );
8541 PyObject *resultobj = 0;
8559 char **arg18 = (
char **) 0 ;
8561 char **arg20 = (
char **) 0 ;
8596 PyArrayObject *tmp16 = NULL ;
8597 PyArrayObject *tmp18 = NULL ;
8598 PyArrayObject *tmp19 = NULL ;
8599 PyArrayObject *tmp21 = NULL ;
8600 PyArrayObject *tmp22 = NULL ;
8601 PyArrayObject *tmp23 = NULL ;
8602 PyArrayObject *tmp24 = NULL ;
8603 PyObject *swig_obj[20] ;
8613 arg3 = (
PLINT)(val3);
8618 arg4 = (
PLINT)(val4);
8623 arg5 = (
PLFLT)(val5);
8628 arg6 = (
PLFLT)(val6);
8633 arg7 = (
PLFLT)(val7);
8638 arg8 = (
PLFLT)(val8);
8643 arg9 = (
PLINT)(val9);
8648 arg10 = (
PLINT)(val10);
8653 arg11 = (
PLINT)(val11);
8658 arg12 = (
PLFLT)(val12);
8663 arg13 = (
PLFLT)(val13);
8668 arg14 = (
PLINT)(val14);
8673 arg15 = (
PLFLT)(val15);
8676 if ( tmp16 == NULL )
8678 arg16 =
Alen = PyArray_DIMS( tmp16 )[0];
8679 arg17 = (
PLINT *) PyArray_DATA( tmp16 );
8683 tmp18 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[14], NPY_STRING, 1, 1 );
8684 if ( tmp18 == NULL )
8686 if ( PyArray_DIMS( tmp18 )[0] !=
Alen )
8688 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8691 arg18 = (
char **) malloc(
sizeof (
char* ) * (size_t)
Alen );
8692 for ( i = 0; i <
Alen; i++ )
8694 arg18[i] = (
char *) PyArray_DATA( tmp18 ) + i * PyArray_STRIDES( tmp18 )[0];
8695 if ( arg18[i] == NULL )
8704 tmp19 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[15], NPY_STRING, 1, 1 );
8705 if ( tmp19 == NULL )
8707 Alen = PyArray_DIMS( tmp19 )[0];
8709 arg20 = (
char **) malloc(
sizeof (
char* ) * (size_t)
Alen );
8710 for ( i = 0; i <
Alen; i++ )
8712 arg20[i] = (
char *) PyArray_DATA( tmp19 ) + i * PyArray_STRIDES( tmp19 )[0];
8713 if ( arg20[i] == NULL )
8722 if ( tmp21 == NULL )
8724 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8726 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8729 arg21 = (
PLFLT *) PyArray_DATA( tmp21 );
8733 if ( tmp22 == NULL )
8735 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8737 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8740 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8745 if ( tmp23 == NULL )
8747 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8749 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8752 Xlen = PyArray_DIMS( tmp23 )[0];
8753 arg23 = (
PLINT *) PyArray_DATA( tmp23 );
8755 for ( i = 0; i <
Xlen; i++ )
8756 if ( arg23[i] >
Ylen )
8762 if ( tmp24 == NULL )
8764 if ( PyArray_DIMS( tmp24 )[0] !=
Xlen || PyArray_DIMS( tmp24 )[1] !=
Ylen )
8766 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
8771 for ( i = 0; i <
Xlen; i++ )
8772 arg24[i] = ( (
PLFLT *) PyArray_DATA( tmp24 ) + i * size );
8774 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);
8792 Py_CLEAR( tmp18 ); free( arg18 );
8795 Py_CLEAR( tmp19 ); free( arg20 );
8816 Py_CLEAR( tmp18 ); free( arg18 );
8819 Py_CLEAR( tmp19 ); free( arg20 );
8839 PyObject *resultobj = 0;
8849 PyObject *swig_obj[3] ;
8857 arg1 = (
PLFLT)(val1);
8862 arg2 = (
PLFLT)(val2);
8867 arg3 = (
PLFLT)(val3);
8877 PyObject *resultobj = 0;
8881 PyArrayObject *tmp1 = NULL ;
8882 PyArrayObject *tmp3 = NULL ;
8883 PyObject *swig_obj[2] ;
8891 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8892 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8898 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8900 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8903 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8905 plline(arg1,(
double const *)arg2,(
double const *)arg3);
8926 PyObject *resultobj = 0;
8931 PyArrayObject *tmp1 = NULL ;
8932 PyArrayObject *tmp3 = NULL ;
8933 PyArrayObject *tmp4 = NULL ;
8934 PyObject *swig_obj[3] ;
8942 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8943 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8949 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8951 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8954 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8960 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
8962 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8965 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
8967 plline3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
8994 PyObject *resultobj = 0;
8998 PyObject *swig_obj[1] ;
9007 arg1 = (
PLINT)(val1);
9017 PyObject *resultobj = 0;
9024 PyArrayObject *tmp1 = NULL ;
9025 PyArrayObject *tmp2 = NULL ;
9026 PyArrayObject *tmp3 = NULL ;
9029 PyObject *swig_obj[4] ;
9037 Xlen = PyArray_DIMS( tmp1 )[0];
9038 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9044 Ylen = PyArray_DIMS( tmp2 )[0];
9045 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9052 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9054 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9057 arg4 = PyArray_DIMS( tmp3 )[0];
9058 arg5 = PyArray_DIMS( tmp3 )[1];
9060 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9061 for ( i = 0; i < arg4; i++ )
9062 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9068 arg6 = (
PLINT)(val6);
9069 plmesh((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6);
9098 PyObject *resultobj = 0;
9107 PyArrayObject *tmp1 = NULL ;
9108 PyArrayObject *tmp2 = NULL ;
9109 PyArrayObject *tmp3 = NULL ;
9112 PyArrayObject *tmp7 = NULL ;
9113 PyObject *swig_obj[5] ;
9121 Xlen = PyArray_DIMS( tmp1 )[0];
9122 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9128 Ylen = PyArray_DIMS( tmp2 )[0];
9129 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9136 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9138 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9141 arg4 = PyArray_DIMS( tmp3 )[0];
9142 arg5 = PyArray_DIMS( tmp3 )[1];
9144 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9145 for ( i = 0; i < arg4; i++ )
9146 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9152 arg6 = (
PLINT)(val6);
9157 arg8 = PyArray_DIMS( tmp7 )[0];
9158 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9160 plmeshc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9195 PyObject *resultobj = 0;
9218 PyObject *resultobj = 0;
9219 char *arg1 = (
char *) 0 ;
9223 char *arg5 = (
char *) 0 ;
9236 PyObject *swig_obj[5] ;
9244 arg1 = (
char *)(buf1);
9249 arg2 = (
PLFLT)(val2);
9254 arg3 = (
PLFLT)(val3);
9259 arg4 = (
PLFLT)(val4);
9264 arg5 = (
char *)(buf5);
9265 plmtex((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9278 PyObject *resultobj = 0;
9279 char *arg1 = (
char *) 0 ;
9283 char *arg5 = (
char *) 0 ;
9296 PyObject *swig_obj[5] ;
9304 arg1 = (
char *)(buf1);
9309 arg2 = (
PLFLT)(val2);
9314 arg3 = (
PLFLT)(val3);
9319 arg4 = (
PLFLT)(val4);
9324 arg5 = (
char *)(buf5);
9325 plmtex3((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9338 PyObject *resultobj = 0;
9346 PyArrayObject *tmp1 = NULL ;
9347 PyArrayObject *tmp2 = NULL ;
9348 PyArrayObject *tmp3 = NULL ;
9353 PyObject *swig_obj[5] ;
9361 Xlen = PyArray_DIMS( tmp1 )[0];
9362 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9368 Ylen = PyArray_DIMS( tmp2 )[0];
9369 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9376 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9378 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9381 arg4 = PyArray_DIMS( tmp3 )[0];
9382 arg5 = PyArray_DIMS( tmp3 )[1];
9384 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9385 for ( i = 0; i < arg4; i++ )
9386 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9392 arg6 = (
PLINT)(val6);
9398 plot3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,arg7);
9427 PyObject *resultobj = 0;
9436 PyArrayObject *tmp1 = NULL ;
9437 PyArrayObject *tmp2 = NULL ;
9438 PyArrayObject *tmp3 = NULL ;
9441 PyArrayObject *tmp7 = NULL ;
9442 PyObject *swig_obj[5] ;
9450 Xlen = PyArray_DIMS( tmp1 )[0];
9451 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9457 Ylen = PyArray_DIMS( tmp2 )[0];
9458 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9465 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9467 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9470 arg4 = PyArray_DIMS( tmp3 )[0];
9471 arg5 = PyArray_DIMS( tmp3 )[1];
9473 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9474 for ( i = 0; i < arg4; i++ )
9475 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9481 arg6 = (
PLINT)(val6);
9486 arg8 = PyArray_DIMS( tmp7 )[0];
9487 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9489 plot3dc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9524 PyObject *resultobj = 0;
9537 PyArrayObject *tmp1 = NULL ;
9538 PyArrayObject *tmp2 = NULL ;
9539 PyArrayObject *tmp3 = NULL ;
9542 PyArrayObject *tmp7 = NULL ;
9545 PyArrayObject *tmp10 = NULL ;
9546 PyArrayObject *tmp12 = NULL ;
9547 PyObject *swig_obj[8] ;
9555 Xlen = PyArray_DIMS( tmp1 )[0];
9556 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9562 Ylen = PyArray_DIMS( tmp2 )[0];
9563 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9570 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9572 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9575 arg4 = PyArray_DIMS( tmp3 )[0];
9576 arg5 = PyArray_DIMS( tmp3 )[1];
9578 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9579 for ( i = 0; i < arg4; i++ )
9580 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9586 arg6 = (
PLINT)(val6);
9591 arg8 = PyArray_DIMS( tmp7 )[0];
9592 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9598 arg9 = (
PLINT)(val9);
9601 if ( tmp10 == NULL )
9603 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9604 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9608 if ( tmp12 == NULL )
9610 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9612 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9615 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9617 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);
9664 PyObject *resultobj = 0;
9673 PyArrayObject *tmp1 = NULL ;
9674 PyArrayObject *tmp2 = NULL ;
9675 PyArrayObject *tmp3 = NULL ;
9678 PyArrayObject *tmp7 = NULL ;
9679 PyObject *swig_obj[5] ;
9687 Xlen = PyArray_DIMS( tmp1 )[0];
9688 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9694 Ylen = PyArray_DIMS( tmp2 )[0];
9695 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9702 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9704 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9707 arg4 = PyArray_DIMS( tmp3 )[0];
9708 arg5 = PyArray_DIMS( tmp3 )[1];
9710 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9711 for ( i = 0; i < arg4; i++ )
9712 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9718 arg6 = (
PLINT)(val6);
9723 arg8 = PyArray_DIMS( tmp7 )[0];
9724 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9726 plsurf3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9761 PyObject *resultobj = 0;
9774 PyArrayObject *tmp1 = NULL ;
9775 PyArrayObject *tmp2 = NULL ;
9776 PyArrayObject *tmp3 = NULL ;
9779 PyArrayObject *tmp7 = NULL ;
9782 PyArrayObject *tmp10 = NULL ;
9783 PyArrayObject *tmp12 = NULL ;
9784 PyObject *swig_obj[8] ;
9792 Xlen = PyArray_DIMS( tmp1 )[0];
9793 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9799 Ylen = PyArray_DIMS( tmp2 )[0];
9800 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9807 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9809 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9812 arg4 = PyArray_DIMS( tmp3 )[0];
9813 arg5 = PyArray_DIMS( tmp3 )[1];
9815 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg4 );
9816 for ( i = 0; i < arg4; i++ )
9817 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9823 arg6 = (
PLINT)(val6);
9828 arg8 = PyArray_DIMS( tmp7 )[0];
9829 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9835 arg9 = (
PLINT)(val9);
9838 if ( tmp10 == NULL )
9840 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9841 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9845 if ( tmp12 == NULL )
9847 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9849 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9852 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9854 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);
9901 PyObject *resultobj = 0;
9902 int *arg1 = (
int *) 0 ;
9903 char **arg2 = (
char **) 0 ;
9908 PyObject *swig_obj[2] ;
9915 PyObject *unicode_string;
9917 if ( !PyList_Check( swig_obj[0] ) )
9919 PyErr_SetString( PyExc_ValueError,
"Expecting a list" );
9922 tmp1 = PyList_Size( swig_obj[0] );
9924 arg2 = (
char **) malloc( (
size_t) ( tmp1 + 1 ) *
sizeof (
char * ) );
9925 for ( i = 0; i < tmp1; i++ )
9927 PyObject *s = PyList_GetItem( swig_obj[0], i );
9928 if ( PyString_Check( s ) )
9930 arg2[i] = PyString_AsString( s );
9932 else if ( PyUnicode_Check( s ) )
9935 unicode_string = PyUnicode_AsEncodedString( s,
"utf-8",
"Error ~" );
9936 arg2[i] = PyBytes_AS_STRING( unicode_string );
9941 PyErr_SetString( PyExc_ValueError,
"List items must be strings" );
9951 arg3 = (
PLINT)(val3);
9969 PyObject *resultobj = 0;
9973 PyArrayObject *tmp1 = NULL ;
9974 PyArrayObject *tmp3 = NULL ;
9975 PyObject *swig_obj[2] ;
9983 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
9984 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
9990 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
9992 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9995 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
9997 plpat(arg1,(
int const *)arg2,(
int const *)arg3);
10018 PyObject *resultobj = 0;
10034 PyObject *swig_obj[5] ;
10042 arg1 = (
PLINT)(val1);
10047 arg2 = (
PLFLT)(val2);
10052 arg3 = (
PLFLT)(val3);
10057 arg4 = (
PLFLT)(val4);
10062 arg5 = (
PLFLT)(val5);
10063 plpath(arg1,arg2,arg3,arg4,arg5);
10072 PyObject *resultobj = 0;
10077 PyArrayObject *tmp1 = NULL ;
10078 PyArrayObject *tmp3 = NULL ;
10081 PyObject *swig_obj[3] ;
10087 if ( tmp1 == NULL )
10089 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10090 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10094 if ( tmp3 == NULL )
10096 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10098 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10101 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10107 arg4 = (
PLINT)(val4);
10108 plpoin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
10129 PyObject *resultobj = 0;
10135 PyArrayObject *tmp1 = NULL ;
10136 PyArrayObject *tmp3 = NULL ;
10137 PyArrayObject *tmp4 = NULL ;
10140 PyObject *swig_obj[4] ;
10146 if ( tmp1 == NULL )
10148 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10149 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10153 if ( tmp3 == NULL )
10155 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10157 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10160 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10164 if ( tmp4 == NULL )
10166 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10168 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10171 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10177 arg5 = (
PLINT)(val5);
10178 plpoin3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,arg5);
10205 PyObject *resultobj = 0;
10212 PyArrayObject *tmp1 = NULL ;
10213 PyArrayObject *tmp3 = NULL ;
10214 PyArrayObject *tmp4 = NULL ;
10215 PyArrayObject *tmp5 = NULL ;
10218 PyObject *swig_obj[5] ;
10224 if ( tmp1 == NULL )
10226 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10227 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10231 if ( tmp3 == NULL )
10233 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10235 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10238 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10242 if ( tmp4 == NULL )
10244 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10246 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10249 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10253 if ( tmp5 == NULL )
10255 if ( PyArray_DIMS( tmp5 )[0] <
Alen - 1 )
10257 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
10260 arg5 = (
PLINT *) PyArray_DATA( tmp5 );
10267 plpoly3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
int const *)arg5,arg6);
10300 PyObject *resultobj = 0;
10307 PyObject *swig_obj[2] ;
10315 arg1 = (
PLINT)(val1);
10320 arg2 = (
PLINT)(val2);
10330 PyObject *resultobj = 0;
10334 PyObject *swig_obj[1] ;
10338 swig_obj[0] = args;
10343 arg1 = (
PLINT)(val1);
10353 PyObject *resultobj = 0;
10359 char *arg6 = (
char *) 0 ;
10373 PyObject *swig_obj[6] ;
10381 arg1 = (
PLFLT)(val1);
10386 arg2 = (
PLFLT)(val2);
10391 arg3 = (
PLFLT)(val3);
10396 arg4 = (
PLFLT)(val4);
10401 arg5 = (
PLFLT)(val5);
10406 arg6 = (
char *)(buf6);
10407 plptex(arg1,arg2,arg3,arg4,arg5,(
char const *)arg6);
10418 PyObject *resultobj = 0;
10429 char *arg11 = (
char *) 0 ;
10453 PyObject *swig_obj[11] ;
10461 arg1 = (
PLFLT)(val1);
10466 arg2 = (
PLFLT)(val2);
10471 arg3 = (
PLFLT)(val3);
10476 arg4 = (
PLFLT)(val4);
10481 arg5 = (
PLFLT)(val5);
10486 arg6 = (
PLFLT)(val6);
10491 arg7 = (
PLFLT)(val7);
10496 arg8 = (
PLFLT)(val8);
10501 arg9 = (
PLFLT)(val9);
10506 arg10 = (
PLFLT)(val10);
10511 arg11 = (
char *)(buf11);
10512 plptex3(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(
char const *)arg11);
10523 PyObject *resultobj = 0;
10537 PyObject *resultobj = 0;
10550 PyObject *resultobj = 0;
10569 PyObject *swig_obj[3] ;
10580 arg1 = (
PLFLT)(val1);
10585 arg2 = (
PLFLT)(val2);
10590 arg3 = (
PLFLT)(val3);
10591 plrgbhls(arg1,arg2,arg3,arg4,arg5,arg6);
10618 PyObject *resultobj = 0;
10625 PyObject *swig_obj[2] ;
10633 arg1 = (
PLFLT)(val1);
10638 arg2 = (
PLFLT)(val2);
10648 PyObject *resultobj = 0;
10653 PyArrayObject *tmp1 = NULL ;
10654 PyArrayObject *tmp2 = NULL ;
10655 PyArrayObject *tmp3 = NULL ;
10656 PyObject *swig_obj[3] ;
10662 if ( tmp1 == NULL )
10664 Alen = PyArray_DIMS( tmp1 )[0];
10665 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10669 if ( tmp2 == NULL )
10671 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10673 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10676 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10680 if ( tmp3 == NULL )
10682 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10684 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10687 arg4 = PyArray_DIMS( tmp3 )[0];
10688 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10690 plscmap0((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10717 PyObject *resultobj = 0;
10723 PyArrayObject *tmp1 = NULL ;
10724 PyArrayObject *tmp2 = NULL ;
10725 PyArrayObject *tmp3 = NULL ;
10726 PyArrayObject *tmp4 = NULL ;
10727 PyObject *swig_obj[4] ;
10733 if ( tmp1 == NULL )
10735 Alen = PyArray_DIMS( tmp1 )[0];
10736 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10740 if ( tmp2 == NULL )
10742 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10744 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10747 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10751 if ( tmp3 == NULL )
10753 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10755 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10758 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10762 if ( tmp4 == NULL )
10764 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10766 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10769 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10770 arg5 = PyArray_DIMS( tmp4 )[0];
10772 plscmap0a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
10805 PyObject *resultobj = 0;
10809 PyObject *swig_obj[1] ;
10813 swig_obj[0] = args;
10818 arg1 = (
PLINT)(val1);
10828 PyObject *resultobj = 0;
10833 PyArrayObject *tmp1 = NULL ;
10834 PyArrayObject *tmp2 = NULL ;
10835 PyArrayObject *tmp3 = NULL ;
10836 PyObject *swig_obj[3] ;
10842 if ( tmp1 == NULL )
10844 Alen = PyArray_DIMS( tmp1 )[0];
10845 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10849 if ( tmp2 == NULL )
10851 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10853 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10856 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10860 if ( tmp3 == NULL )
10862 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10864 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10867 arg4 = PyArray_DIMS( tmp3 )[0];
10868 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10870 plscmap1((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10897 PyObject *resultobj = 0;
10903 PyArrayObject *tmp1 = NULL ;
10904 PyArrayObject *tmp2 = NULL ;
10905 PyArrayObject *tmp3 = NULL ;
10906 PyArrayObject *tmp4 = NULL ;
10907 PyObject *swig_obj[4] ;
10913 if ( tmp1 == NULL )
10915 Alen = PyArray_DIMS( tmp1 )[0];
10916 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10920 if ( tmp2 == NULL )
10922 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10924 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10927 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10931 if ( tmp3 == NULL )
10933 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10935 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10938 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10942 if ( tmp4 == NULL )
10944 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10946 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10949 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10950 arg5 = PyArray_DIMS( tmp4 )[0];
10952 plscmap1a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
10985 PyObject *resultobj = 0;
10995 PyArrayObject *tmp2 = NULL ;
10996 PyArrayObject *tmp4 = NULL ;
10997 PyArrayObject *tmp5 = NULL ;
10998 PyArrayObject *tmp6 = NULL ;
10999 PyArrayObject *tmp7 = NULL ;
11000 PyObject *swig_obj[6] ;
11011 if ( tmp2 == NULL )
11013 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11014 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11018 if ( tmp4 == NULL )
11020 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11022 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11025 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11029 if ( tmp5 == NULL )
11031 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11033 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11036 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11040 if ( tmp6 == NULL )
11042 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11044 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11047 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11051 if ( tmp7 == NULL )
11053 if ( PyArray_DIMS( tmp7 )[0] <
Alen - 1 )
11055 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11058 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
11060 plscmap1l(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
int const *)arg7);
11099 PyObject *resultobj = 0;
11110 PyArrayObject *tmp2 = NULL ;
11111 PyArrayObject *tmp4 = NULL ;
11112 PyArrayObject *tmp5 = NULL ;
11113 PyArrayObject *tmp6 = NULL ;
11114 PyArrayObject *tmp7 = NULL ;
11115 PyArrayObject *tmp8 = NULL ;
11116 PyObject *swig_obj[7] ;
11127 if ( tmp2 == NULL )
11129 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11130 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11134 if ( tmp4 == NULL )
11136 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11138 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11141 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11145 if ( tmp5 == NULL )
11147 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11149 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11152 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11156 if ( tmp6 == NULL )
11158 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11160 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11163 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11167 if ( tmp7 == NULL )
11169 if ( PyArray_DIMS( tmp7 )[0] !=
Alen )
11171 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11174 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
11178 if ( tmp8 == NULL )
11180 if ( PyArray_DIMS( tmp8 )[0] <
Alen - 1 )
11182 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11185 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
11187 plscmap1la(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
double const *)arg7,(
int const *)arg8);
11232 PyObject *resultobj = 0;
11236 PyObject *swig_obj[1] ;
11240 swig_obj[0] = args;
11245 arg1 = (
PLINT)(val1);
11255 PyObject *resultobj = 0;
11262 PyObject *swig_obj[2] ;
11270 arg1 = (
PLFLT)(val1);
11275 arg2 = (
PLFLT)(val2);
11285 PyObject *resultobj = 0;
11318 PyObject *resultobj = 0;
11331 PyObject *swig_obj[4] ;
11339 arg1 = (
PLINT)(val1);
11344 arg2 = (
PLINT)(val2);
11349 arg3 = (
PLINT)(val3);
11354 arg4 = (
PLINT)(val4);
11355 plscol0(arg1,arg2,arg3,arg4);
11364 PyObject *resultobj = 0;
11380 PyObject *swig_obj[5] ;
11388 arg1 = (
PLINT)(val1);
11393 arg2 = (
PLINT)(val2);
11398 arg3 = (
PLINT)(val3);
11403 arg4 = (
PLINT)(val4);
11408 arg5 = (
PLFLT)(val5);
11409 plscol0a(arg1,arg2,arg3,arg4,arg5);
11418 PyObject *resultobj = 0;
11428 PyObject *swig_obj[3] ;
11436 arg1 = (
PLINT)(val1);
11441 arg2 = (
PLINT)(val2);
11446 arg3 = (
PLINT)(val3);
11456 PyObject *resultobj = 0;
11469 PyObject *swig_obj[4] ;
11477 arg1 = (
PLINT)(val1);
11482 arg2 = (
PLINT)(val2);
11487 arg3 = (
PLINT)(val3);
11492 arg4 = (
PLFLT)(val4);
11502 PyObject *resultobj = 0;
11506 PyObject *swig_obj[1] ;
11510 swig_obj[0] = args;
11515 arg1 = (
PLINT)(val1);
11525 PyObject *resultobj = 0;
11529 PyObject *swig_obj[1] ;
11533 swig_obj[0] = args;
11538 arg1 = (
PLINT)(val1);
11548 PyObject *resultobj = 0;
11549 char *arg1 = (
char *) 0 ;
11553 PyObject *swig_obj[1] ;
11557 swig_obj[0] = args;
11562 arg1 = (
char *)(buf1);
11563 plsdev((
char const *)arg1);
11574 PyObject *resultobj = 0;
11587 PyObject *swig_obj[4] ;
11595 arg1 = (
PLFLT)(val1);
11600 arg2 = (
PLFLT)(val2);
11605 arg3 = (
PLFLT)(val3);
11610 arg4 = (
PLFLT)(val4);
11620 PyObject *resultobj = 0;
11639 PyObject *swig_obj[6] ;
11647 arg1 = (
PLINT)(val1);
11652 arg2 = (
PLINT)(val2);
11657 arg3 = (
PLINT)(val3);
11662 arg4 = (
PLINT)(val4);
11667 arg5 = (
PLFLT)(val5);
11672 arg6 = (
PLFLT)(val6);
11673 plsdimap(arg1,arg2,arg3,arg4,arg5,arg6);
11682 PyObject *resultobj = 0;
11686 PyObject *swig_obj[1] ;
11690 swig_obj[0] = args;
11695 arg1 = (
PLFLT)(val1);
11705 PyObject *resultobj = 0;
11718 PyObject *swig_obj[4] ;
11726 arg1 = (
PLFLT)(val1);
11731 arg2 = (
PLFLT)(val2);
11736 arg3 = (
PLFLT)(val3);
11741 arg4 = (
PLFLT)(val4);
11751 PyObject *resultobj = 0;
11764 PyObject *swig_obj[4] ;
11772 arg1 = (
PLFLT)(val1);
11777 arg2 = (
PLFLT)(val2);
11782 arg3 = (
PLFLT)(val3);
11787 arg4 = (
PLFLT)(val4);
11797 PyObject *resultobj = 0;
11798 unsigned int arg1 ;
11799 unsigned int val1 ;
11801 PyObject *swig_obj[1] ;
11805 swig_obj[0] = args;
11810 arg1 = (
unsigned int)(val1);
11820 PyObject *resultobj = 0;
11824 PyObject *swig_obj[1] ;
11828 swig_obj[0] = args;
11833 arg1 = (char)(val1);
11843 PyObject *resultobj = 0;
11844 char *arg1 = (
char *) 0 ;
11845 char *arg2 = (
char *) 0 ;
11852 PyObject *swig_obj[2] ;
11861 arg1 = (
char *)(buf1);
11866 arg2 = (
char *)(buf2);
11867 result = (
PLINT)
plsetopt((
char const *)arg1,(
char const *)arg2);
11880 PyObject *resultobj = 0;
11890 PyObject *swig_obj[3] ;
11898 arg1 = (
PLINT)(val1);
11903 arg2 = (
PLINT)(val2);
11908 arg3 = (
PLINT)(val3);
11918 PyObject *resultobj = 0;
11920 unsigned int val1 ;
11922 PyObject *swig_obj[1] ;
11926 swig_obj[0] = args;
11941 PyObject *resultobj = 0;
11942 char *arg1 = (
char *) 0 ;
11946 PyObject *swig_obj[1] ;
11950 swig_obj[0] = args;
11955 arg1 = (
char *)(buf1);
11967 PyObject *resultobj = 0;
11977 PyObject *swig_obj[3] ;
11985 arg1 = (
PLINT)(val1);
11990 arg2 = (
PLINT)(val2);
11995 arg3 = (
PLINT)(val3);
12005 PyObject *resultobj = 0;
12023 PyArrayObject *tmp1 = NULL ;
12032 PyArrayObject *tmp9 = NULL ;
12041 PyObject *swig_obj[12] ;
12061 if ( tmp1 == NULL )
12063 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12064 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12066 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
12067 for ( i = 0; i < arg2; i++ )
12068 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12074 arg5 = (
PLFLT)(val5);
12079 arg6 = (
PLFLT)(val6);
12084 arg7 = (
PLFLT)(val7);
12089 arg8 = (
PLFLT)(val8);
12092 if ( tmp9 == NULL )
12094 arg10 = PyArray_DIMS( tmp9 )[0];
12095 arg9 = (
PLFLT *) PyArray_DATA( tmp9 );
12101 arg11 = (
PLFLT)(val11);
12106 arg12 = (
PLINT)(val12);
12111 arg13 = (
PLFLT)(val13);
12116 arg15 = (
PLBOOL)(val15);
12117 if (swig_obj[10]) {
12120 if ( swig_obj[10] == Py_None )
12126 if ( !PyCallable_Check( (PyObject *) swig_obj[10] ) )
12128 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12135 if (swig_obj[11]) {
12137 if ( swig_obj[11] == Py_None )
12145 plshades((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(
double const *)arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17);
12180 PyObject *resultobj = 0;
12202 PyArrayObject *tmp1 = NULL ;
12231 PyObject *swig_obj[17] ;
12251 if ( tmp1 == NULL )
12253 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12254 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12256 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
12257 for ( i = 0; i < arg2; i++ )
12258 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12264 arg5 = (
PLFLT)(val5);
12269 arg6 = (
PLFLT)(val6);
12274 arg7 = (
PLFLT)(val7);
12279 arg8 = (
PLFLT)(val8);
12284 arg9 = (
PLFLT)(val9);
12289 arg10 = (
PLFLT)(val10);
12294 arg11 = (
PLINT)(val11);
12299 arg12 = (
PLFLT)(val12);
12304 arg13 = (
PLFLT)(val13);
12309 arg14 = (
PLINT)(val14);
12314 arg15 = (
PLFLT)(val15);
12319 arg16 = (
PLINT)(val16);
12324 arg17 = (
PLFLT)(val17);
12329 arg19 = (
PLBOOL)(val19);
12330 if (swig_obj[15]) {
12333 if ( swig_obj[15] == Py_None )
12339 if ( !PyCallable_Check( (PyObject *) swig_obj[15] ) )
12341 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12348 if (swig_obj[16]) {
12350 if ( swig_obj[16] == Py_None )
12358 plshade((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17,arg18,arg19,arg20,arg21);
12387 PyObject *resultobj = 0;
12391 PyObject *swig_obj[2] ;
12403 if ( swig_obj[0] == Py_None )
12409 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
12411 PyErr_SetString( PyExc_ValueError,
"label_func argument must be callable" );
12415 Py_XINCREF( (PyObject *) swig_obj[0] );
12434 PyObject *resultobj = 0;
12441 PyObject *swig_obj[2] ;
12449 arg1 = (
PLFLT)(val1);
12454 arg2 = (
PLFLT)(val2);
12464 PyObject *resultobj = 0;
12467 void *arg3 = (
void *) 0 ;
12472 PyObject *swig_obj[3] ;
12480 arg1 = (
PLINT)(val1);
12485 arg2 = (
PLINT)(val2);
12487 int res;
void *
buf = 0;
12488#ifndef Py_LIMITED_API
12490 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12492#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12493#pragma GCC diagnostic push
12494#pragma GCC diagnostic ignored "-Wdeprecated"
12495#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12496#elif defined(_MSC_VER)
12497#pragma warning(push)
12498#pragma warning(disable: 4996)
12501 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12502#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12503#pragma GCC diagnostic pop
12504#elif defined(_MSC_VER)
12505#pragma warning(pop)
12512#ifndef Py_LIMITED_API
12514 PyBuffer_Release(&view);
12516 arg3 = (
void *)
buf;
12527 PyObject *resultobj = 0;
12530 void *arg3 = (
void *) 0 ;
12535 PyObject *swig_obj[3] ;
12543 arg1 = (
PLINT)(val1);
12548 arg2 = (
PLINT)(val2);
12550 int res;
void *
buf = 0;
12551#ifndef Py_LIMITED_API
12553 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12555#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12556#pragma GCC diagnostic push
12557#pragma GCC diagnostic ignored "-Wdeprecated"
12558#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12559#elif defined(_MSC_VER)
12560#pragma warning(push)
12561#pragma warning(disable: 4996)
12564 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12565#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12566#pragma GCC diagnostic pop
12567#elif defined(_MSC_VER)
12568#pragma warning(pop)
12575#ifndef Py_LIMITED_API
12577 PyBuffer_Release(&view);
12579 arg3 = (
void *)
buf;
12590 PyObject *resultobj = 0;
12597 PyObject *swig_obj[2] ;
12605 arg1 = (
PLFLT)(val1);
12610 arg2 = (
PLFLT)(val2);
12620 PyObject *resultobj = 0;
12624 PyObject *swig_obj[1] ;
12628 swig_obj[0] = args;
12633 arg1 = (
PLINT)(val1);
12643 PyObject *resultobj = 0;
12662 PyObject *swig_obj[6] ;
12670 arg1 = (
PLFLT)(val1);
12675 arg2 = (
PLFLT)(val2);
12680 arg3 = (
PLINT)(val3);
12685 arg4 = (
PLINT)(val4);
12690 arg5 = (
PLINT)(val5);
12695 arg6 = (
PLINT)(val6);
12696 plspage(arg1,arg2,arg3,arg4,arg5,arg6);
12705 PyObject *resultobj = 0;
12706 char *arg1 = (
char *) 0 ;
12710 PyObject *swig_obj[1] ;
12714 swig_obj[0] = args;
12719 arg1 = (
char *)(buf1);
12731 PyObject *resultobj = 0;
12732 char *arg1 = (
char *) 0 ;
12739 PyObject *swig_obj[2] ;
12747 arg1 = (
char *)(buf1);
12753 plspal1((
char const *)arg1,arg2);
12764 PyObject *resultobj = 0;
12768 PyObject *swig_obj[1] ;
12772 swig_obj[0] = args;
12787 PyObject *resultobj = 0;
12791 PyObject *swig_obj[1] ;
12795 swig_obj[0] = args;
12800 arg1 = (
PLINT)(val1);
12810 PyObject *resultobj = 0;
12817 PyObject *swig_obj[2] ;
12825 arg1 = (
PLINT)(val1);
12830 arg2 = (
PLINT)(val2);
12840 PyObject *resultobj = 0;
12847 PyObject *swig_obj[2] ;
12855 arg1 = (
PLFLT)(val1);
12860 arg2 = (
PLFLT)(val2);
12870 PyObject *resultobj = 0;
12877 PyObject *swig_obj[2] ;
12885 arg1 = (
PLINT)(val1);
12890 arg2 = (
PLINT)(val2);
12900 PyObject *resultobj = 0;
12901 char *arg1 = (
char *) 0 ;
12911 PyObject *swig_obj[3] ;
12919 arg1 = (
char *)(buf1);
12924 arg2 = (
PLINT)(val2);
12929 arg3 = (
PLINT)(val3);
12930 plstart((
char const *)arg1,arg2,arg3);
12941 PyObject *resultobj = 0;
12945 PyObject *swig_obj[2] ;
12958 if ( swig_obj[0] == Py_None )
12964 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
12966 PyErr_SetString( PyExc_ValueError,
"coordinate transform argument must be callable" );
12988 PyObject *resultobj = 0;
12992 char *arg4 = (
char *) 0 ;
12993 PyArrayObject *tmp1 = NULL ;
12994 PyArrayObject *tmp3 = NULL ;
12998 PyObject *swig_obj[3] ;
13004 if ( tmp1 == NULL )
13006 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13007 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13011 if ( tmp3 == NULL )
13013 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13015 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13018 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13024 arg4 = (
char *)(buf4);
13025 plstring(arg1,(
double const *)arg2,(
double const *)arg3,(
char const *)arg4);
13048 PyObject *resultobj = 0;
13053 char *arg5 = (
char *) 0 ;
13054 PyArrayObject *tmp1 = NULL ;
13055 PyArrayObject *tmp3 = NULL ;
13056 PyArrayObject *tmp4 = NULL ;
13060 PyObject *swig_obj[4] ;
13066 if ( tmp1 == NULL )
13068 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13069 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13073 if ( tmp3 == NULL )
13075 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13077 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13080 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13084 if ( tmp4 == NULL )
13086 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
13088 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13091 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
13097 arg5 = (
char *)(buf5);
13098 plstring3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
char const *)arg5);
13127 PyObject *resultobj = 0;
13140 PyObject *swig_obj[4] ;
13148 arg1 = (
PLINT)(val1);
13153 arg2 = (
PLINT)(val2);
13158 arg3 = (
PLFLT)(val3);
13163 arg4 = (
PLFLT)(val4);
13173 PyObject *resultobj = 0;
13175 char *arg2 = (
char *) 0 ;
13176 char *arg3 = (
char *) 0 ;
13190 char **arg17 = (
char **) (
char **)0 ;
13191 char *arg18 = (
char *) 0 ;
13192 char *arg19 = (
char *) 0 ;
13193 char *arg20 = (
char *) 0 ;
13224 PyArrayObject *tmp15 = NULL ;
13225 PyArrayObject *tmp16 = NULL ;
13226 char **tmp17 = NULL ;
13236 PyObject *swig_obj[19] ;
13245 arg2 = (
char *)(buf2);
13250 arg3 = (
char *)(buf3);
13255 arg4 = (
PLFLT)(val4);
13260 arg5 = (
PLFLT)(val5);
13265 arg6 = (
PLFLT)(val6);
13270 arg7 = (
PLFLT)(val7);
13275 arg8 = (
PLFLT)(val8);
13280 arg9 = (
PLFLT)(val9);
13285 arg10 = (
PLFLT)(val10);
13290 arg11 = (
PLBOOL)(val11);
13295 arg12 = (
PLBOOL)(val12);
13300 arg13 = (
PLINT)(val13);
13305 arg14 = (
PLINT)(val14);
13308 if ( tmp15 == NULL )
13310 Alen = PyArray_DIMS( tmp15 )[0];
13311 arg15 = (
PLINT *) PyArray_DATA( tmp15 );
13315 if ( tmp16 == NULL )
13317 if ( PyArray_DIMS( tmp16 )[0] !=
Alen )
13319 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13322 arg16 = (
PLINT *) PyArray_DATA( tmp16 );
13326 PyObject *elt, *unicode_string;
13328 if ( !PySequence_Check( swig_obj[15] ) ||
PySequence_Size( swig_obj[15] ) != 4 )
13330 PyErr_SetString( PyExc_ValueError,
"Requires a sequence of 4 strings." );
13335 PyErr_SetString( PyExc_ValueError,
"colline and styline args must be length 4." );
13338 tmp17 = (
char **) malloc(
sizeof (
char* ) * 4 );
13339 if ( tmp17 == NULL )
13342 for ( i = 0; i < 4; i++ )
13346 if ( PyString_Check( elt ) )
13348 arg17[i] = PyString_AsString( elt );
13350 else if ( PyUnicode_Check( elt ) )
13352 unicode_string = PyUnicode_AsEncodedString( elt,
"utf-8",
"Error ~" );
13353 arg17[i] = PyBytes_AS_STRING( unicode_string );
13355 if ( arg17[i] == NULL )
13366 arg18 = (
char *)(buf18);
13371 arg19 = (
char *)(buf19);
13376 arg20 = (
char *)(buf20);
13377 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);
13420 PyObject *resultobj = 0;
13424 PyObject *swig_obj[1] ;
13428 swig_obj[0] = args;
13433 arg1 = (
PLINT)(val1);
13443 PyObject *resultobj = 0;
13447 PyArrayObject *tmp1 = NULL ;
13448 PyArrayObject *tmp3 = NULL ;
13449 PyObject *swig_obj[2] ;
13455 if ( tmp1 == NULL )
13457 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13458 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
13462 if ( tmp3 == NULL )
13464 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13466 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13469 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
13471 plstyl(arg1,(
int const *)arg2,(
int const *)arg3);
13492 PyObject *resultobj = 0;
13497 PyArrayObject *tmp1 = NULL ;
13498 PyArrayObject *tmp2 = NULL ;
13501 PyObject *swig_obj[3] ;
13506 if ( swig_obj[0] != Py_None )
13509 if ( tmp1 == NULL )
13511 Alen = PyArray_DIMS( tmp1 )[0];
13512 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
13521 if ( swig_obj[1] != Py_None )
13524 if ( tmp2 == NULL )
13526 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
13528 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13531 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
13532 arg3 = PyArray_DIMS( tmp2 )[0];
13545 plsvect((
double const *)arg1,(
double const *)arg2,arg3,arg4);
13566 PyObject *resultobj = 0;
13579 PyObject *swig_obj[4] ;
13587 arg1 = (
PLFLT)(val1);
13592 arg2 = (
PLFLT)(val2);
13597 arg3 = (
PLFLT)(val3);
13602 arg4 = (
PLFLT)(val4);
13603 plsvpa(arg1,arg2,arg3,arg4);
13612 PyObject *resultobj = 0;
13619 PyObject *swig_obj[2] ;
13627 arg1 = (
PLINT)(val1);
13632 arg2 = (
PLINT)(val2);
13642 PyObject *resultobj = 0;
13649 PyObject *swig_obj[2] ;
13657 arg1 = (
PLINT)(val1);
13662 arg2 = (
PLINT)(val2);
13672 PyObject *resultobj = 0;
13677 PyArrayObject *tmp1 = NULL ;
13678 PyArrayObject *tmp3 = NULL ;
13681 PyObject *swig_obj[3] ;
13687 if ( tmp1 == NULL )
13689 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13690 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13694 if ( tmp3 == NULL )
13696 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13698 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13701 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13707 arg4 = (
PLINT)(val4);
13708 plsym(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
13729 PyObject *resultobj = 0;
13736 PyObject *swig_obj[2] ;
13744 arg1 = (
PLINT)(val1);
13749 arg2 = (
PLINT)(val2);
13759 PyObject *resultobj = 0;
13772 PyObject *resultobj = 0;
13773 char *arg1 = (
char *) 0 ;
13777 PyObject *swig_obj[1] ;
13781 swig_obj[0] = args;
13786 arg1 = (
char *)(buf1);
13798 PyObject *resultobj = 0;
13802 PyObject *swig_obj[1] ;
13806 swig_obj[0] = args;
13811 arg1 = (
PLFLT)(val1);
13821 PyObject *resultobj = 0;
13829 PyArrayObject *tmp1 = NULL ;
13830 PyArrayObject *tmp2 = NULL ;
13833 PyObject *swig_obj[5] ;
13847 if ( tmp1 == NULL )
13849 Xlen = PyArray_DIMS( tmp1 )[0];
13850 Ylen = PyArray_DIMS( tmp1 )[1];
13853 for ( i = 0; i <
Xlen; i++ )
13854 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
13859 if ( tmp2 == NULL )
13861 if (
Xlen != PyArray_DIMS( tmp2 )[0] ||
Ylen != PyArray_DIMS( tmp2 )[1] )
13863 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
13866 arg3 = PyArray_DIMS( tmp2 )[0];
13867 arg4 = PyArray_DIMS( tmp2 )[1];
13869 arg2 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg3 );
13870 for ( i = 0; i < arg3; i++ )
13871 arg2[i] = ( (
PLFLT *) PyArray_DATA( tmp2 ) + i * size );
13877 arg5 = (
PLFLT)(val5);
13881 if ( swig_obj[3] == Py_None )
13887 if ( !PyCallable_Check( (PyObject *) swig_obj[3] ) )
13889 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
13898 if ( swig_obj[4] == Py_None )
13906 plvect((
double const **)arg1,(
double const **)arg2,arg3,arg4,arg5,arg6,arg7);
13943 PyObject *resultobj = 0;
13959 PyObject *swig_obj[5] ;
13967 arg1 = (
PLFLT)(val1);
13972 arg2 = (
PLFLT)(val2);
13977 arg3 = (
PLFLT)(val3);
13982 arg4 = (
PLFLT)(val4);
13987 arg5 = (
PLFLT)(val5);
13988 plvpas(arg1,arg2,arg3,arg4,arg5);
13997 PyObject *resultobj = 0;
14010 PyObject *swig_obj[4] ;
14018 arg1 = (
PLFLT)(val1);
14023 arg2 = (
PLFLT)(val2);
14028 arg3 = (
PLFLT)(val3);
14033 arg4 = (
PLFLT)(val4);
14034 plvpor(arg1,arg2,arg3,arg4);
14043 PyObject *resultobj = 0;
14056 PyObject *resultobj = 0;
14090 PyObject *swig_obj[11] ;
14098 arg1 = (
PLFLT)(val1);
14103 arg2 = (
PLFLT)(val2);
14108 arg3 = (
PLFLT)(val3);
14113 arg4 = (
PLFLT)(val4);
14118 arg5 = (
PLFLT)(val5);
14123 arg6 = (
PLFLT)(val6);
14128 arg7 = (
PLFLT)(val7);
14133 arg8 = (
PLFLT)(val8);
14138 arg9 = (
PLFLT)(val9);
14143 arg10 = (
PLFLT)(val10);
14148 arg11 = (
PLFLT)(val11);
14149 plw3d(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
14158 PyObject *resultobj = 0;
14162 PyObject *swig_obj[1] ;
14166 swig_obj[0] = args;
14171 arg1 = (
PLFLT)(val1);
14181 PyObject *resultobj = 0;
14194 PyObject *swig_obj[4] ;
14202 arg1 = (
PLFLT)(val1);
14207 arg2 = (
PLFLT)(val2);
14212 arg3 = (
PLFLT)(val3);
14217 arg4 = (
PLFLT)(val4);
14218 plwind(arg1,arg2,arg3,arg4);
14227 PyObject *resultobj = 0;
14234 PyObject *swig_obj[1] ;
14239 swig_obj[0] = args;
14260 PyObject *resultobj = 0;
14262 char *arg2 = (
char *) 0 ;
14278 PyObject *swig_obj[6] ;
14284 if ( swig_obj[0] == Py_None )
14290 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14292 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14302 arg2 = (
char *)(buf2);
14307 arg3 = (
PLFLT)(val3);
14312 arg4 = (
PLFLT)(val4);
14317 arg5 = (
PLFLT)(val5);
14322 arg6 = (
PLFLT)(val6);
14323 plmap(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6);
14340 PyObject *resultobj = 0;
14342 char *arg2 = (
char *) 0 ;
14360 PyArrayObject *tmp7 = NULL ;
14361 PyObject *swig_obj[7] ;
14367 if ( swig_obj[0] == Py_None )
14373 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14375 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14385 arg2 = (
char *)(buf2);
14390 arg3 = (
PLFLT)(val3);
14395 arg4 = (
PLFLT)(val4);
14400 arg5 = (
PLFLT)(val5);
14405 arg6 = (
PLFLT)(val6);
14407 if ( swig_obj[6] != Py_None )
14410 if ( tmp7 == NULL )
14412 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14413 arg8 = PyArray_DIMS( tmp7 )[0];
14421 plmapline(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14444 PyObject *resultobj = 0;
14446 char *arg2 = (
char *) 0 ;
14447 char *arg3 = (
char *) 0 ;
14468 PyArrayObject *tmp8 = NULL ;
14469 PyObject *swig_obj[8] ;
14475 if ( swig_obj[0] == Py_None )
14481 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14483 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14493 arg2 = (
char *)(buf2);
14498 arg3 = (
char *)(buf3);
14503 arg4 = (
PLFLT)(val4);
14508 arg5 = (
PLFLT)(val5);
14513 arg6 = (
PLFLT)(val6);
14518 arg7 = (
PLFLT)(val7);
14520 if ( swig_obj[7] != Py_None )
14523 if ( tmp8 == NULL )
14525 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
14526 arg9 = PyArray_DIMS( tmp8 )[0];
14534 plmapstring(arg1,(
char const *)arg2,(
char const *)arg3,arg4,arg5,arg6,arg7,(
int const *)arg8,arg9);
14559 PyObject *resultobj = 0;
14561 char *arg2 = (
char *) 0 ;
14565 char *arg6 = (
char *) 0 ;
14593 PyObject *swig_obj[11] ;
14599 if ( swig_obj[0] == Py_None )
14605 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14607 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14617 arg2 = (
char *)(buf2);
14622 arg3 = (
PLFLT)(val3);
14627 arg4 = (
PLFLT)(val4);
14632 arg5 = (
PLFLT)(val5);
14637 arg6 = (
char *)(buf6);
14642 arg7 = (
PLFLT)(val7);
14647 arg8 = (
PLFLT)(val8);
14652 arg9 = (
PLFLT)(val9);
14657 arg10 = (
PLFLT)(val10);
14662 arg11 = (
PLINT)(val11);
14663 plmaptex(arg1,(
char const *)arg2,arg3,arg4,arg5,(
char const *)arg6,arg7,arg8,arg9,arg10,arg11);
14682 PyObject *resultobj = 0;
14684 char *arg2 = (
char *) 0 ;
14702 PyArrayObject *tmp7 = NULL ;
14703 PyObject *swig_obj[7] ;
14709 if ( swig_obj[0] == Py_None )
14715 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14717 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14727 arg2 = (
char *)(buf2);
14732 arg3 = (
PLFLT)(val3);
14737 arg4 = (
PLFLT)(val4);
14742 arg5 = (
PLFLT)(val5);
14747 arg6 = (
PLFLT)(val6);
14749 if ( swig_obj[6] != Py_None )
14752 if ( tmp7 == NULL )
14754 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14755 arg8 = PyArray_DIMS( tmp7 )[0];
14763 plmapfill(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14786 PyObject *resultobj = 0;
14806 PyObject *swig_obj[7] ;
14812 if ( swig_obj[0] == Py_None )
14818 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14820 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14830 arg2 = (
PLFLT)(val2);
14835 arg3 = (
PLFLT)(val3);
14840 arg4 = (
PLFLT)(val4);
14845 arg5 = (
PLFLT)(val5);
14850 arg6 = (
PLFLT)(val6);
14855 arg7 = (
PLFLT)(val7);
14871 PyObject *resultobj = 0;
14885 PyArrayObject *tmp1 = NULL ;
14906 PyObject *swig_obj[11] ;
14913 if ( tmp1 == NULL )
14915 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
14916 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
14918 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
14919 for ( i = 0; i < arg2; i++ )
14920 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
14926 arg4 = (
PLFLT)(val4);
14931 arg5 = (
PLFLT)(val5);
14936 arg6 = (
PLFLT)(val6);
14941 arg7 = (
PLFLT)(val7);
14946 arg8 = (
PLFLT)(val8);
14951 arg9 = (
PLFLT)(val9);
14956 arg10 = (
PLFLT)(val10);
14961 arg11 = (
PLFLT)(val11);
14966 arg12 = (
PLFLT)(val12);
14971 arg13 = (
PLFLT)(val13);
14972 plimage((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
14989 PyObject *resultobj = 0;
15003 PyArrayObject *tmp1 = NULL ;
15020 PyObject *swig_obj[11] ;
15034 if ( tmp1 == NULL )
15036 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15037 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15039 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
15040 for ( i = 0; i < arg2; i++ )
15041 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15047 arg4 = (
PLFLT)(val4);
15052 arg5 = (
PLFLT)(val5);
15057 arg6 = (
PLFLT)(val6);
15062 arg7 = (
PLFLT)(val7);
15067 arg8 = (
PLFLT)(val8);
15072 arg9 = (
PLFLT)(val9);
15077 arg10 = (
PLFLT)(val10);
15082 arg11 = (
PLFLT)(val11);
15086 if ( swig_obj[9] == Py_None )
15092 if ( !PyCallable_Check( (PyObject *) swig_obj[9] ) )
15094 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
15101 if (swig_obj[10]) {
15103 if ( swig_obj[10] == Py_None )
15111 plimagefr((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15140 PyObject *resultobj = 0;
15153 PyObject *resultobj = 0;
15166 PyObject *resultobj = 0;
15167 char *arg1 = (
char *) 0 ;
15168 char *arg2 = (
char *) 0 ;
15175 PyObject *swig_obj[2] ;
15183 arg1 = (
char *)(buf1);
15188 arg2 = (
char *)(buf2);
15189 plSetUsage((
char const *)arg1,(
char const *)arg2);
15202 PyObject *resultobj = 0;
15215 PyObject *resultobj = 0;
15221 PyArrayObject *tmp1 = NULL ;
15226 PyObject *swig_obj[1] ;
15232 swig_obj[0] = args;
15236 if ( tmp1 == NULL )
15238 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15239 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15241 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (size_t) arg2 );
15242 for ( i = 0; i < arg2; i++ )
15243 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15274 PyObject *resultobj = 0;
15278 PyObject *swig_obj[1] ;
15283 swig_obj[0] = args;
15331 "Set format of numerical label for contours\n"
15335 " Set format of numerical label for contours.\n"
15337 " Redacted form: pl_setcontlabelformat(lexp, sigdig)\n"
15339 " This function is used example 9.\n"
15345 "pl_setcontlabelformat(lexp, sigdig)\n"
15349 " lexp (PLINT, input) : If the contour numerical label is greater\n"
15350 " than 10^(lexp) or less than 10^(-lexp), then the exponential\n"
15351 " format is used. Default value of lexp is 4.\n"
15353 " sigdig (PLINT, input) : Number of significant digits. Default\n"
15358 "Set parameters of contour labelling other than format of numerical label\n"
15362 " Set parameters of contour labelling other than those handled by\n"
15363 " pl_setcontlabelformat.\n"
15365 " Redacted form: pl_setcontlabelparam(offset, size, spacing, active)\n"
15367 " This function is used in example 9.\n"
15373 "pl_setcontlabelparam(offset, size, spacing, active)\n"
15377 " offset (PLFLT, input) : Offset of label from contour line (if set\n"
15378 " to 0.0, labels are printed on the lines). Default value is 0.006.\n"
15380 " size (PLFLT, input) : Font height for contour labels (normalized).\n"
15381 " Default value is 0.3.\n"
15383 " spacing (PLFLT, input) : Spacing parameter for contour labels.\n"
15384 " Default value is 0.1.\n"
15386 " active (PLINT, input) : Activate labels. Set to 1 if you want\n"
15387 " contour labels on. Default is off (0).\n"
15391 "Advance the (sub-)page\n"
15395 " Advances to the next subpage if sub=0, performing a page advance if\n"
15396 " there are no remaining subpages on the current page. If subpages\n"
15397 " aren't being used, pladv(0) will always advance the page. If page>0,\n"
15398 " PLplot switches to the specified subpage. Note that this allows you\n"
15399 " to overwrite a plot on the specified subpage; if this is not what you\n"
15400 " intended, use pleop followed by plbop to first advance the page. This\n"
15401 " routine is called automatically (with page=0) by plenv, but if plenv\n"
15402 " is not used, pladv must be called after initializing PLplot but before\n"
15403 " defining the viewport.\n"
15405 " Redacted form: pladv(page)\n"
15407 " This function is used in examples 1, 2, 4, 6-12, 14-18, 20, 21, 23-27,\n"
15418 " page (PLINT, input) : Specifies the subpage number (starting from 1\n"
15419 " in the top left corner and increasing along the rows) to which to\n"
15420 " advance. Set to zero to advance to the next subpage (or to the\n"
15421 " next page if subpages are not being used).\n"
15425 "Draw a circular or elliptical arc\n"
15429 " Draw a possibly filled arc centered at x, y with semimajor axis a and\n"
15430 " semiminor axis b, starting at angle1 and ending at angle2.\n"
15432 " Redacted form: General: plarc(x, y, a, b, angle1, angle2, rotate,\n"
15436 " This function is used in examples 3 and 27.\n"
15442 "plarc(x, y, a, b, angle1, angle2, rotate, fill)\n"
15446 " x (PLFLT, input) : X coordinate of arc center.\n"
15448 " y (PLFLT, input) : Y coordinate of arc center.\n"
15450 " a (PLFLT, input) : Length of the semimajor axis of the arc.\n"
15452 " b (PLFLT, input) : Length of the semiminor axis of the arc.\n"
15454 " angle1 (PLFLT, input) : Starting angle of the arc relative to the\n"
15455 " semimajor axis.\n"
15457 " angle2 (PLFLT, input) : Ending angle of the arc relative to the\n"
15458 " semimajor axis.\n"
15460 " rotate (PLFLT, input) : Angle of the semimajor axis relative to the\n"
15463 " fill (PLBOOL, input) : Draw a filled arc.\n"
15467 "Draw a box with axes, etc. with arbitrary origin\n"
15471 " Draws a box around the currently defined viewport with arbitrary\n"
15472 " world-coordinate origin specified by x0 and y0 and labels it with\n"
15473 " world coordinate values appropriate to the window. Thus plaxes should\n"
15474 " only be called after defining both viewport and window. The ascii\n"
15475 " character strings xopt and yopt specify how the box should be drawn as\n"
15476 " described below. If ticks and/or subticks are to be drawn for a\n"
15477 " particular axis, the tick intervals and number of subintervals may be\n"
15478 " specified explicitly, or they may be defaulted by setting the\n"
15479 " appropriate arguments to zero.\n"
15481 " Redacted form: General: plaxes(x0, y0, xopt, xtick, nxsub, yopt,\n"
15485 " This function is not used in any examples.\n"
15491 "plaxes(x0, y0, xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15495 " x0 (PLFLT, input) : World X coordinate of origin.\n"
15497 " y0 (PLFLT, input) : World Y coordinate of origin.\n"
15499 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15500 " options for the x axis. The string can include any combination of\n"
15501 " the following letters (upper or lower case) in any order: a: Draws\n"
15502 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15504 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15505 " c: Draws top (X) or right (Y) edge of frame.\n"
15506 " d: Plot labels as date / time. Values are assumed to be\n"
15507 " seconds since the epoch (as used by gmtime).\n"
15508 " f: Always use fixed point numeric labels.\n"
15509 " g: Draws a grid at the major tick interval.\n"
15510 " h: Draws a grid at the minor tick interval.\n"
15511 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15513 " l: Labels axis logarithmically. This only affects the labels,\n"
15514 " not the data, and so it is necessary to compute the logarithms\n"
15515 " of data points before passing them to any of the drawing\n"
15517 " m: Writes numeric labels at major tick intervals in the\n"
15518 " unconventional location (above box for X, right of box for Y).\n"
15519 " n: Writes numeric labels at major tick intervals in the\n"
15520 " conventional location (below box for X, left of box for Y).\n"
15521 " o: Use custom labelling function to generate axis label text.\n"
15522 " The custom labelling function can be defined with the\n"
15523 " plslabelfunc command.\n"
15524 " s: Enables subticks between major ticks, only valid if t is\n"
15525 " also specified.\n"
15526 " t: Draws major ticks.\n"
15527 " u: Exactly like \"b\" except don't draw edge line.\n"
15528 " w: Exactly like \"c\" except don't draw edge line.\n"
15529 " x: Exactly like \"t\" (including the side effect of the\n"
15530 " numerical labels for the major ticks) except exclude drawing\n"
15531 " the major and minor tick marks.\n"
15534 " xtick (PLFLT, input) : World coordinate interval between major\n"
15535 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15536 " generates a suitable tick interval.\n"
15538 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15539 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15540 " generates a suitable minor tick interval.\n"
15542 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15543 " options for the y axis. The string can include any combination of\n"
15544 " the letters defined above for xopt, and in addition may contain:\n"
15545 " v: Write numeric labels for the y axis parallel to the base of the\n"
15546 " graph, rather than parallel to the axis.\n"
15549 " ytick (PLFLT, input) : World coordinate interval between major\n"
15550 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15551 " generates a suitable tick interval.\n"
15553 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15554 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15555 " generates a suitable minor tick interval.\n"
15559 "Plot a histogram from binned data\n"
15563 " Plots a histogram consisting of nbin bins. The value associated with\n"
15564 " the i'th bin is placed in x[i], and the number of points in the bin is\n"
15565 " placed in y[i]. For proper operation, the values in x[i] must form a\n"
15566 " strictly increasing sequence. By default, x[i] is the left-hand edge\n"
15567 " of the i'th bin. If opt=PL_BIN_CENTRED is used, the bin boundaries are\n"
15568 " placed midway between the values in the x vector. Also see plhist for\n"
15569 " drawing histograms from unbinned data.\n"
15571 " Redacted form: General: plbin(x, y, opt)\n"
15572 " Python: plbin(nbin, x, y, opt)\n"
15575 " This function is not used in any examples.\n"
15581 "plbin(nbin, x, y, opt)\n"
15585 " nbin (PLINT, input) : Number of bins (i.e., number of values in x\n"
15586 " and y vectors.)\n"
15588 " x (PLFLT_VECTOR, input) : A vector containing values associated\n"
15589 " with bins. These must form a strictly increasing sequence.\n"
15591 " y (PLFLT_VECTOR, input) : A vector containing a number which is\n"
15592 " proportional to the number of points in each bin. This is a PLFLT\n"
15593 " (instead of PLINT) vector so as to allow histograms of\n"
15594 " probabilities, etc.\n"
15596 " opt (PLINT, input) : Is a combination of several flags:\n"
15597 " opt=PL_BIN_DEFAULT: The x represent the lower bin boundaries, the\n"
15598 " outer bins are expanded to fill up the entire x-axis and bins of\n"
15599 " zero height are simply drawn.\n"
15600 " opt=PL_BIN_CENTRED|...: The bin boundaries are to be midway\n"
15601 " between the x values. If the values in x are equally spaced,\n"
15602 " the values are the center values of the bins.\n"
15603 " opt=PL_BIN_NOEXPAND|...: The outer bins are drawn with equal\n"
15604 " size as the ones inside.\n"
15605 " opt=PL_BIN_NOEMPTY|...: Bins with zero height are not drawn\n"
15606 " (there is a gap for such bins).\n"
15610 "Calculate broken-down time from continuous time for the current stream\n"
15614 " Calculate broken-down time; year, month, day, hour, min, sec; from\n"
15615 " continuous time, ctime for the current stream. This function is the\n"
15616 " inverse of plctime.\n"
15618 " The PLplot definition of broken-down time is a calendar time that\n"
15619 " completely ignores all time zone offsets, i.e., it is the user's\n"
15620 " responsibility to apply those offsets (if so desired) before using the\n"
15621 " PLplot time API. By default broken-down time is defined using the\n"
15622 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
15623 " continuous time is defined as the number of seconds since the Unix\n"
15624 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
15625 " broken-down and continuous time are possible, see plconfigtime.\n"
15627 " Redacted form: General: plbtime(year, month, day, hour, min, sec,\n"
15631 " This function is used in example 29.\n"
15637 "plbtime(year, month, day, hour, min, sec, ctime)\n"
15641 " year (PLINT_NC_SCALAR, output) : Returned value of years with\n"
15642 " positive values corresponding to CE (i.e., 1 = 1 CE, etc.) and\n"
15643 " non-negative values corresponding to BCE (e.g., 0 = 1 BCE, -1 = 2\n"
15646 " month (PLINT_NC_SCALAR, output) : Returned value of month within\n"
15647 " the year in the range from 0 (January) to 11 (December).\n"
15649 " day (PLINT_NC_SCALAR, output) : Returned value of day within the\n"
15650 " month in the range from 1 to 31.\n"
15652 " hour (PLINT_NC_SCALAR, output) : Returned value of hour within the\n"
15653 " day in the range from 0 to 23.\n"
15655 " min (PLINT_NC_SCALAR, output) : Returned value of minute within the\n"
15656 " hour in the range from 0 to 59\n"
15658 " sec (PLFLT_NC_SCALAR, output) : Returned value of second within the\n"
15659 " minute in range from 0. to 60.\n"
15661 " ctime (PLFLT, input) : Continuous time from which the broken-down\n"
15662 " time is calculated.\n"
15666 "Begin a new page\n"
15670 " Begins a new page. For a file driver, the output file is opened if\n"
15671 " necessary. Advancing the page via pleop and plbop is useful when a\n"
15672 " page break is desired at a particular point when plotting to subpages.\n"
15673 " Another use for pleop and plbop is when plotting pages to different\n"
15674 " files, since you can manually set the file name by calling plsfnam\n"
15675 " after the call to pleop. (In fact some drivers may only support a\n"
15676 " single page per file, making this a necessity.) One way to handle\n"
15677 " this case automatically is to page advance via pladv, but enable\n"
15678 " familying (see plsfam) with a small limit on the file size so that a\n"
15679 " new family member file will be created on each page break.\n"
15681 " Redacted form: plbop()\n"
15683 " This function is used in examples 2 and 20.\n"
15693 "Draw a box with axes, etc\n"
15697 " Draws a box around the currently defined viewport, and labels it with\n"
15698 " world coordinate values appropriate to the window. Thus plbox should\n"
15699 " only be called after defining both viewport and window. The ascii\n"
15700 " character strings xopt and yopt specify how the box should be drawn as\n"
15701 " described below. If ticks and/or subticks are to be drawn for a\n"
15702 " particular axis, the tick intervals and number of subintervals may be\n"
15703 " specified explicitly, or they may be defaulted by setting the\n"
15704 " appropriate arguments to zero.\n"
15706 " Redacted form: General: plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15709 " This function is used in examples 1, 2, 4, 6, 6-12, 14-18, 21, 23-26,\n"
15716 "plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15720 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15721 " options for the x axis. The string can include any combination of\n"
15722 " the following letters (upper or lower case) in any order: a: Draws\n"
15723 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15725 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15726 " c: Draws top (X) or right (Y) edge of frame.\n"
15727 " d: Plot labels as date / time. Values are assumed to be\n"
15728 " seconds since the epoch (as used by gmtime).\n"
15729 " f: Always use fixed point numeric labels.\n"
15730 " g: Draws a grid at the major tick interval.\n"
15731 " h: Draws a grid at the minor tick interval.\n"
15732 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15734 " l: Labels axis logarithmically. This only affects the labels,\n"
15735 " not the data, and so it is necessary to compute the logarithms\n"
15736 " of data points before passing them to any of the drawing\n"
15738 " m: Writes numeric labels at major tick intervals in the\n"
15739 " unconventional location (above box for X, right of box for Y).\n"
15740 " n: Writes numeric labels at major tick intervals in the\n"
15741 " conventional location (below box for X, left of box for Y).\n"
15742 " o: Use custom labelling function to generate axis label text.\n"
15743 " The custom labelling function can be defined with the\n"
15744 " plslabelfunc command.\n"
15745 " s: Enables subticks between major ticks, only valid if t is\n"
15746 " also specified.\n"
15747 " t: Draws major ticks.\n"
15748 " u: Exactly like \"b\" except don't draw edge line.\n"
15749 " w: Exactly like \"c\" except don't draw edge line.\n"
15750 " x: Exactly like \"t\" (including the side effect of the\n"
15751 " numerical labels for the major ticks) except exclude drawing\n"
15752 " the major and minor tick marks.\n"
15755 " xtick (PLFLT, input) : World coordinate interval between major\n"
15756 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15757 " generates a suitable tick interval.\n"
15759 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15760 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15761 " generates a suitable minor tick interval.\n"
15763 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15764 " options for the y axis. The string can include any combination of\n"
15765 " the letters defined above for xopt, and in addition may contain:\n"
15766 " v: Write numeric labels for the y axis parallel to the base of the\n"
15767 " graph, rather than parallel to the axis.\n"
15770 " ytick (PLFLT, input) : World coordinate interval between major\n"
15771 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15772 " generates a suitable tick interval.\n"
15774 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15775 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15776 " generates a suitable minor tick interval.\n"
15780 "Draw a box with axes, etc, in 3-d\n"
15784 " Draws axes, numeric and text labels for a three-dimensional surface\n"
15785 " plot. For a more complete description of three-dimensional plotting\n"
15786 " see the PLplot documentation.\n"
15788 " Redacted form: General: plbox3(xopt, xlabel, xtick, nxsub, yopt,\n"
15789 " ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15792 " This function is used in examples 8, 11, 18, and 21.\n"
15798 "plbox3(xopt, xlabel, xtick, nxsub, yopt, ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15802 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15803 " options for the x axis. The string can include any combination of\n"
15804 " the following letters (upper or lower case) in any order: b: Draws\n"
15805 " axis at base, at height z=\n"
15806 " zmin where zmin is defined by call to plw3d. This character must be\n"
15807 " specified in order to use any of the other options.\n"
15808 " d: Plot labels as date / time. Values are assumed to be\n"
15809 " seconds since the epoch (as used by gmtime).\n"
15810 " f: Always use fixed point numeric labels.\n"
15811 " i: Inverts tick marks, so they are drawn downwards, rather\n"
15813 " l: Labels axis logarithmically. This only affects the labels,\n"
15814 " not the data, and so it is necessary to compute the logarithms\n"
15815 " of data points before passing them to any of the drawing\n"
15817 " n: Writes numeric labels at major tick intervals.\n"
15818 " o: Use custom labelling function to generate axis label text.\n"
15819 " The custom labelling function can be defined with the\n"
15820 " plslabelfunc command.\n"
15821 " s: Enables subticks between major ticks, only valid if t is\n"
15822 " also specified.\n"
15823 " t: Draws major ticks.\n"
15824 " u: If this is specified, the text label for the axis is\n"
15825 " written under the axis.\n"
15828 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15829 " the text label for the x axis. It is only drawn if u is in the\n"
15832 " xtick (PLFLT, input) : World coordinate interval between major\n"
15833 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15834 " generates a suitable tick interval.\n"
15836 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15837 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15838 " generates a suitable minor tick interval.\n"
15840 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15841 " options for the y axis. The string is interpreted in the same way\n"
15844 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15845 " the text label for the y axis. It is only drawn if u is in the\n"
15848 " ytick (PLFLT, input) : World coordinate interval between major\n"
15849 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15850 " generates a suitable tick interval.\n"
15852 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15853 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15854 " generates a suitable minor tick interval.\n"
15856 " zopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15857 " options for the z axis. The string can include any combination of\n"
15858 " the following letters (upper or lower case) in any order: b: Draws\n"
15859 " z axis to the left of the surface plot.\n"
15860 " c: Draws z axis to the right of the surface plot.\n"
15861 " d: Draws grid lines parallel to the x-y plane behind the\n"
15862 " figure. These lines are not drawn until after plot3d or\n"
15863 " plmesh are called because of the need for hidden line removal.\n"
15864 " e: Plot labels as date / time. Values are assumed to be\n"
15865 " seconds since the epoch (as used by gmtime). Note this\n"
15866 " suboption is interpreted the same as the d suboption for xopt\n"
15867 " and yopt, but it has to be identified as e for zopt since d\n"
15868 " has already been used for the different purpose above.\n"
15869 " f: Always use fixed point numeric labels.\n"
15870 " i: Inverts tick marks, so they are drawn away from the center.\n"
15871 " l: Labels axis logarithmically. This only affects the labels,\n"
15872 " not the data, and so it is necessary to compute the logarithms\n"
15873 " of data points before passing them to any of the drawing\n"
15875 " m: Writes numeric labels at major tick intervals on the\n"
15876 " right-hand z axis.\n"
15877 " n: Writes numeric labels at major tick intervals on the\n"
15878 " left-hand z axis.\n"
15879 " o: Use custom labelling function to generate axis label text.\n"
15880 " The custom labelling function can be defined with the\n"
15881 " plslabelfunc command.\n"
15882 " s: Enables subticks between major ticks, only valid if t is\n"
15883 " also specified.\n"
15884 " t: Draws major ticks.\n"
15885 " u: If this is specified, the text label is written beside the\n"
15886 " left-hand axis.\n"
15887 " v: If this is specified, the text label is written beside the\n"
15888 " right-hand axis.\n"
15891 " zlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15892 " the text label for the z axis. It is only drawn if u or v are in\n"
15893 " the zopt string.\n"
15895 " ztick (PLFLT, input) : World coordinate interval between major\n"
15896 " ticks on the z axis. If it is set to zero, PLplot automatically\n"
15897 " generates a suitable tick interval.\n"
15899 " nzsub (PLINT, input) : Number of subintervals between major z axis\n"
15900 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15901 " generates a suitable minor tick interval.\n"
15905 "Calculate world coordinates and corresponding window index from relative device coordinates\n"
15909 " Calculate world coordinates, wx and wy, and corresponding window index\n"
15910 " from relative device coordinates, rx and ry.\n"
15912 " Redacted form: General: plcalc_world(rx, ry, wx, wy, window)\n"
15915 " This function is used in example 31.\n"
15921 "plcalc_world(rx, ry, wx, wy, window)\n"
15925 " rx (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15926 " the x coordinate.\n"
15928 " ry (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15929 " the y coordinate.\n"
15931 " wx (PLFLT_NC_SCALAR, output) : Returned value of the x world\n"
15932 " coordinate corresponding to the relative device coordinates rx and\n"
15935 " wy (PLFLT_NC_SCALAR, output) : Returned value of the y world\n"
15936 " coordinate corresponding to the relative device coordinates rx and\n"
15939 " window (PLINT_NC_SCALAR, output) : Returned value of the last\n"
15940 " defined window index that corresponds to the input relative device\n"
15941 " coordinates (and the returned world coordinates). To give some\n"
15942 " background on the window index, for each page the initial window\n"
15943 " index is set to zero, and each time plwind is called within the\n"
15944 " page, world and device coordinates are stored for the window and\n"
15945 " the window index is incremented. Thus, for a simple page layout\n"
15946 " with non-overlapping viewports and one window per viewport, window\n"
15947 " corresponds to the viewport index (in the order which the\n"
15948 " viewport/windows were created) of the only viewport/window\n"
15949 " corresponding to rx and ry. However, for more complicated layouts\n"
15950 " with potentially overlapping viewports and possibly more than one\n"
15951 " window (set of world coordinates) per viewport, window and the\n"
15952 " corresponding output world coordinates corresponds to the last\n"
15953 " window created that fulfills the criterion that the relative\n"
15954 " device coordinates are inside it. Finally, in all cases where the\n"
15955 " input relative device coordinates are not inside any\n"
15956 " viewport/window, then the returned value of the last defined\n"
15957 " window index is set to -1.\n"
15961 "Clear current (sub)page\n"
15965 " Clears the current page, effectively erasing everything that have been\n"
15966 " drawn. This command only works with interactive drivers; if the\n"
15967 " driver does not support this, the page is filled with the background\n"
15968 " color in use. If the current page is divided into subpages, only the\n"
15969 " current subpage is erased. The nth subpage can be selected with\n"
15972 " Redacted form: General: plclear()\n"
15975 " This function is not used in any examples.\n"
15985 "Set color, cmap0\n"
15989 " Sets the color index for cmap0 (see the PLplot documentation).\n"
15991 " Redacted form: plcol0(icol0)\n"
15993 " This function is used in examples 1-9, 11-16, 18-27, and 29.\n"
16003 " icol0 (PLINT, input) : Integer representing the color. The\n"
16004 " defaults at present are (these may change):\n"
16005 " 0 black (default background)\n"
16006 " 1 red (default foreground)\n"
16022 " Use plscmap0 to change the entire cmap0 color palette and plscol0 to\n"
16023 " change an individual color in the cmap0 color palette.\n"
16027 "Set color, cmap1\n"
16031 " Sets the color for cmap1 (see the PLplot documentation).\n"
16033 " Redacted form: plcol1(col1)\n"
16035 " This function is used in examples 12 and 21.\n"
16045 " col1 (PLFLT, input) : This value must be in the range (0.0-1.0) and\n"
16046 " is mapped to color using the continuous cmap1 palette which by\n"
16047 " default ranges from blue to the background color to red. The\n"
16048 " cmap1 palette can also be straightforwardly changed by the user\n"
16049 " with plscmap1 or plscmap1l.\n"
16053 "Configure the transformation between continuous and broken-down time for the current stream\n"
16057 " Configure the transformation between continuous and broken-down time\n"
16058 " for the current stream. This transformation is used by both plbtime\n"
16061 " Redacted form: General: plconfigtime(scale, offset1, offset2,\n"
16062 " ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16065 " This function is used in example 29.\n"
16071 "plconfigtime(scale, offset1, offset2, ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16075 " scale (PLFLT, input) : The number of days per continuous time unit.\n"
16076 " As a special case, if\n"
16077 " scale is 0., then all other arguments are ignored, and the result (the\n"
16078 " default used by PLplot) is the equivalent of a call to\n"
16079 " plconfigtime(1./86400., 0., 0., 0x0, 1, 1970, 0, 1, 0, 0, 0.).\n"
16080 " That is, for this special case broken-down time is calculated with\n"
16081 " the proleptic Gregorian calendar with no leap seconds inserted,\n"
16082 " and the continuous time is defined as the number of seconds since\n"
16083 " the Unix epoch of 1970-01-01T00:00:00Z.\n"
16085 " offset1 (PLFLT, input) : If\n"
16086 " ifbtime_offset is true, the parameters\n"
16088 " offset2 are completely ignored. Otherwise, the sum of these parameters\n"
16089 " (with units in days) specify the epoch of the continuous time\n"
16090 " relative to the MJD epoch corresponding to the Gregorian calendar\n"
16091 " date of 1858-11-17T00:00:00Z or JD = 2400000.5. Two PLFLT numbers\n"
16092 " are used to specify the origin to allow users (by specifying\n"
16093 " offset1 as an integer that can be exactly represented by a\n"
16094 " floating-point variable and specifying\n"
16095 " offset2 as a number in the range from 0. to 1) the chance to minimize\n"
16096 " the numerical errors of the continuous time representation.\n"
16098 " offset2 (PLFLT, input) : See documentation of\n"
16101 " ccontrol (PLINT, input) : ccontrol contains bits controlling the\n"
16102 " transformation. If the 0x1 bit is set, then the proleptic Julian\n"
16103 " calendar is used for broken-down time rather than the proleptic\n"
16104 " Gregorian calendar. If the 0x2 bit is set, then leap seconds that\n"
16105 " have been historically used to define UTC are inserted into the\n"
16106 " broken-down time. Other possibilities for additional control bits\n"
16107 " for ccontrol exist such as making the historical time corrections\n"
16108 " in the broken-down time corresponding to ET (ephemeris time) or\n"
16109 " making the (slightly non-constant) corrections from international\n"
16110 " atomic time (TAI) to what astronomers define as terrestrial time\n"
16111 " (TT). But those additional possibilities have not been\n"
16112 " implemented yet in the qsastime library (one of the PLplot utility\n"
16115 " ifbtime_offset (PLBOOL, input) : ifbtime_offset controls how the\n"
16116 " epoch of the continuous time scale is specified by the user. If\n"
16117 " ifbtime_offset is false, then\n"
16119 " offset2 are used to specify the epoch, and the following broken-down\n"
16120 " time parameters are completely ignored. If\n"
16121 " ifbtime_offset is true, then\n"
16123 " offset2 are completely ignored, and the following broken-down time\n"
16124 " parameters are used to specify the epoch.\n"
16126 " year (PLINT, input) : Year of epoch.\n"
16128 " month (PLINT, input) : Month of epoch in range from 0 (January) to\n"
16129 " 11 (December).\n"
16131 " day (PLINT, input) : Day of epoch in range from 1 to 31.\n"
16133 " hour (PLINT, input) : Hour of epoch in range from 0 to 23\n"
16135 " min (PLINT, input) : Minute of epoch in range from 0 to 59.\n"
16137 " sec (PLFLT, input) : Second of epoch in range from 0. to 60.\n"
16145 " Draws a contour plot of the data in f[\n"
16147 " ny], using the nlevel contour levels specified by clevel. Only the\n"
16148 " region of the matrix from kx to lx and from ky to ly is plotted out\n"
16149 " where all these index ranges are interpreted as one-based for\n"
16150 " historical reasons. A transformation routine pointed to by pltr with\n"
16151 " a generic pointer pltr_data for additional data required by the\n"
16152 " transformation routine is used to map indices within the matrix to the\n"
16153 " world coordinates.\n"
16155 " Redacted form: plcont(f, kx, lx, ky, ly, clevel, pltr, pltr_data)\n"
16156 " where (see above discussion) the pltr, pltr_data callback arguments\n"
16157 " are sometimes replaced by a tr vector with 6 elements; xg and yg\n"
16158 " vectors; or xg and yg matrices.\n"
16160 " This function is used in examples 9, 14, 16, and 22.\n"
16166 "plcont(f, nx, ny, kx, lx, ky, ly, clevel, nlevel, pltr, pltr_data)\n"
16170 " f (PLFLT_MATRIX, input) : A matrix containing data to be contoured.\n"
16172 " nx, ny (PLINT, input) : The dimensions of the matrix f.\n"
16174 " kx, lx (PLINT, input) : Range of x indices to consider where 0 <=\n"
16175 " kx-1 < lx-1 < nx. Values of kx and lx are one-based rather than\n"
16176 " zero-based for historical backwards-compatibility reasons.\n"
16178 " ky, ly (PLINT, input) : Range of y indices to consider where 0 <=\n"
16179 " ky-1 < ly-1 < ny. Values of ky and ly are one-based rather than\n"
16180 " zero-based for historical backwards-compatibility reasons.\n"
16182 " clevel (PLFLT_VECTOR, input) : A vector specifying the levels at\n"
16183 " which to draw contours.\n"
16185 " nlevel (PLINT, input) : Number of contour levels to draw.\n"
16187 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
16188 " defines the transformation between the zero-based indices of the\n"
16189 " matrix f and the world coordinates.For the C case, transformation\n"
16190 " functions are provided in the PLplot library: pltr0 for the\n"
16191 " identity mapping, and pltr1 and pltr2 for arbitrary mappings\n"
16192 " respectively defined by vectors and matrices. In addition, C\n"
16193 " callback routines for the transformation can be supplied by the\n"
16194 " user such as the mypltr function in examples/c/x09c.c which\n"
16195 " provides a general linear transformation between index coordinates\n"
16196 " and world coordinates.For languages other than C you should\n"
16197 " consult the PLplot documentation for the details concerning how\n"
16198 " PLTRANSFORM_callback arguments are interfaced. However, in\n"
16199 " general, a particular pattern of callback-associated arguments\n"
16200 " such as a tr vector with 6 elements; xg and yg vectors; or xg and\n"
16201 " yg matrices are respectively interfaced to a linear-transformation\n"
16202 " routine similar to the above mypltr function; pltr1; and pltr2.\n"
16203 " Furthermore, some of our more sophisticated bindings (see, e.g.,\n"
16204 " the PLplot documentation) support native language callbacks for\n"
16205 " handling index to world-coordinate transformations. Examples of\n"
16206 " these various approaches are given in examples/<language>x09*,\n"
16207 " examples/<language>x16*, examples/<language>x20*,\n"
16208 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
16209 " supported languages.\n"
16211 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
16212 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
16213 " that is externally supplied.\n"
16217 "Calculate continuous time from broken-down time for the current stream\n"
16221 " Calculate continuous time, ctime, from broken-down time for the\n"
16222 " current stream. The broken-down\n"
16223 " time is specified by the following parameters: year, month, day, hour,\n"
16224 " min, and sec. This function is the inverse of plbtime.\n"
16226 " The PLplot definition of broken-down time is a calendar time that\n"
16227 " completely ignores all time zone offsets, i.e., it is the user's\n"
16228 " responsibility to apply those offsets (if so desired) before using the\n"
16229 " PLplot time API. By default broken-down time is defined using the\n"
16230 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
16231 " continuous time is defined as the number of seconds since the Unix\n"
16232 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
16233 " broken-down and continuous time are possible, see plconfigtime which\n"
16234 " specifies that transformation for the current stream.\n"
16236 " Redacted form: General: plctime(year, month, day, hour, min, sec,\n"
16240 " This function is used in example 29.\n"
16246 "plctime(year, month, day, hour, min, sec, ctime)\n"
16250 " year (PLINT, input) : Input year.\n"
16252 " month (PLINT, input) : Input month in range from 0 (January) to 11\n"
16255 " day (PLINT, input) : Input day in range from 1 to 31.\n"
16257 " hour (PLINT, input) : Input hour in range from 0 to 23\n"
16259 " min (PLINT, input) : Input minute in range from 0 to 59.\n"
16261 " sec (PLFLT, input) : Input second in range from 0. to 60.\n"
16263 " ctime (PLFLT_NC_SCALAR, output) : Returned value of the continuous\n"
16264 " time calculated from the broken-down time specified by the\n"
16265 " previous parameters.\n"
16269 "Copy state parameters from the reference stream to the current stream\n"
16273 " Copies state parameters from the reference stream to the current\n"
16274 " stream. Tell driver interface to map device coordinates unless flags\n"
16277 " This function is used for making save files of selected plots (e.g.\n"
16278 " from the TK driver). After initializing, you can get a copy of the\n"
16279 " current plot to the specified device by switching to this stream and\n"
16280 " issuing a plcpstrm and a plreplot, with calls to plbop and pleop as\n"
16281 " appropriate. The plot buffer must have previously been enabled (done\n"
16282 " automatically by some display drivers, such as X).\n"
16284 " Redacted form: plcpstrm(iplsr, flags)\n"
16286 " This function is used in example 1,20.\n"
16292 "plcpstrm(iplsr, flags)\n"
16296 " iplsr (PLINT, input) : Number of reference stream.\n"
16298 " flags (PLBOOL, input) : If flags is set to true the device\n"
16299 " coordinates are not copied from the reference to current stream.\n"
16303 "End plotting session\n"
16307 " Ends a plotting session, tidies up all the output files, switches\n"
16308 " interactive devices back into text mode and frees up any memory that\n"
16309 " was allocated. Must be called before end of program.\n"
16311 " By default, PLplot's interactive devices (Xwin, TK, etc.) go into a\n"
16312 " wait state after a call to plend or other functions which trigger the\n"
16313 " end of a plot page. To avoid this, use the plspause function.\n"
16315 " Redacted form: plend()\n"
16317 " This function is used in all of the examples.\n"
16327 "End plotting session for current stream\n"
16331 " Ends a plotting session for the current output stream only. See\n"
16332 " plsstrm for more info.\n"
16334 " Redacted form: plend1()\n"
16336 " This function is used in examples 1 and 20.\n"
16346 "Set up standard window and draw box\n"
16350 " Sets up plotter environment for simple graphs by calling pladv and\n"
16351 " setting up viewport and window to sensible default values. plenv\n"
16352 " leaves a standard margin (left-hand margin of eight character heights,\n"
16353 " and a margin around the other three sides of five character heights)\n"
16354 " around most graphs for axis labels and a title. When these defaults\n"
16355 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16356 " plvasp for setting up the viewport, plwind for defining the window,\n"
16357 " and plbox for drawing the box.\n"
16359 " Redacted form: plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16361 " This function is used in example 1,3,9,13,14,19-22,29.\n"
16367 "plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16371 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16372 " world coordinates).\n"
16374 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16375 " world coordinates).\n"
16377 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16380 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16383 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16384 " scales will not be set, the user must set up the scale before\n"
16385 " calling plenv using plsvpa, plvasp or other.\n"
16386 " 0: the x and y axes are scaled independently to use as much of\n"
16387 " the screen as possible.\n"
16388 " 1: the scales of the x and y axes are made equal.\n"
16389 " 2: the axis of the x and y axes are made equal, and the plot\n"
16390 " box will be square.\n"
16393 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16394 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16395 " -1: draw box only.\n"
16396 " 0: draw box, ticks, and numeric tick labels.\n"
16397 " 1: also draw coordinate axes at x=0 and y=0.\n"
16398 " 2: also draw a grid at major tick positions in both\n"
16400 " 3: also draw a grid at minor tick positions in both\n"
16402 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16403 " have to be converted to logarithms separately.)\n"
16404 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16405 " have to be converted to logarithms separately.)\n"
16406 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16407 " have to be converted to logarithms separately.)\n"
16408 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16409 " have to be converted to logarithms separately.)\n"
16410 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16411 " have to be converted to logarithms separately.)\n"
16412 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16413 " have to be converted to logarithms separately.)\n"
16414 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16415 " have to be converted to logarithms separately.)\n"
16416 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16417 " have to be converted to logarithms separately.)\n"
16418 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16419 " and y data have to be converted to logarithms separately.)\n"
16420 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16421 " and y data have to be converted to logarithms separately.)\n"
16422 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16423 " and y data have to be converted to logarithms separately.)\n"
16424 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16425 " and y data have to be converted to logarithms separately.)\n"
16426 " 40: same as 0 except date / time x labels.\n"
16427 " 41: same as 1 except date / time x labels.\n"
16428 " 42: same as 2 except date / time x labels.\n"
16429 " 43: same as 3 except date / time x labels.\n"
16430 " 50: same as 0 except date / time y labels.\n"
16431 " 51: same as 1 except date / time y labels.\n"
16432 " 52: same as 2 except date / time y labels.\n"
16433 " 53: same as 3 except date / time y labels.\n"
16434 " 60: same as 0 except date / time x and y labels.\n"
16435 " 61: same as 1 except date / time x and y labels.\n"
16436 " 62: same as 2 except date / time x and y labels.\n"
16437 " 63: same as 3 except date / time x and y labels.\n"
16438 " 70: same as 0 except custom x and y labels.\n"
16439 " 71: same as 1 except custom x and y labels.\n"
16440 " 72: same as 2 except custom x and y labels.\n"
16441 " 73: same as 3 except custom x and y labels.\n"
16445 "Same as plenv but if in multiplot mode does not advance the subpage, instead clears it\n"
16449 " Sets up plotter environment for simple graphs by calling pladv and\n"
16450 " setting up viewport and window to sensible default values. plenv0\n"
16451 " leaves a standard margin (left-hand margin of eight character heights,\n"
16452 " and a margin around the other three sides of five character heights)\n"
16453 " around most graphs for axis labels and a title. When these defaults\n"
16454 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16455 " plvasp for setting up the viewport, plwind for defining the window,\n"
16456 " and plbox for drawing the box.\n"
16458 " Redacted form: plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16460 " This function is used in example 21.\n"
16466 "plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16470 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16471 " world coordinates).\n"
16473 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16474 " world coordinates).\n"
16476 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16479 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16482 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16483 " scales will not be set, the user must set up the scale before\n"
16484 " calling plenv0 using plsvpa, plvasp or other.\n"
16485 " 0: the x and y axes are scaled independently to use as much of\n"
16486 " the screen as possible.\n"
16487 " 1: the scales of the x and y axes are made equal.\n"
16488 " 2: the axis of the x and y axes are made equal, and the plot\n"
16489 " box will be square.\n"
16492 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16493 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16494 " -1: draw box only.\n"
16495 " 0: draw box, ticks, and numeric tick labels.\n"
16496 " 1: also draw coordinate axes at x=0 and y=0.\n"
16497 " 2: also draw a grid at major tick positions in both\n"
16499 " 3: also draw a grid at minor tick positions in both\n"
16501 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16502 " have to be converted to logarithms separately.)\n"
16503 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16504 " have to be converted to logarithms separately.)\n"
16505 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16506 " have to be converted to logarithms separately.)\n"
16507 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16508 " have to be converted to logarithms separately.)\n"
16509 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16510 " have to be converted to logarithms separately.)\n"
16511 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16512 " have to be converted to logarithms separately.)\n"
16513 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16514 " have to be converted to logarithms separately.)\n"
16515 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16516 " have to be converted to logarithms separately.)\n"
16517 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16518 " and y data have to be converted to logarithms separately.)\n"
16519 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16520 " and y data have to be converted to logarithms separately.)\n"
16521 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16522 " and y data have to be converted to logarithms separately.)\n"
16523 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16524 " and y data have to be converted to logarithms separately.)\n"
16525 " 40: same as 0 except date / time x labels.\n"
16526 " 41: same as 1 except date / time x labels.\n"
16527 " 42: same as 2 except date / time x labels.\n"
16528 " 43: same as 3 except date / time x labels.\n"
16529 " 50: same as 0 except date / time y labels.\n"
16530 " 51: same as 1 except date / time y labels.\n"
16531 " 52: same as 2 except date / time y labels.\n"
16532 " 53: same as 3 except date / time y labels.\n"
16533 " 60: same as 0 except date / time x and y labels.\n"
16534 " 61: same as 1 except date / time x and y labels.\n"
16535 " 62: same as 2 except date / time x and y labels.\n"
16536 " 63: same as 3 except date / time x and y labels.\n"
16537 " 70: same as 0 except custom x and y labels.\n"
16538 " 71: same as 1 except custom x and y labels.\n"
16539 " 72: same as 2 except custom x and y labels.\n"
16540 " 73: same as 3 except custom x and y labels.\n"
16544 "Eject current page\n"
16548 " Clears the graphics screen of an interactive device, or ejects a page\n"
16549 " on a plotter. See plbop for more information.\n"
16551 " Redacted form: pleop()\n"
16553 " This function is used in example 2,14.\n"
16563 "Draw error bars in x direction\n"
16567 " Draws a set of n error bars in x direction, the i'th error bar\n"
16568 " extending from xmin[i] to xmax[i] at y coordinate y[i]. The terminals\n"
16569 " of the error bars are of length equal to the minor tick length\n"
16570 " (settable using plsmin).\n"
16572 " Redacted form: General: plerrx(xmin, ymax, y)\n"
16575 " This function is used in example 29.\n"
16581 "plerrx(n, xmin, xmax, y)\n"
16585 " n (PLINT, input) : Number of error bars to draw.\n"
16587 " xmin (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16588 " of the left-hand endpoints of the error bars.\n"
16590 " xmax (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16591 " of the right-hand endpoints of the error bars.\n"
16593 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16594 " the error bars.\n"
16598 "Draw error bars in the y direction\n"
16602 " Draws a set of n error bars in the y direction, the i'th error bar\n"
16603 " extending from ymin[i] to ymax[i] at x coordinate x[i]. The terminals\n"
16604 " of the error bars are of length equal to the minor tick length\n"
16605 " (settable using plsmin).\n"
16607 " Redacted form: General: plerry(x, ymin, ymax)\n"
16610 " This function is used in example 29.\n"
16616 "plerry(n, x, ymin, ymax)\n"
16620 " n (PLINT, input) : Number of error bars to draw.\n"
16622 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16623 " the error bars.\n"
16625 " ymin (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16626 " of the lower endpoints of the error bars.\n"
16628 " ymax (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16629 " of the upper endpoints of the error bars.\n"
16633 "Advance to the next family file on the next new page\n"
16637 " Advance to the next family file on the next new page.\n"
16639 " Redacted form: plfamadv()\n"
16641 " This function is not used in any examples.\n"
16651 "Draw filled polygon\n"
16655 " Fills the polygon defined by the n points (\n"
16657 " y[i]) using the pattern defined by plpsty or plpat. The default fill\n"
16658 " style is a solid fill. The routine will automatically close the\n"
16659 " polygon between the last and first vertices. If multiple closed\n"
16660 " polygons are passed in x and y then plfill will fill in between them.\n"
16662 " Redacted form: plfill(x,y)\n"
16664 " This function is used in examples 12, 13, 15, 16, 21, 24, and 25.\n"
16670 "plfill(n, x, y)\n"
16674 " n (PLINT, input) : Number of vertices in polygon.\n"
16676 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16679 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16684 "Draw filled polygon in 3D\n"
16688 " Fills the 3D polygon defined by the n points in the x, y, and z\n"
16689 " vectors using the pattern defined by plpsty or plpat. The routine\n"
16690 " will automatically close the polygon between the last and first\n"
16691 " vertices. If multiple closed polygons are passed in x, y, and z then\n"
16692 " plfill3 will fill in between them.\n"
16694 " Redacted form: General: plfill3(x, y, z)\n"
16697 " This function is used in example 15.\n"
16703 "plfill3(n, x, y, z)\n"
16707 " n (PLINT, input) : Number of vertices in polygon.\n"
16709 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16712 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16715 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
16720 "Draw linear gradient inside polygon\n"
16724 " Draw a linear gradient using cmap1 inside the polygon defined by the n\n"
16727 " y[i]). Interpretation of the polygon is the same as for plfill. The\n"
16728 " polygon coordinates and the gradient angle are all expressed in world\n"
16729 " coordinates. The angle from the x axis for both the rotated\n"
16730 " coordinate system and the gradient vector is specified by angle. The\n"
16731 " magnitude of the gradient vector is the difference between the maximum\n"
16732 " and minimum values of x for the vertices in the rotated coordinate\n"
16733 " system. The origin of the gradient vector can be interpreted as being\n"
16734 " anywhere on the line corresponding to the minimum x value for the\n"
16735 " vertices in the rotated coordinate system. The distance along the\n"
16736 " gradient vector is linearly transformed to the independent variable of\n"
16737 " color map 1 which ranges from 0. at the tail of the gradient vector to\n"
16738 " 1. at the head of the gradient vector. What is drawn is the RGBA\n"
16739 " color corresponding to the independent variable of cmap1. For more\n"
16740 " information about cmap1 (see the PLplot documentation).\n"
16742 " Redacted form: plgradient(x,y,angle)\n"
16744 " This function is used in examples 25 and 30.\n"
16750 "plgradient(n, x, y, angle)\n"
16754 " n (PLINT, input) : Number of vertices in polygon.\n"
16756 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16759 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16762 " angle (PLFLT, input) : Angle (degrees) of gradient vector from x\n"
16767 "Flushes the output stream\n"
16771 " Flushes the output stream. Use sparingly, if at all.\n"
16773 " Redacted form: plflush()\n"
16775 " This function is used in examples 1 and 14.\n"
16789 " Sets the font used for subsequent text and symbols. For devices that\n"
16790 " still use Hershey fonts this routine has no effect unless the Hershey\n"
16791 " fonts with extended character set are loaded (see plfontld). For\n"
16792 " unicode-aware devices that use system fonts instead of Hershey fonts,\n"
16793 " this routine calls the plsfci routine with argument set up\n"
16794 " appropriately for the various cases below. However, this method of\n"
16795 " specifying the font for unicode-aware devices is deprecated, and the\n"
16796 " much more flexible method of calling plsfont directly is recommended\n"
16797 " instead (where plsfont provides a user-friendly interface to plsfci),\n"
16799 " Redacted form: plfont(ifont)\n"
16801 " This function is used in examples 1, 2, 4, 7, 13, 24, and 26.\n"
16811 " ifont (PLINT, input) : Specifies the font: 1: Sans serif font\n"
16812 " (simplest and fastest)\n"
16814 " 3: Italic font\n"
16815 " 4: Script font\n"
16819 "Load Hershey fonts\n"
16823 " Loads the Hershey fonts used for text and symbols. This routine may\n"
16824 " be called before or after initializing PLplot. If not explicitly\n"
16825 " called before PLplot initialization, then by default that\n"
16826 " initialization loads Hershey fonts with the extended character set.\n"
16827 " This routine only has a practical effect for devices that still use\n"
16828 " Hershey fonts (as opposed to modern devices that use unicode-aware\n"
16829 " system fonts instead of Hershey fonts).\n"
16831 " Redacted form: plfontld(fnt)\n"
16833 " This function is used in examples 1 and 7.\n"
16843 " fnt (PLINT, input) : Specifies the type of Hershey fonts to load.\n"
16844 " A zero value specifies Hershey fonts with the standard character\n"
16845 " set and a non-zero value (the default assumed if plfontld is never\n"
16846 " called) specifies Hershey fonts with the extended character set.\n"
16850 "Get character default height and current (scaled) height\n"
16854 " Get character default height and current (scaled) height.\n"
16856 " Redacted form: plgchr(p_def, p_ht)\n"
16858 " This function is used in example 23.\n"
16864 "plgchr(p_def, p_ht)\n"
16868 " p_def (PLFLT_NC_SCALAR, output) : Returned value of the default\n"
16869 " character height (mm).\n"
16871 " p_ht (PLFLT_NC_SCALAR, output) : Returned value of the scaled\n"
16872 " character height (mm).\n"
16876 "Returns 8-bit RGB values for given color index from cmap0\n"
16880 " Returns 8-bit RGB values (0-255) for given color from cmap0 (see the\n"
16881 " PLplot documentation). Values are negative if an invalid color id is\n"
16884 " Redacted form: plgcol0(icol0, r, g, b)\n"
16886 " This function is used in example 2.\n"
16892 "plgcol0(icol0, r, g, b)\n"
16896 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16898 " r (PLINT_NC_SCALAR, output) : Returned value of the 8-bit red\n"
16901 " g (PLINT_NC_SCALAR, output) : Returned value of the 8-bit green\n"
16904 " b (PLINT_NC_SCALAR, output) : Returned value of the 8-bit blue\n"
16909 "Returns 8-bit RGB values and PLFLT alpha transparency value for given color index from cmap0\n"
16913 " Returns 8-bit RGB values (0-255) and PLFLT alpha transparency value\n"
16914 " (0.0-1.0) for given color from cmap0 (see the PLplot documentation).\n"
16915 " Values are negative if an invalid color id is given.\n"
16917 " Redacted form: plgcola(r, g, b)\n"
16919 " This function is used in example 30.\n"
16925 "plgcol0a(icol0, r, g, b, alpha)\n"
16929 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16931 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16932 " in the range from 0 to 255.\n"
16934 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16935 " in the range from 0 to 255.\n"
16937 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16938 " in the range from 0 to 255.\n"
16940 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
16941 " transparency in the range from (0.0-1.0).\n"
16945 "Returns the background color (cmap0[0]) by 8-bit RGB value\n"
16949 " Returns the background color (cmap0[0]) by 8-bit RGB value.\n"
16951 " Redacted form: plgcolbg(r, g, b)\n"
16953 " This function is used in example 31.\n"
16959 "plgcolbg(r, g, b)\n"
16963 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16964 " in the range from 0 to 255.\n"
16966 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16967 " in the range from 0 to 255.\n"
16969 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16970 " in the range from 0 to 255.\n"
16974 "Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT alpha transparency value\n"
16978 " Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT\n"
16979 " alpha transparency value.\n"
16981 " This function is used in example 31.\n"
16987 "plgcolbga(r, g, b, alpha)\n"
16991 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16992 " in the range from 0 to 255.\n"
16994 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16995 " in the range from 0 to 255.\n"
16997 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16998 " in the range from 0 to 255.\n"
17000 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
17001 " transparency in the range (0.0-1.0).\n"
17005 "Get the current device-compression setting\n"
17009 " Get the current device-compression setting. This parameter is only\n"
17010 " used for drivers that provide compression.\n"
17012 " Redacted form: plgcompression(compression)\n"
17014 " This function is used in example 31.\n"
17020 "plgcompression(compression)\n"
17024 " compression (PLINT_NC_SCALAR, output) : Returned value of the\n"
17025 " compression setting for the current device.\n"
17029 "Get the current device (keyword) name\n"
17033 " Get the current device (keyword) name. Note: you must have allocated\n"
17034 " space for this (80 characters is safe).\n"
17036 " Redacted form: plgdev(p_dev)\n"
17038 " This function is used in example 14.\n"
17048 " p_dev (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17049 " (with preallocated length of 80 characters or more) containing the\n"
17050 " device (keyword) name.\n"
17054 "Get parameters that define current device-space window\n"
17058 " Get relative margin width, aspect ratio, and relative justification\n"
17059 " that define current device-space window. If plsdidev has not been\n"
17060 " called the default values pointed to by p_mar, p_aspect, p_jx, and\n"
17061 " p_jy will all be 0.\n"
17063 " Redacted form: plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17065 " This function is used in example 31.\n"
17071 "plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17075 " p_mar (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17078 " p_aspect (PLFLT_NC_SCALAR, output) : Returned value of the aspect\n"
17081 " p_jx (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17082 " justification in x.\n"
17084 " p_jy (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17085 " justification in y.\n"
17089 "Get plot orientation\n"
17093 " Get plot orientation parameter which is multiplied by 90 degrees to\n"
17094 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
17095 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
17096 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
17097 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
17098 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori has\n"
17099 " not been called the default value pointed to by p_rot will be 0.\n"
17101 " Redacted form: plgdiori(p_rot)\n"
17103 " This function is not used in any examples.\n"
17109 "plgdiori(p_rot)\n"
17113 " p_rot (PLFLT_NC_SCALAR, output) : Returned value of the orientation\n"
17118 "Get parameters that define current plot-space window\n"
17122 " Get relative minima and maxima that define current plot-space window.\n"
17123 " If plsdiplt has not been called the default values pointed to by\n"
17124 " p_xmin, p_ymin, p_xmax, and p_ymax will be 0., 0., 1., and 1.\n"
17126 " Redacted form: plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17128 " This function is used in example 31.\n"
17134 "plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17138 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17141 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17144 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17147 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17152 "Get family file parameters\n"
17156 " Gets information about current family file, if familying is enabled.\n"
17157 " See the PLplot documentation for more information.\n"
17159 " Redacted form: plgfam(p_fam, p_num, p_bmax)\n"
17161 " This function is used in examples 14 and 31.\n"
17167 "plgfam(p_fam, p_num, p_bmax)\n"
17171 " p_fam (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17172 " family flag value. If nonzero, familying is enabled for the\n"
17173 " current device.\n"
17175 " p_num (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17176 " family file number.\n"
17178 " p_bmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17179 " file size (in bytes) for a family file.\n"
17183 "Get FCI (font characterization integer)\n"
17187 " Gets information about the current font using the FCI approach. See\n"
17188 " the PLplot documentation for more information.\n"
17190 " Redacted form: plgfci(p_fci)\n"
17192 " This function is used in example 23.\n"
17202 " p_fci (PLUNICODE_NC_SCALAR, output) : Returned value of the current\n"
17207 "Get output file name\n"
17211 " Gets the current output file name, if applicable.\n"
17213 " Redacted form: plgfnam(fnam)\n"
17215 " This function is used in example 31.\n"
17225 " fnam (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17226 " (with preallocated length of 80 characters or more) containing the\n"
17231 "Get family, style and weight of the current font\n"
17235 " Gets information about current font. See the PLplot documentation for\n"
17236 " more information on font selection.\n"
17238 " Redacted form: plgfont(p_family, p_style, p_weight)\n"
17240 " This function is used in example 23.\n"
17246 "plgfont(p_family, p_style, p_weight)\n"
17250 " p_family (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17251 " font family. The available values are given by the PL_FCI_*\n"
17252 " constants in plplot.h. Current options are PL_FCI_SANS,\n"
17253 " PL_FCI_SERIF, PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. If\n"
17254 " p_family is NULL then the font family is not returned.\n"
17256 " p_style (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17257 " font style. The available values are given by the PL_FCI_*\n"
17258 " constants in plplot.h. Current options are PL_FCI_UPRIGHT,\n"
17259 " PL_FCI_ITALIC and PL_FCI_OBLIQUE. If p_style is NULL then the font\n"
17260 " style is not returned.\n"
17262 " p_weight (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17263 " font weight. The available values are given by the PL_FCI_*\n"
17264 " constants in plplot.h. Current options are PL_FCI_MEDIUM and\n"
17265 " PL_FCI_BOLD. If p_weight is NULL then the font weight is not\n"
17270 "Get the (current) run level\n"
17274 " Get the (current) run level. Valid settings are: 0, uninitialized\n"
17275 " 1, initialized\n"
17276 " 2, viewport defined\n"
17277 " 3, world coordinates defined\n"
17280 " Redacted form: plglevel(p_level)\n"
17282 " This function is used in example 31.\n"
17288 "plglevel(p_level)\n"
17292 " p_level (PLINT_NC_SCALAR, output) : Returned value of the run\n"
17297 "Get page parameters\n"
17301 " Gets the current page configuration. The length and offset values are\n"
17302 " expressed in units that are specific to the current driver. For\n"
17303 " instance: screen drivers will usually interpret them as number of\n"
17304 " pixels, whereas printer drivers will usually use mm.\n"
17306 " Redacted form: plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17308 " This function is used in examples 14 and 31.\n"
17314 "plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17318 " p_xp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17319 " pixels/inch (DPI) in x.\n"
17321 " p_yp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17322 " pixels/inch (DPI) in y.\n"
17324 " p_xleng (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17327 " p_yleng (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17330 " p_xoff (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17333 " p_yoff (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17338 "Switch to graphics screen\n"
17342 " Sets an interactive device to graphics mode, used in conjunction with\n"
17343 " pltext to allow graphics and text to be interspersed. On a device\n"
17344 " which supports separate text and graphics windows, this command causes\n"
17345 " control to be switched to the graphics window. If already in graphics\n"
17346 " mode, this command is ignored. It is also ignored on devices which\n"
17347 " only support a single window or use a different method for shifting\n"
17348 " focus. See also pltext.\n"
17350 " Redacted form: plgra()\n"
17352 " This function is used in example 1.\n"
17362 "Grid data from irregularly sampled data\n"
17366 " Real world data is frequently irregularly sampled, but PLplot 3D plots\n"
17367 " require data organized as a grid, i.e., with x sample point values\n"
17368 " independent of y coordinate and vice versa. This function takes\n"
17369 " irregularly sampled data from the x[npts], y[npts], and z[npts]\n"
17370 " vectors; reads the desired grid location from the input vectors\n"
17371 " xg[nptsx] and yg[nptsy]; and returns the interpolated result on that\n"
17372 " grid using the output matrix zg[nptsx][nptsy]. The algorithm used to\n"
17373 " interpolate the data to the grid is specified with the argument type\n"
17374 " which can have one parameter specified in argument data.\n"
17376 " Redacted form: General: plgriddata(x, y, z, xg, yg, zg, type, data)\n"
17377 " Python: zg=plgriddata(x, y, z, xg, yg, type, data)\n"
17380 " This function is used in example 21.\n"
17386 "plgriddata(x, y, z, npts, xg, nptsx, yg, nptsy, zg, type, data)\n"
17390 " x (PLFLT_VECTOR, input) : The input x vector.\n"
17392 " y (PLFLT_VECTOR, input) : The input y vector.\n"
17394 " z (PLFLT_VECTOR, input) : The input z vector. Each triple x[i],\n"
17395 " y[i], z[i] represents one data sample coordinate.\n"
17397 " npts (PLINT, input) : The number of data samples in the x, y and z\n"
17400 " xg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17401 " in the x direction. Usually xg has nptsx equally spaced values\n"
17402 " from the minimum to the maximum values of the x input vector.\n"
17404 " nptsx (PLINT, input) : The number of points in the xg vector.\n"
17406 " yg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17407 " in the y direction. Similar to the xg parameter.\n"
17409 " nptsy (PLINT, input) : The number of points in the yg vector.\n"
17411 " zg (PLFLT_NC_MATRIX, output) : The matrix of interpolated results\n"
17412 " where data lies in the grid specified by xg and yg. Therefore the\n"
17413 " zg matrix must be dimensioned\n"
17417 " type (PLINT, input) : The type of grid interpolation algorithm to\n"
17418 " use, which can be: GRID_CSA: Bivariate Cubic Spline approximation\n"
17419 " GRID_DTLI: Delaunay Triangulation Linear Interpolation\n"
17420 " GRID_NNI: Natural Neighbors Interpolation\n"
17421 " GRID_NNIDW: Nearest Neighbors Inverse Distance Weighted\n"
17422 " GRID_NNLI: Nearest Neighbors Linear Interpolation\n"
17423 " GRID_NNAIDW: Nearest Neighbors Around Inverse Distance\n"
17425 " For details of the algorithms read the source file plgridd.c.\n"
17427 " data (PLFLT, input) : Some gridding algorithms require extra data,\n"
17428 " which can be specified through this argument. Currently, for\n"
17429 " algorithm: GRID_NNIDW, data specifies the number of neighbors to\n"
17430 " use, the lower the value, the noisier (more local) the\n"
17431 " approximation is.\n"
17432 " GRID_NNLI, data specifies what a thin triangle is, in the\n"
17433 " range [1. .. 2.]. High values enable the usage of very thin\n"
17434 " triangles for interpolation, possibly resulting in error in\n"
17435 " the approximation.\n"
17436 " GRID_NNI, only weights greater than data will be accepted. If\n"
17437 " 0, all weights will be accepted.\n"
17441 "Get current subpage parameters\n"
17445 " Gets the size of the current subpage in millimeters measured from the\n"
17446 " bottom left hand corner of the output device page or screen. Can be\n"
17447 " used in conjunction with plsvpa for setting the size of a viewport in\n"
17448 " absolute coordinates (millimeters).\n"
17450 " Redacted form: plgspa(xmin, xmax, ymin, ymax)\n"
17452 " This function is used in example 23.\n"
17458 "plgspa(xmin, xmax, ymin, ymax)\n"
17462 " xmin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17463 " the left hand edge of the subpage in millimeters.\n"
17465 " xmax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17466 " the right hand edge of the subpage in millimeters.\n"
17468 " ymin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17469 " the bottom edge of the subpage in millimeters.\n"
17471 " ymax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17472 " the top edge of the subpage in millimeters.\n"
17476 "Get current stream number\n"
17480 " Gets the number of the current output stream. See also plsstrm.\n"
17482 " Redacted form: plgstrm(p_strm)\n"
17484 " This function is used in example 1,20.\n"
17490 "plgstrm(p_strm)\n"
17494 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17499 "Get the current library version number\n"
17503 " Get the current library version number. Note: you must have allocated\n"
17504 " space for this (80 characters is safe).\n"
17506 " Redacted form: plgver(p_ver)\n"
17508 " This function is used in example 1.\n"
17518 " p_ver (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17519 " (with preallocated length of 80 characters or more) containing the\n"
17520 " PLplot version number.\n"
17524 "Get viewport limits in normalized device coordinates\n"
17528 " Get viewport limits in normalized device coordinates.\n"
17530 " Redacted form: General: plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17533 " This function is used in example 31.\n"
17539 "plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17543 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17544 " viewport limit of the normalized device coordinate in x.\n"
17546 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17547 " viewport limit of the normalized device coordinate in x.\n"
17549 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17550 " viewport limit of the normalized device coordinate in y.\n"
17552 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17553 " viewport limit of the normalized device coordinate in y.\n"
17557 "Get viewport limits in world coordinates\n"
17561 " Get viewport limits in world coordinates.\n"
17563 " Redacted form: General: plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17566 " This function is used in example 31.\n"
17572 "plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17576 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17577 " viewport limit of the world coordinate in x.\n"
17579 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17580 " viewport limit of the world coordinate in x.\n"
17582 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17583 " viewport limit of the world coordinate in y.\n"
17585 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17586 " viewport limit of the world coordinate in y.\n"
17590 "Get x axis parameters\n"
17594 " Returns current values of the p_digmax and p_digits flags for the x\n"
17595 " axis. p_digits is updated after the plot is drawn, so this routine\n"
17596 " should only be called after the call to plbox (or plbox3) is complete.\n"
17597 " See the PLplot documentation for more information.\n"
17599 " Redacted form: plgxax(p_digmax, p_digits)\n"
17601 " This function is used in example 31.\n"
17607 "plgxax(p_digmax, p_digits)\n"
17611 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17612 " number of digits for the x axis. If nonzero, the printed label\n"
17613 " has been switched to a floating-point representation when the\n"
17614 " number of digits exceeds this value.\n"
17616 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17617 " number of digits for the numeric labels (x axis) from the last\n"
17622 "Get y axis parameters\n"
17626 " Identical to plgxax, except that arguments are flags for y axis. See\n"
17627 " the description of plgxax for more detail.\n"
17629 " Redacted form: plgyax(p_digmax, p_digits)\n"
17631 " This function is used in example 31.\n"
17637 "plgyax(p_digmax, p_digits)\n"
17641 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17642 " number of digits for the y axis. If nonzero, the printed label\n"
17643 " has been switched to a floating-point representation when the\n"
17644 " number of digits exceeds this value.\n"
17646 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17647 " number of digits for the numeric labels (y axis) from the last\n"
17652 "Get z axis parameters\n"
17656 " Identical to plgxax, except that arguments are flags for z axis. See\n"
17657 " the description of plgxax for more detail.\n"
17659 " Redacted form: plgzax(p_digmax, p_digits)\n"
17661 " This function is used in example 31.\n"
17667 "plgzax(p_digmax, p_digits)\n"
17671 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17672 " number of digits for the z axis. If nonzero, the printed label\n"
17673 " has been switched to a floating-point representation when the\n"
17674 " number of digits exceeds this value.\n"
17676 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17677 " number of digits for the numeric labels (z axis) from the last\n"
17682 "Plot a histogram from unbinned data\n"
17686 " Plots a histogram from n data points stored in the data vector. This\n"
17687 " routine bins the data into nbin bins equally spaced between datmin and\n"
17688 " datmax, and calls plbin to draw the resulting histogram. Parameter\n"
17689 " opt allows, among other things, the histogram either to be plotted in\n"
17690 " an existing window or causes plhist to call plenv with suitable limits\n"
17691 " before plotting the histogram.\n"
17693 " Redacted form: plhist(data, datmin, datmax, nbin, opt)\n"
17695 " This function is used in example 5.\n"
17701 "plhist(n, data, datmin, datmax, nbin, opt)\n"
17705 " n (PLINT, input) : Number of data points.\n"
17707 " data (PLFLT_VECTOR, input) : A vector containing the values of the\n"
17708 " n data points.\n"
17710 " datmin (PLFLT, input) : Left-hand edge of lowest-valued bin.\n"
17712 " datmax (PLFLT, input) : Right-hand edge of highest-valued bin.\n"
17714 " nbin (PLINT, input) : Number of (equal-sized) bins into which to\n"
17715 " divide the interval xmin to xmax.\n"
17717 " opt (PLINT, input) : Is a combination of several flags:\n"
17718 " opt=PL_HIST_DEFAULT: The axes are automatically rescaled to fit\n"
17719 " the histogram data, the outer bins are expanded to fill up the\n"
17720 " entire x-axis, data outside the given extremes are assigned to the\n"
17721 " outer bins and bins of zero height are simply drawn.\n"
17722 " opt=PL_HIST_NOSCALING|...: The existing axes are not rescaled\n"
17723 " to fit the histogram data, without this flag, plenv is called\n"
17724 " to set the world coordinates.\n"
17725 " opt=PL_HIST_IGNORE_OUTLIERS|...: Data outside the given\n"
17726 " extremes are not taken into account. This option should\n"
17727 " probably be combined with opt=PL_HIST_NOEXPAND|..., so as to\n"
17728 " properly present the data.\n"
17729 " opt=PL_HIST_NOEXPAND|...: The outer bins are drawn with equal\n"
17730 " size as the ones inside.\n"
17731 " opt=PL_HIST_NOEMPTY|...: Bins with zero height are not drawn\n"
17732 " (there is a gap for such bins).\n"
17736 "Convert HLS color to RGB\n"
17740 " Convert HLS color coordinates to RGB.\n"
17742 " Redacted form: General: plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17745 " This function is used in example 2.\n"
17751 "plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17755 " h (PLFLT, input) : Hue in degrees (0.0-360.0) on the color\n"
17758 " l (PLFLT, input) : Lightness expressed as a fraction (0.0-1.0) of\n"
17759 " the axis of the color cylinder.\n"
17761 " s (PLFLT, input) : Saturation expressed as a fraction (0.0-1.0) of\n"
17762 " the radius of the color cylinder.\n"
17764 " p_r (PLFLT_NC_SCALAR, output) : Returned value of the red intensity\n"
17765 " (0.0-1.0) of the color.\n"
17767 " p_g (PLFLT_NC_SCALAR, output) : Returned value of the green\n"
17768 " intensity (0.0-1.0) of the color.\n"
17770 " p_b (PLFLT_NC_SCALAR, output) : Returned value of the blue\n"
17771 " intensity (0.0-1.0) of the color.\n"
17775 "Initialize PLplot\n"
17779 " Initializing the plotting package. The program prompts for the device\n"
17780 " keyword or number of the desired output device. Hitting a RETURN in\n"
17781 " response to the prompt is the same as selecting the first device.\n"
17782 " plinit will issue no prompt if either the device was specified\n"
17783 " previously (via command line flag, the plsetopt function, or the\n"
17784 " plsdev function), or if only one device is enabled when PLplot is\n"
17785 " installed. If subpages have been specified, the output device is\n"
17786 " divided into nx by ny subpages, each of which may be used\n"
17787 " independently. If plinit is called again during a program, the\n"
17788 " previously opened file will be closed. The subroutine pladv is used\n"
17789 " to advance from one subpage to the next.\n"
17791 " Redacted form: plinit()\n"
17793 " This function is used in all of the examples.\n"
17803 "Draw a line between two points\n"
17807 " Joins the point (\n"
17813 " Redacted form: pljoin(x1,y1,x2,y2)\n"
17815 " This function is used in examples 3 and 14.\n"
17821 "pljoin(x1, y1, x2, y2)\n"
17825 " x1 (PLFLT, input) : x coordinate of first point.\n"
17827 " y1 (PLFLT, input) : y coordinate of first point.\n"
17829 " x2 (PLFLT, input) : x coordinate of second point.\n"
17831 " y2 (PLFLT, input) : y coordinate of second point.\n"
17835 "Simple routine to write labels\n"
17839 " Routine for writing simple labels. Use plmtex for more complex labels.\n"
17841 " Redacted form: pllab(xlabel, ylabel, tlabel)\n"
17843 " This function is used in examples 1, 5, 9, 12, 14-16, 20-22, and 29.\n"
17849 "pllab(xlabel, ylabel, tlabel)\n"
17853 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17854 " the label for the x axis.\n"
17856 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17857 " the label for the y axis.\n"
17859 " tlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17860 " the title of the plot.\n"
17864 "Plot legend using discretely annotated filled boxes, lines, and/or lines of symbols\n"
17868 " Routine for creating a discrete plot legend with a plotted filled box,\n"
17869 " line, and/or line of symbols for each annotated legend entry. (See\n"
17870 " plcolorbar for similar functionality for creating continuous color\n"
17871 " bars.) The arguments of pllegend provide control over the location\n"
17872 " and size of the legend as well as the location and characteristics of\n"
17873 " the elements (most of which are optional) within that legend. The\n"
17874 " resulting legend is clipped at the boundaries of the current subpage.\n"
17875 " (N.B. the adopted coordinate system used for some of the parameters is\n"
17876 " defined in the documentation of the position parameter.)\n"
17878 " Redacted form: pllegend(p_legend_width, p_legend_height, opt,\n"
17879 " position, x, y, plot_width, bg_color, bb_color, bb_style, nrow,\n"
17880 " ncolumn, opt_array, text_offset, text_scale, text_spacing,\n"
17881 " test_justification, text_colors, text, box_colors, box_patterns,\n"
17882 " box_scales, box_line_widths, line_colors, line_styles, line_widths,\n"
17883 " symbol_colors, symbol_scales, symbol_numbers, symbols)\n"
17885 " This function is used in examples 4, 26, and 33.\n"
17891 "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"
17895 " p_legend_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17896 " legend width in adopted coordinates. This quantity is calculated\n"
17897 " from plot_width, text_offset, ncolumn (possibly modified inside\n"
17898 " the routine depending on nlegend and nrow), and the length\n"
17899 " (calculated internally) of the longest text string.\n"
17901 " p_legend_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17902 " legend height in adopted coordinates. This quantity is calculated\n"
17903 " from text_scale, text_spacing, and nrow (possibly modified inside\n"
17904 " the routine depending on nlegend and nrow).\n"
17906 " opt (PLINT, input) : opt contains bits controlling the overall\n"
17907 " legend. If the PL_LEGEND_TEXT_LEFT bit is set, put the text area\n"
17908 " on the left of the legend and the plotted area on the right.\n"
17909 " Otherwise, put the text area on the right of the legend and the\n"
17910 " plotted area on the left. If the PL_LEGEND_BACKGROUND bit is set,\n"
17911 " plot a (semitransparent) background for the legend. If the\n"
17912 " PL_LEGEND_BOUNDING_BOX bit is set, plot a bounding box for the\n"
17913 " legend. If the PL_LEGEND_ROW_MAJOR bit is set and (both of the\n"
17914 " possibly internally transformed) nrow > 1 and ncolumn > 1, then\n"
17915 " plot the resulting array of legend entries in row-major order.\n"
17916 " Otherwise, plot the legend entries in column-major order.\n"
17918 " position (PLINT, input) : position contains bits which control the\n"
17919 " overall position of the legend and the definition of the adopted\n"
17920 " coordinates used for positions just like what is done for the\n"
17921 " position argument for plcolorbar. However, note that the defaults\n"
17922 " for the position bits (see below) are different than the\n"
17923 " plcolorbar case. The combination of the PL_POSITION_LEFT,\n"
17924 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
17925 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
17926 " the 16 possible standard positions (the 4 corners and centers of\n"
17927 " the 4 sides for both the inside and outside cases) of the legend\n"
17928 " relative to the adopted coordinate system. The corner positions\n"
17929 " are specified by the appropriate combination of two of the\n"
17930 " PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
17931 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
17932 " value of one of those bits. The adopted coordinates are\n"
17933 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
17934 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
17935 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
17936 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
17937 " then use the combination of PL_POSITION_RIGHT and PL_POSITION_TOP.\n"
17938 " If neither of PL_POSITION_INSIDE or PL_POSITION_OUTSIDE is set,\n"
17939 " use PL_POSITION_INSIDE. If neither of PL_POSITION_VIEWPORT or\n"
17940 " PL_POSITION_SUBPAGE is set, use PL_POSITION_VIEWPORT.\n"
17942 " x (PLFLT, input) : X offset of the legend position in adopted\n"
17943 " coordinates from the specified standard position of the legend.\n"
17944 " For positive x, the direction of motion away from the standard\n"
17945 " position is inward/outward from the standard corner positions or\n"
17946 " standard left or right positions if the\n"
17947 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
17948 " For the standard top or bottom positions, the direction of motion\n"
17949 " is toward positive X.\n"
17951 " y (PLFLT, input) : Y offset of the legend position in adopted\n"
17952 " coordinates from the specified standard position of the legend.\n"
17953 " For positive y, the direction of motion away from the standard\n"
17954 " position is inward/outward from the standard corner positions or\n"
17955 " standard top or bottom positions if the\n"
17956 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position. For\n"
17957 " the standard left or right positions, the direction of motion is\n"
17958 " toward positive Y.\n"
17960 " plot_width (PLFLT, input) : Horizontal width in adopted coordinates\n"
17961 " of the plot area (where the colored boxes, lines, and/or lines of\n"
17962 " symbols are drawn) of the legend.\n"
17964 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
17965 " legend (PL_LEGEND_BACKGROUND).\n"
17967 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
17968 " for the legend (PL_LEGEND_BOUNDING_BOX).\n"
17970 " bb_style (PLINT, input) : The pllsty style number for the\n"
17971 " bounding-box line for the legend (PL_LEGEND_BACKGROUND).\n"
17973 " nrow (PLINT, input) : The number of rows in the matrix used to\n"
17975 " nlegend legend entries. For internal transformations of\n"
17976 " nrow, see further remarks under\n"
17979 " ncolumn (PLINT, input) : The number of columns in the matrix used\n"
17981 " nlegend legend entries. For internal transformations of\n"
17982 " ncolumn, see further remarks under\n"
17985 " nlegend (PLINT, input) : Number of legend entries. The above\n"
17987 " ncolumn values are transformed internally to be consistent with\n"
17988 " nlegend. If either\n"
17990 " ncolumn is non-positive it is replaced by 1. If the resulting product\n"
17993 " ncolumn is less than\n"
17994 " nlegend, the smaller of the two (or\n"
17997 " ncolumn) is increased so the product is >=\n"
17998 " nlegend. Thus, for example, the common\n"
18000 " ncolumn = 0 case is transformed internally to\n"
18003 " ncolumn = 1; i.e., the usual case of a legend rendered as a single\n"
18006 " opt_array (PLINT_VECTOR, input) : A vector of\n"
18007 " nlegend values of options to control each individual plotted area\n"
18008 " corresponding to a legend entry. If the\n"
18009 " PL_LEGEND_NONE bit is set, then nothing is plotted in the plotted\n"
18011 " PL_LEGEND_COLOR_BOX,\n"
18012 " PL_LEGEND_LINE, and/or\n"
18013 " PL_LEGEND_SYMBOL bits are set, the area corresponding to a legend\n"
18014 " entry is plotted with a colored box; a line; and/or a line of\n"
18017 " text_offset (PLFLT, input) : Offset of the text area from the plot\n"
18018 " area in units of character width.\n"
18020 " text_scale (PLFLT, input) : Character height scale for text\n"
18023 " text_spacing (PLFLT, input) : Vertical spacing in units of the\n"
18024 " character height from one legend entry to the next.\n"
18026 " text_justification (PLFLT, input) : Justification parameter used\n"
18027 " for text justification. The most common values of\n"
18028 " text_justification are 0., 0.5, or 1. corresponding to a text that\n"
18029 " is left justified, centred, or right justified within the text\n"
18030 " area, but other values are allowed as well.\n"
18032 " text_colors (PLINT_VECTOR, input) : A vector containing\n"
18033 " nlegend cmap0 text colors.\n"
18035 " text (PLCHAR_MATRIX, input) : A vector of\n"
18036 " nlegend UTF-8 character strings containing the legend annotations.\n"
18038 " box_colors (PLINT_VECTOR, input) : A vector containing\n"
18039 " nlegend cmap0 colors for the discrete colored boxes (\n"
18040 " PL_LEGEND_COLOR_BOX).\n"
18042 " box_patterns (PLINT_VECTOR, input) : A vector containing\n"
18043 " nlegend patterns (plpsty indices) for the discrete colored boxes (\n"
18044 " PL_LEGEND_COLOR_BOX).\n"
18046 " box_scales (PLFLT_VECTOR, input) : A vector containing\n"
18047 " nlegend scales (units of fraction of character height) for the height\n"
18048 " of the discrete colored boxes (\n"
18049 " PL_LEGEND_COLOR_BOX).\n"
18051 " box_line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18052 " nlegend line widths for the patterns specified by box_patterns (\n"
18053 " PL_LEGEND_COLOR_BOX).\n"
18055 " line_colors (PLINT_VECTOR, input) : A vector containing\n"
18056 " nlegend cmap0 line colors (\n"
18057 " PL_LEGEND_LINE).\n"
18059 " line_styles (PLINT_VECTOR, input) : A vector containing\n"
18060 " nlegend line styles (plsty indices) (\n"
18061 " PL_LEGEND_LINE).\n"
18063 " line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18064 " nlegend line widths (\n"
18065 " PL_LEGEND_LINE).\n"
18067 " symbol_colors (PLINT_VECTOR, input) : A vector containing\n"
18068 " nlegend cmap0 symbol colors (\n"
18069 " PL_LEGEND_SYMBOL).\n"
18071 " symbol_scales (PLFLT_VECTOR, input) : A vector containing\n"
18072 " nlegend scale values for the symbol height (\n"
18073 " PL_LEGEND_SYMBOL).\n"
18075 " symbol_numbers (PLINT_VECTOR, input) : A vector containing\n"
18076 " nlegend numbers of symbols to be drawn across the width of the plotted\n"
18078 " PL_LEGEND_SYMBOL).\n"
18080 " symbols (PLCHAR_MATRIX, input) : A vector of\n"
18081 " nlegend UTF-8 character strings containing the legend symbols. (\n"
18082 " PL_LEGEND_SYMBOL).\n"
18086 "Plot color bar for image, shade or gradient plots\n"
18090 " Routine for creating a continuous color bar for image, shade, or\n"
18091 " gradient plots. (See pllegend for similar functionality for creating\n"
18092 " legends with discrete elements). The arguments of plcolorbar provide\n"
18093 " control over the location and size of the color bar as well as the\n"
18094 " location and characteristics of the elements (most of which are\n"
18095 " optional) within that color bar. The resulting color bar is clipped\n"
18096 " at the boundaries of the current subpage. (N.B. the adopted coordinate\n"
18097 " system used for some of the parameters is defined in the documentation\n"
18098 " of the position parameter.)\n"
18100 " Redacted form: plcolorbar(p_colorbar_width, p_colorbar_height, opt,\n"
18101 " position, x, y, x_length, y_length, bg_color, bb_color, bb_style,\n"
18102 " low_cap_color, high_cap_color, cont_color, cont_width, label_opts,\n"
18103 " labels, axis_opts, ticks, sub_ticks, values)\n"
18105 " This function is used in examples 16 and 33.\n"
18111 "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"
18115 " p_colorbar_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18116 " labelled and decorated color bar width in adopted coordinates.\n"
18118 " p_colorbar_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18119 " labelled and decorated color bar height in adopted coordinates.\n"
18121 " opt (PLINT, input) : opt contains bits controlling the overall\n"
18122 " color bar. The orientation (direction of the maximum value) of\n"
18123 " the color bar is specified with PL_ORIENT_RIGHT, PL_ORIENT_TOP,\n"
18124 " PL_ORIENT_LEFT, or PL_ORIENT_BOTTOM. If none of these bits are\n"
18125 " specified, the default orientation is toward the top if the\n"
18126 " colorbar is placed on the left or right of the viewport or toward\n"
18127 " the right if the colorbar is placed on the top or bottom of the\n"
18128 " viewport. If the PL_COLORBAR_BACKGROUND bit is set, plot a\n"
18129 " (semitransparent) background for the color bar. If the\n"
18130 " PL_COLORBAR_BOUNDING_BOX bit is set, plot a bounding box for the\n"
18131 " color bar. The type of color bar must be specified with one of\n"
18132 " PL_COLORBAR_IMAGE, PL_COLORBAR_SHADE, or PL_COLORBAR_GRADIENT. If\n"
18133 " more than one of those bits is set only the first one in the above\n"
18134 " list is honored. The position of the (optional) label/title can be\n"
18135 " specified with PL_LABEL_RIGHT, PL_LABEL_TOP, PL_LABEL_LEFT, or\n"
18136 " PL_LABEL_BOTTOM. If no label position bit is set then no label\n"
18137 " will be drawn. If more than one of this list of bits is specified,\n"
18138 " only the first one on the list is honored. End-caps for the color\n"
18139 " bar can added with PL_COLORBAR_CAP_LOW and PL_COLORBAR_CAP_HIGH.\n"
18140 " If a particular color bar cap option is not specified then no cap\n"
18141 " will be drawn for that end. As a special case for\n"
18142 " PL_COLORBAR_SHADE, the option PL_COLORBAR_SHADE_LABEL can be\n"
18143 " specified. If this option is provided then any tick marks and tick\n"
18144 " labels will be placed at the breaks between shaded segments. TODO:\n"
18145 " This should be expanded to support custom placement of tick marks\n"
18146 " and tick labels at custom value locations for any color bar type.\n"
18148 " position (PLINT, input) : position contains bits which control the\n"
18149 " overall position of the color bar and the definition of the\n"
18150 " adopted coordinates used for positions just like what is done for\n"
18151 " the position argument for pllegend. However, note that the\n"
18152 " defaults for the position bits (see below) are different than the\n"
18153 " pllegend case. The combination of the PL_POSITION_LEFT,\n"
18154 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
18155 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
18156 " the 16 possible standard positions (the 4 corners and centers of\n"
18157 " the 4 sides for both the inside and outside cases) of the color\n"
18158 " bar relative to the adopted coordinate system. The corner\n"
18159 " positions are specified by the appropriate combination of two of\n"
18160 " the PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
18161 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
18162 " value of one of those bits. The adopted coordinates are\n"
18163 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
18164 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
18165 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
18166 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
18167 " then use PL_POSITION_RIGHT. If neither of PL_POSITION_INSIDE or\n"
18168 " PL_POSITION_OUTSIDE is set, use PL_POSITION_OUTSIDE. If neither of\n"
18169 " PL_POSITION_VIEWPORT or PL_POSITION_SUBPAGE is set, use\n"
18170 " PL_POSITION_VIEWPORT.\n"
18172 " x (PLFLT, input) : X offset of the color bar position in adopted\n"
18173 " coordinates from the specified standard position of the color bar.\n"
18174 " For positive x, the direction of motion away from the standard\n"
18175 " position is inward/outward from the standard corner positions or\n"
18176 " standard left or right positions if the\n"
18177 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18178 " For the standard top or bottom positions, the direction of motion\n"
18179 " is toward positive X.\n"
18181 " y (PLFLT, input) : Y offset of the color bar position in adopted\n"
18182 " coordinates from the specified standard position of the color bar.\n"
18183 " For positive y, the direction of motion away from the standard\n"
18184 " position is inward/outward from the standard corner positions or\n"
18185 " standard top or bottom positions if the\n"
18186 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18187 " For the standard left or right positions, the direction of motion\n"
18188 " is toward positive Y.\n"
18190 " x_length (PLFLT, input) : Length of the body of the color bar in\n"
18191 " the X direction in adopted coordinates.\n"
18193 " y_length (PLFLT, input) : Length of the body of the color bar in\n"
18194 " the Y direction in adopted coordinates.\n"
18196 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18197 " color bar (PL_COLORBAR_BACKGROUND).\n"
18199 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18200 " for the color bar (PL_COLORBAR_BOUNDING_BOX).\n"
18202 " bb_style (PLINT, input) : The pllsty style number for the\n"
18203 " bounding-box line for the color bar (PL_COLORBAR_BACKGROUND).\n"
18205 " low_cap_color (PLFLT, input) : The cmap1 color of the low-end color\n"
18206 " bar cap, if it is drawn (PL_COLORBAR_CAP_LOW).\n"
18208 " high_cap_color (PLFLT, input) : The cmap1 color of the high-end\n"
18209 " color bar cap, if it is drawn (PL_COLORBAR_CAP_HIGH).\n"
18211 " cont_color (PLINT, input) : The cmap0 contour color for\n"
18212 " PL_COLORBAR_SHADE plots. This is passed directly to plshades, so\n"
18213 " it will be interpreted according to the design of plshades.\n"
18215 " cont_width (PLFLT, input) : Contour width for PL_COLORBAR_SHADE\n"
18216 " plots. This is passed directly to plshades, so it will be\n"
18217 " interpreted according to the design of plshades.\n"
18219 " n_labels (PLINT, input) : Number of labels to place around the\n"
18222 " label_opts (PLINT_VECTOR, input) : A vector of options for each of\n"
18223 " n_labels labels.\n"
18225 " labels (PLCHAR_MATRIX, input) : A vector of\n"
18226 " n_labels UTF-8 character strings containing the labels for the color\n"
18227 " bar. Ignored if no label position is specified with one of the\n"
18228 " PL_COLORBAR_LABEL_RIGHT, PL_COLORBAR_LABEL_TOP,\n"
18229 " PL_COLORBAR_LABEL_LEFT, or PL_COLORBAR_LABEL_BOTTOM bits in the\n"
18230 " corresponding label_opts field.\n"
18232 " n_axes (PLINT, input) : Number of axis definitions provided. This\n"
18233 " value must be greater than 0. It is typically 1 (numerical axis\n"
18234 " labels are provided for one of the long edges of the color bar),\n"
18235 " but it can be larger if multiple numerical axis labels for the\n"
18236 " long edges of the color bar are desired.\n"
18238 " axis_opts (PLCHAR_MATRIX, input) : A vector of\n"
18239 " n_axes ascii character strings containing options (interpreted as for\n"
18240 " plbox) for the color bar's axis definitions.\n"
18242 " ticks (PLFLT_VECTOR, input) : A vector of n_axes values of the\n"
18243 " spacing of the major tick marks (interpreted as for plbox) for the\n"
18244 " color bar's axis definitions.\n"
18246 " sub_ticks (PLINT_VECTOR, input) : A vector of n_axes values of the\n"
18247 " number of subticks (interpreted as for plbox) for the color bar's\n"
18248 " axis definitions.\n"
18250 " n_values (PLINT_VECTOR, input) : A vector containing the number of\n"
18251 " elements in each of the n_axes rows of the values matrix.\n"
18253 " values (PLFLT_MATRIX, input) : A matrix containing the numeric\n"
18254 " values for the data range represented by the color bar. For a row\n"
18255 " index of i_axis (where 0 < i_axis < n_axes), the number of\n"
18256 " elements in the row is specified by n_values[i_axis]. For\n"
18257 " PL_COLORBAR_IMAGE and PL_COLORBAR_GRADIENT the number of elements\n"
18258 " is 2, and the corresponding row elements of the values matrix are\n"
18259 " the minimum and maximum value represented by the colorbar. For\n"
18260 " PL_COLORBAR_SHADE, the number and values of the elements of a row\n"
18261 " of the values matrix is interpreted the same as the nlevel and\n"
18262 " clevel arguments of plshades.\n"
18266 "Sets the 3D position of the light source\n"
18270 " Sets the 3D position of the light source for use with plsurf3d and\n"
18273 " Redacted form: pllightsource(x, y, z)\n"
18275 " This function is used in example 8.\n"
18281 "pllightsource(x, y, z)\n"
18285 " x (PLFLT, input) : X-coordinate of the light source.\n"
18287 " y (PLFLT, input) : Y-coordinate of the light source.\n"
18289 " z (PLFLT, input) : Z-coordinate of the light source.\n"
18297 " Draws line defined by n points in x and y.\n"
18299 " Redacted form: plline(x, y)\n"
18301 " This function is used in examples 1, 3, 4, 9, 12-14, 16, 18, 20, 22,\n"
18302 " 25-27, and 29.\n"
18308 "plline(n, x, y)\n"
18312 " n (PLINT, input) : Number of points defining line.\n"
18314 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18317 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18322 "Draw a line in 3 space\n"
18326 " Draws line in 3 space defined by n points in x, y, and z. You must\n"
18327 " first set up the viewport, the 2d viewing window (in world\n"
18328 " coordinates), and the 3d normalized coordinate box. See x18c.c for\n"
18331 " Redacted form: plline3(x, y, z)\n"
18333 " This function is used in example 18.\n"
18339 "plline3(n, x, y, z)\n"
18343 " n (PLINT, input) : Number of points defining line.\n"
18345 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18348 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18351 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
18356 "Select line style\n"
18360 " This sets the line style according to one of eight predefined patterns\n"
18361 " (also see plstyl).\n"
18363 " Redacted form: pllsty(lin)\n"
18365 " This function is used in examples 9, 12, 22, and 25.\n"
18375 " lin (PLINT, input) : Integer value between 1 and 8. Line style 1 is\n"
18376 " a continuous line, line style 2 is a line with short dashes and\n"
18377 " gaps, line style 3 is a line with long dashes and gaps, line style\n"
18378 " 4 has long dashes and short gaps and so on.\n"
18382 "Plot surface mesh\n"
18386 " Plots a surface mesh within the environment set up by plw3d. The\n"
18387 " surface is defined by the matrix z[\n"
18389 " ny] , the point z[i][j] being the value of the function at (\n"
18391 " y[j]). Note that the points in vectors x and y do not need to be\n"
18392 " equally spaced, but must be stored in ascending order. The parameter\n"
18393 " opt controls the way in which the surface is displayed. For further\n"
18394 " details see the PLplot documentation.\n"
18396 " Redacted form: plmesh(x, y, z, opt)\n"
18398 " This function is used in example 11.\n"
18404 "plmesh(x, y, z, nx, ny, opt)\n"
18408 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18409 " which the function is evaluated.\n"
18411 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18412 " which the function is evaluated.\n"
18414 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18415 " plot. Should have dimensions of\n"
18419 " nx (PLINT, input) : Number of x values at which function has been\n"
18422 " ny (PLINT, input) : Number of y values at which function has been\n"
18425 " opt (PLINT, input) : Determines the way in which the surface is\n"
18426 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18427 " function of x for each value of y[j] .\n"
18428 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18429 " for each value of x[i] .\n"
18430 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18431 " at which function is defined.\n"
18435 "Magnitude colored plot surface mesh with contour\n"
18439 " A more powerful form of plmesh: the surface mesh can be colored\n"
18440 " accordingly to the current z value being plotted, a contour plot can\n"
18441 " be drawn at the base XY plane, and a curtain can be drawn between the\n"
18442 " plotted function border and the base XY plane.\n"
18444 " Redacted form: plmeshc(x, y, z, opt, clevel)\n"
18446 " This function is used in example 11.\n"
18452 "plmeshc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18456 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18457 " which the function is evaluated.\n"
18459 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18460 " which the function is evaluated.\n"
18462 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18463 " plot. Should have dimensions of\n"
18467 " nx (PLINT, input) : Number of x values at which function is\n"
18470 " ny (PLINT, input) : Number of y values at which function is\n"
18473 " opt (PLINT, input) : Determines the way in which the surface is\n"
18474 " represented. To specify more than one option just add the options,\n"
18475 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18476 " showing z as a function of x for each value of y[j] .\n"
18477 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18478 " for each value of x[i] .\n"
18479 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18480 " at which function is defined.\n"
18481 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18482 " the z value being plotted. The color is used from the current\n"
18484 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18485 " using parameters\n"
18488 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18489 " the borders of the plotted function.\n"
18492 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18495 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18499 "Creates a new stream and makes it the default\n"
18503 " Creates a new stream and makes it the default. Differs from using\n"
18504 " plsstrm, in that a free stream number is found, and returned.\n"
18505 " Unfortunately, I have to start at stream 1 and work upward, since\n"
18506 " stream 0 is preallocated. One of the big flaws in the PLplot API is\n"
18507 " that no initial, library-opening call is required. So stream 0 must\n"
18508 " be preallocated, and there is no simple way of determining whether it\n"
18509 " is already in use or not.\n"
18511 " Redacted form: plmkstrm(p_strm)\n"
18513 " This function is used in examples 1 and 20.\n"
18519 "plmkstrm(p_strm)\n"
18523 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the stream\n"
18524 " number of the created stream.\n"
18528 "Write text relative to viewport boundaries\n"
18532 " Writes text at a specified position relative to the viewport\n"
18533 " boundaries. Text may be written inside or outside the viewport, but\n"
18534 " is clipped at the subpage boundaries. The reference point of a string\n"
18535 " lies along a line passing through the string at half the height of a\n"
18536 " capital letter. The position of the reference point along this line\n"
18537 " is determined by just, and the position of the reference point\n"
18538 " relative to the viewport is set by disp and pos.\n"
18540 " Redacted form: General: plmtex(side, disp, pos, just, text)\n"
18543 " This function is used in examples 3, 4, 6-8, 11, 12, 14, 18, 23, and\n"
18550 "plmtex(side, disp, pos, just, text)\n"
18554 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18555 " the side of the viewport along which the text is to be written.\n"
18556 " The string must be one of: b: Bottom of viewport, text written\n"
18557 " parallel to edge.\n"
18558 " bv: Bottom of viewport, text written at right angles to edge.\n"
18559 " l: Left of viewport, text written parallel to edge.\n"
18560 " lv: Left of viewport, text written at right angles to edge.\n"
18561 " r: Right of viewport, text written parallel to edge.\n"
18562 " rv: Right of viewport, text written at right angles to edge.\n"
18563 " t: Top of viewport, text written parallel to edge.\n"
18564 " tv: Top of viewport, text written at right angles to edge.\n"
18567 " disp (PLFLT, input) : Position of the reference point of string,\n"
18568 " measured outwards from the specified viewport edge in units of the\n"
18569 " current character height. Use negative disp to write within the\n"
18572 " pos (PLFLT, input) : Position of the reference point of string\n"
18573 " along the specified edge, expressed as a fraction of the length of\n"
18576 " just (PLFLT, input) : Specifies the position of the string relative\n"
18577 " to its reference point. If just=0. , the reference point is at\n"
18578 " the left and if just=1. , it is at the right of the string. Other\n"
18579 " values of just give intermediate justifications.\n"
18581 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18586 "Write text relative to viewport boundaries in 3D plots\n"
18590 " Writes text at a specified position relative to the viewport\n"
18591 " boundaries. Text may be written inside or outside the viewport, but\n"
18592 " is clipped at the subpage boundaries. The reference point of a string\n"
18593 " lies along a line passing through the string at half the height of a\n"
18594 " capital letter. The position of the reference point along this line\n"
18595 " is determined by just, and the position of the reference point\n"
18596 " relative to the viewport is set by disp and pos.\n"
18598 " Redacted form: plmtex3(side, disp, pos, just, text)\n"
18600 " This function is used in example 28.\n"
18606 "plmtex3(side, disp, pos, just, text)\n"
18610 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18611 " the side of the viewport along which the text is to be written.\n"
18612 " The string should contain one or more of the following characters:\n"
18613 " [xyz][ps][v]. Only one label is drawn at a time, i.e. xyp will\n"
18614 " only label the X axis, not both the X and Y axes. x: Label the X\n"
18616 " y: Label the Y axis.\n"
18617 " z: Label the Z axis.\n"
18618 " p: Label the primary axis. For Z this is the leftmost Z axis.\n"
18619 " For X it is the axis that starts at y-min. For Y it is the\n"
18620 " axis that starts at x-min.\n"
18621 " s: Label the secondary axis.\n"
18622 " v: Draw the text perpendicular to the axis.\n"
18625 " disp (PLFLT, input) : Position of the reference point of string,\n"
18626 " measured outwards from the specified viewport edge in units of the\n"
18627 " current character height. Use negative disp to write within the\n"
18630 " pos (PLFLT, input) : Position of the reference point of string\n"
18631 " along the specified edge, expressed as a fraction of the length of\n"
18634 " just (PLFLT, input) : Specifies the position of the string relative\n"
18635 " to its reference point. If just=0. , the reference point is at\n"
18636 " the left and if just=1. , it is at the right of the string. Other\n"
18637 " values of just give intermediate justifications.\n"
18639 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18644 "Plot 3-d surface plot\n"
18648 " Plots a three-dimensional surface plot within the environment set up\n"
18649 " by plw3d. The surface is defined by the matrix z[\n"
18651 " ny] , the point z[i][j] being the value of the function at (\n"
18653 " y[j]). Note that the points in vectors x and y do not need to be\n"
18654 " equally spaced, but must be stored in ascending order. The parameter\n"
18655 " opt controls the way in which the surface is displayed. For further\n"
18656 " details see the PLplot documentation. The only difference between\n"
18657 " plmesh and plot3d is that plmesh draws the bottom side of the surface,\n"
18658 " while plot3d only draws the surface as viewed from the top.\n"
18660 " Redacted form: plot3d(x, y, z, opt, side)\n"
18662 " This function is used in examples 11 and 21.\n"
18668 "plot3d(x, y, z, nx, ny, opt, side)\n"
18672 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18673 " which the function is evaluated.\n"
18675 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18676 " which the function is evaluated.\n"
18678 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18679 " plot. Should have dimensions of\n"
18683 " nx (PLINT, input) : Number of x values at which function is\n"
18686 " ny (PLINT, input) : Number of y values at which function is\n"
18689 " opt (PLINT, input) : Determines the way in which the surface is\n"
18690 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18691 " function of x for each value of y[j] .\n"
18692 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18693 " for each value of x[i] .\n"
18694 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18695 " at which function is defined.\n"
18698 " side (PLBOOL, input) : Flag to indicate whether or not ``sides''\n"
18699 " should be draw on the figure. If side is true sides are drawn,\n"
18700 " otherwise no sides are drawn.\n"
18704 "Magnitude colored plot surface with contour\n"
18708 " Aside from dropping the\n"
18709 " side functionality this is a more powerful form of plot3d: the surface\n"
18710 " mesh can be colored accordingly to the current z value being plotted,\n"
18711 " a contour plot can be drawn at the base XY plane, and a curtain can be\n"
18712 " drawn between the plotted function border and the base XY plane. The\n"
18713 " arguments are identical to those of plmeshc. The only difference\n"
18714 " between plmeshc and plot3dc is that plmeshc draws the bottom side of\n"
18715 " the surface, while plot3dc only draws the surface as viewed from the\n"
18718 " Redacted form: General: plot3dc(x, y, z, opt, clevel)\n"
18721 " This function is used in example 21.\n"
18727 "plot3dc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18731 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18732 " which the function is evaluated.\n"
18734 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18735 " which the function is evaluated.\n"
18737 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18738 " plot. Should have dimensions of\n"
18742 " nx (PLINT, input) : Number of x values at which function is\n"
18745 " ny (PLINT, input) : Number of y values at which function is\n"
18748 " opt (PLINT, input) : Determines the way in which the surface is\n"
18749 " represented. To specify more than one option just add the options,\n"
18750 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18751 " showing z as a function of x for each value of y[j] .\n"
18752 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18753 " for each value of x[i] .\n"
18754 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18755 " at which function is defined.\n"
18756 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18757 " the z value being plotted. The color is used from the current\n"
18759 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18760 " using parameters\n"
18763 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18764 " the borders of the plotted function.\n"
18767 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18770 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18774 "Magnitude colored plot surface with contour for z[x][y] with y index limits\n"
18778 " When the implementation is completed this variant of plot3dc (see that\n"
18779 " function's documentation for more details) should be suitable for the\n"
18780 " case where the area of the x, y coordinate grid where z is defined can\n"
18781 " be non-rectangular. The implementation is incomplete so the last 4\n"
18782 " parameters of plot3dcl; indexxmin, indexxmax, indexymin, and\n"
18783 " indexymax; are currently ignored and the functionality is otherwise\n"
18784 " identical to that of plot3dc.\n"
18786 " Redacted form: General: plot3dcl(x, y, z, opt, clevel, indexxmin,\n"
18787 " indexymin, indexymax)\n"
18790 " This function is not used in any example.\n"
18796 "plot3dcl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18800 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18801 " which the function is evaluated.\n"
18803 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18804 " which the function is evaluated.\n"
18806 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18807 " plot. Should have dimensions of\n"
18811 " nx (PLINT, input) : Number of x values at which the function is\n"
18814 " ny (PLINT, input) : Number of y values at which the function is\n"
18817 " opt (PLINT, input) : Determines the way in which the surface is\n"
18818 " represented. To specify more than one option just add the options,\n"
18819 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18820 " showing z as a function of x for each value of y[j] .\n"
18821 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18822 " for each value of x[i] .\n"
18823 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18824 " at which function is defined.\n"
18825 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18826 " the z value being plotted. The color is used from the current\n"
18828 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18829 " using parameters\n"
18832 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18833 " the borders of the plotted function.\n"
18836 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18839 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18841 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
18842 " corresponds to the first x index where z is defined.\n"
18844 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
18845 " which corresponds (by convention) to one more than the last x\n"
18846 " index value where z is defined.\n"
18848 " indexymin (PLINT_VECTOR, input) : A vector containing y index\n"
18849 " values which all must be ≥ 0. These values are the first y index\n"
18850 " where z is defined for a particular x index in the range from\n"
18851 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
18854 " indexymax (PLINT_VECTOR, input) : A vector containing y index\n"
18855 " values which all must be ≤ ny. These values correspond (by\n"
18856 " convention) to one more than the last y index where z is defined\n"
18857 " for a particular x index in the range from indexxmin to indexxmax\n"
18858 " - 1. The dimension of indexymax is indexxmax.\n"
18862 "Plot shaded 3-d surface plot\n"
18866 " Plots a three-dimensional shaded surface plot within the environment\n"
18867 " set up by plw3d. The surface is defined by the two-dimensional matrix\n"
18870 " ny], the point z[i][j] being the value of the function at (\n"
18872 " y[j]). Note that the points in vectors x and y do not need to be\n"
18873 " equally spaced, but must be stored in ascending order. For further\n"
18874 " details see the PLplot documentation.\n"
18876 " Redacted form: plsurf3d(x, y, z, opt, clevel)\n"
18878 " This function is not used in any examples.\n"
18884 "plsurf3d(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18888 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18889 " which the function is evaluated.\n"
18891 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18892 " which the function is evaluated.\n"
18894 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18895 " plot. Should have dimensions of\n"
18899 " nx (PLINT, input) : Number of x values at which function is\n"
18902 " ny (PLINT, input) : Number of y values at which function is\n"
18905 " opt (PLINT, input) : Determines the way in which the surface is\n"
18906 " represented. To specify more than one option just add the options,\n"
18907 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
18908 " connecting points at which function is defined.\n"
18909 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18910 " using parameters\n"
18913 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
18914 " using parameters\n"
18917 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18918 " the borders of the plotted function.\n"
18919 " opt=MAG_COLOR : the surface is colored according to the value\n"
18920 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
18921 " according to the intensity of the reflected light in the\n"
18922 " surface from a light source whose position is set using\n"
18923 " pllightsource.\n"
18926 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18929 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18933 "Plot shaded 3-d surface plot for z[x][y] with y index limits\n"
18937 " This variant of plsurf3d (see that function's documentation for more\n"
18938 " details) should be suitable for the case where the area of the x, y\n"
18939 " coordinate grid where z is defined can be non-rectangular. The limits\n"
18940 " of that grid are provided by the parameters indexxmin, indexxmax,\n"
18941 " indexymin, and indexymax.\n"
18943 " Redacted form: plsurf3dl(x, y, z, opt, clevel, indexxmin, indexymin,\n"
18946 " This function is used in example 8.\n"
18952 "plsurf3dl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18956 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18957 " which the function is evaluated.\n"
18959 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18960 " which the function is evaluated.\n"
18962 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18963 " plot. Should have dimensions of\n"
18967 " nx (PLINT, input) : Number of x values at which function is\n"
18970 " ny (PLINT, input) : Number of y values at which function is\n"
18973 " opt (PLINT, input) : Determines the way in which the surface is\n"
18974 " represented. To specify more than one option just add the options,\n"
18975 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
18976 " connecting points at which function is defined.\n"
18977 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18978 " using parameters\n"
18981 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
18982 " using parameters\n"
18985 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18986 " the borders of the plotted function.\n"
18987 " opt=MAG_COLOR : the surface is colored according to the value\n"
18988 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
18989 " according to the intensity of the reflected light in the\n"
18990 " surface from a light source whose position is set using\n"
18991 " pllightsource.\n"
18994 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18997 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18999 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
19000 " corresponds to the first x index where z is defined.\n"
19002 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
19003 " which corresponds (by convention) to one more than the last x\n"
19004 " index value where z is defined.\n"
19006 " indexymin (PLINT_VECTOR, input) : A vector containing the y index\n"
19007 " values which all must be ≥ 0. These values are the first y index\n"
19008 " where z is defined for a particular x index in the range from\n"
19009 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
19012 " indexymax (PLINT_VECTOR, input) : A vector containing the y index\n"
19013 " values which all must be ≤ ny. These values correspond (by\n"
19014 " convention) to one more than the last y index where z is defined\n"
19015 " for a particular x index in the range from indexxmin to indexxmax\n"
19016 " - 1. The dimension of indexymax is indexxmax.\n"
19020 "Parse command-line arguments\n"
19024 " Parse command-line arguments.\n"
19026 " plparseopts removes all recognized flags (decreasing argc\n"
19027 " accordingly), so that invalid input may be readily detected. It can\n"
19028 " also be used to process user command line flags. The user can merge\n"
19029 " an option table of type PLOptionTable into the internal option table\n"
19030 " info structure using plMergeOpts. Or, the user can specify that ONLY\n"
19031 " the external table(s) be parsed by calling plClearOpts before\n"
19034 " The default action taken by plparseopts is as follows:\n"
19035 " Returns with an error if an unrecognized option or badly formed\n"
19036 " option-value pair are encountered.\n"
19037 " Returns immediately (return code 0) when the first non-option command\n"
19038 " line argument is found.\n"
19039 " Returns with the return code of the option handler, if one was called.\n"
19041 " Deletes command line arguments from argv list as they are found, and\n"
19042 " decrements argc accordingly.\n"
19043 " Does not show \"invisible\" options in usage or help messages.\n"
19044 " Assumes the program name is contained in argv[0].\n"
19046 " These behaviors may be controlled through the\n"
19047 " mode argument.\n"
19049 " Redacted form: General: plparseopts(argv, mode)\n"
19052 " This function is used in all of the examples.\n"
19058 "PLINT plparseopts(p_argc, argv, mode)\n"
19062 " p_argc (int *, input/output) : Number of arguments.\n"
19064 " argv (PLCHAR_NC_MATRIX, input/output) : A vector of character\n"
19065 " strings containing *p_argc command-line arguments.\n"
19067 " mode (PLINT, input) : Parsing mode with the following\n"
19068 " possibilities: PL_PARSE_FULL (1) -- Full parsing of command line\n"
19069 " and all error messages enabled, including program exit when an\n"
19070 " error occurs. Anything on the command line that isn't recognized\n"
19071 " as a valid option or option argument is flagged as an error.\n"
19072 " PL_PARSE_QUIET (2) -- Turns off all output except in the case\n"
19074 " PL_PARSE_NODELETE (4) -- Turns off deletion of processed\n"
19076 " PL_PARSE_SHOWALL (8) -- Show invisible options\n"
19077 " PL_PARSE_NOPROGRAM (32) -- Specified if argv[0] is NOT a\n"
19078 " pointer to the program name.\n"
19079 " PL_PARSE_NODASH (64) -- Set if leading dash is NOT required.\n"
19080 " PL_PARSE_SKIP (128) -- Set to quietly skip over any\n"
19081 " unrecognized arguments.\n"
19085 "Set area line fill pattern\n"
19089 " Sets the area line fill pattern to be used, e.g., for calls to plfill.\n"
19090 " The pattern consists of 1 or 2 sets of parallel lines with specified\n"
19091 " inclinations and spacings. The arguments to this routine are the\n"
19092 " number of sets to use (1 or 2) followed by two vectors (with 1 or 2\n"
19093 " elements) specifying the inclinations in tenths of a degree and the\n"
19094 " spacing in micrometers. (See also plpsty)\n"
19096 " Redacted form: General: plpat(inc, del)\n"
19099 " This function is used in example 15.\n"
19105 "plpat(nlin, inc, del)\n"
19109 " nlin (PLINT, input) : Number of sets of lines making up the\n"
19110 " pattern, either 1 or 2.\n"
19112 " inc (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19113 " inclination in tenths of a degree. (Should be between -900 and\n"
19116 " del (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19117 " spacing in micrometers between the lines making up the pattern.\n"
19121 "Draw a line between two points, accounting for coordinate transforms\n"
19125 " Joins the point (\n"
19129 " y2) . If a global coordinate transform is defined then the line is\n"
19130 " broken in to n segments to approximate the path. If no transform is\n"
19131 " defined then this simply acts like a call to pljoin.\n"
19133 " Redacted form: plpath(n,x1,y1,x2,y2)\n"
19135 " This function is used in example 22.\n"
19141 "plpath(n, x1, y1, x2, y2)\n"
19145 " n (PLINT, input) : number of points to use to approximate the path.\n"
19147 " x1 (PLFLT, input) : x coordinate of first point.\n"
19149 " y1 (PLFLT, input) : y coordinate of first point.\n"
19151 " x2 (PLFLT, input) : x coordinate of second point.\n"
19153 " y2 (PLFLT, input) : y coordinate of second point.\n"
19157 "Plot a glyph at the specified points\n"
19161 " Plot a glyph at the specified points. (This function is largely\n"
19162 " superseded by plstring which gives access to many[!] more glyphs.)\n"
19163 " code=-1 means try to just draw a point. Right now it's just a move\n"
19164 " and a draw at the same place. Not ideal, since a sufficiently\n"
19165 " intelligent output device may optimize it away, or there may be faster\n"
19166 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19167 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19168 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19169 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19170 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19172 " Redacted form: plpoin(x, y, code)\n"
19174 " This function is used in examples 1, 6, 14, and 29.\n"
19180 "plpoin(n, x, y, code)\n"
19184 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19186 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19189 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19192 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19193 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19194 " each of the n points.\n"
19198 "Plot a glyph at the specified 3D points\n"
19202 " Plot a glyph at the specified 3D points. (This function is largely\n"
19203 " superseded by plstring3 which gives access to many[!] more glyphs.)\n"
19204 " Set up the call to this function similar to what is done for plline3.\n"
19205 " code=-1 means try to just draw a point. Right now it's just a move\n"
19206 " and a draw at the same place. Not ideal, since a sufficiently\n"
19207 " intelligent output device may optimize it away, or there may be faster\n"
19208 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19209 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19210 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19211 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19212 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19214 " Redacted form: plpoin3(x, y, z, code)\n"
19216 " This function is not used in any example.\n"
19222 "plpoin3(n, x, y, z, code)\n"
19226 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19228 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19231 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19234 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
19237 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19238 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19239 " each of the n points.\n"
19243 "Draw a polygon in 3 space\n"
19247 " Draws a polygon in 3 space defined by n points in x, y, and z. Setup\n"
19248 " like plline3, but differs from that function in that plpoly3 attempts\n"
19249 " to determine if the polygon is viewable depending on the order of the\n"
19250 " points within the vector and the value of ifcc. If the back of\n"
19251 " polygon is facing the viewer, then it isn't drawn. If this isn't what\n"
19252 " you want, then use plline3 instead.\n"
19254 " The points are assumed to be in a plane, and the directionality of the\n"
19255 " plane is determined from the first three points. Additional points do\n"
19256 " not have to lie on the plane defined by the first three, but if they\n"
19257 " do not, then the determination of visibility obviously can't be 100%\n"
19258 " accurate... So if you're 3 space polygons are too far from planar,\n"
19259 " consider breaking them into smaller polygons. 3 points define a plane\n"
19262 " Bugs: If one of the first two segments is of zero length, or if they\n"
19263 " are co-linear, the calculation of visibility has a 50/50 chance of\n"
19264 " being correct. Avoid such situations :-). See x18c.c for an example\n"
19265 " of this problem. (Search for 20.1).\n"
19267 " Redacted form: plpoly3(x, y, z, code)\n"
19269 " This function is used in example 18.\n"
19275 "plpoly3(n, x, y, z, draw, ifcc)\n"
19279 " n (PLINT, input) : Number of points defining line.\n"
19281 " x (PLFLT_VECTOR, input) : A vector containing\n"
19282 " n x coordinates of points.\n"
19284 " y (PLFLT_VECTOR, input) : A vector containing\n"
19285 " n y coordinates of points.\n"
19287 " z (PLFLT_VECTOR, input) : A vector containing\n"
19288 " n z coordinates of points.\n"
19290 " draw (PLBOOL_VECTOR, input) : A vector containing\n"
19291 " n-1 Boolean values which control drawing the segments of the polygon.\n"
19292 " If draw[i] is true, then the polygon segment from index [i] to\n"
19293 " [i+1] is drawn, otherwise, not.\n"
19295 " ifcc (PLBOOL, input) : If ifcc is true the directionality of the\n"
19296 " polygon is determined by assuming the points are laid out in a\n"
19297 " counter-clockwise order. Otherwise, the directionality of the\n"
19298 " polygon is determined by assuming the points are laid out in a\n"
19299 " clockwise order.\n"
19303 "Set precision in numeric labels\n"
19307 " Sets the number of places after the decimal point in numeric labels.\n"
19309 " Redacted form: plprec(setp, prec)\n"
19311 " This function is used in example 29.\n"
19317 "plprec(setp, prec)\n"
19321 " setp (PLINT, input) : If setp is equal to 0 then PLplot\n"
19322 " automatically determines the number of places to use after the\n"
19323 " decimal point in numeric labels (like those used to label axes).\n"
19324 " If setp is 1 then prec sets the number of places.\n"
19326 " prec (PLINT, input) : The number of characters to draw after the\n"
19327 " decimal point in numeric labels.\n"
19331 "Select area fill pattern\n"
19336 " patt is zero or less use either a hardware solid fill if the drivers\n"
19337 " have that capability (virtually all do) or fall back to a software\n"
19338 " emulation of a solid fill using the eighth area line fill pattern. If\n"
19340 " patt <= 8, then select one of eight predefined area line fill patterns\n"
19341 " to use (see plpat if you desire other patterns).\n"
19343 " Redacted form: plpsty(patt)\n"
19345 " This function is used in examples 12, 13, 15, 16, and 25.\n"
19355 " patt (PLINT, input) : The desired pattern index. If\n"
19356 " patt is zero or less, then a solid fill is (normally, see qualifiers\n"
19357 " above) used. For\n"
19358 " patt in the range from 1 to 8 and assuming the driver has not supplied\n"
19359 " line fill capability itself (most deliberately do not so that line\n"
19360 " fill patterns look identical for those drivers), the patterns\n"
19361 " consist of (1) horizontal lines, (2) vertical lines, (3) lines at\n"
19362 " 45 degrees, (4) lines at -45 degrees, (5) lines at 30 degrees, (6)\n"
19363 " lines at -30 degrees, (7) both vertical and horizontal lines, and\n"
19364 " (8) lines at both 45 degrees and -45 degrees.\n"
19368 "Write text inside the viewport\n"
19372 " Writes text at a specified position and inclination within the\n"
19373 " viewport. Text is clipped at the viewport boundaries. The reference\n"
19374 " point of a string lies along a line passing through the string at half\n"
19375 " the height of a capital letter. The position of the reference point\n"
19376 " along this line is determined by just, the reference point is placed\n"
19377 " at world coordinates (\n"
19379 " y) within the viewport. The inclination of the string is specified\n"
19380 " in terms of differences of world coordinates making it easy to write\n"
19381 " text parallel to a line in a graph.\n"
19383 " Redacted form: plptex(x, y, dx, dy, just, text)\n"
19385 " This function is used in example 2-4,10,12-14,20,23,24,26.\n"
19391 "plptex(x, y, dx, dy, just, text)\n"
19395 " x (PLFLT, input) : x coordinate of reference point of string.\n"
19397 " y (PLFLT, input) : y coordinate of reference point of string.\n"
19399 " dx (PLFLT, input) : Together with dy, this specifies the\n"
19400 " inclination of the string. The baseline of the string is parallel\n"
19401 " to a line joining (\n"
19409 " dy (PLFLT, input) : Together with dx, this specifies the\n"
19410 " inclination of the string.\n"
19412 " just (PLFLT, input) : Specifies the position of the string relative\n"
19413 " to its reference point. If just=0. , the reference point is at\n"
19414 " the left and if just=1. , it is at the right of the string. Other\n"
19415 " values of just give intermediate justifications.\n"
19417 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19422 "Write text inside the viewport of a 3D plot\n"
19426 " Writes text at a specified position and inclination and with a\n"
19427 " specified shear within the viewport. Text is clipped at the viewport\n"
19428 " boundaries. The reference point of a string lies along a line passing\n"
19429 " through the string at half the height of a capital letter. The\n"
19430 " position of the reference point along this line is determined by just,\n"
19431 " and the reference point is placed at world coordinates (\n"
19434 " wz) within the viewport. The inclination and shear of the string is\n"
19435 " specified in terms of differences of world coordinates making it easy\n"
19436 " to write text parallel to a line in a graph.\n"
19438 " Redacted form: plptex3(x, y, z, dx, dy, dz, sx, sy, sz, just, text)\n"
19440 " This function is used in example 28.\n"
19446 "plptex3(wx, wy, wz, dx, dy, dz, sx, sy, sz, just, text)\n"
19450 " wx (PLFLT, input) : x world coordinate of reference point of\n"
19453 " wy (PLFLT, input) : y world coordinate of reference point of\n"
19456 " wz (PLFLT, input) : z world coordinate of reference point of\n"
19459 " dx (PLFLT, input) : Together with dy and\n"
19460 " dz , this specifies the inclination of the string. The baseline of\n"
19461 " the string is parallel to a line joining (\n"
19472 " dy (PLFLT, input) : Together with dx and\n"
19473 " dz, this specifies the inclination of the string.\n"
19475 " dz (PLFLT, input) : Together with dx and\n"
19476 " dy, this specifies the inclination of the string.\n"
19478 " sx (PLFLT, input) : Together with sy and\n"
19479 " sz , this specifies the shear of the string. The string is sheared so\n"
19480 " that the characters are vertically parallel to a line joining (\n"
19491 " sz = 0.) then the text is not sheared.\n"
19493 " sy (PLFLT, input) : Together with sx and\n"
19494 " sz, this specifies shear of the string.\n"
19496 " sz (PLFLT, input) : Together with sx and\n"
19497 " sy, this specifies shear of the string.\n"
19499 " just (PLFLT, input) : Specifies the position of the string relative\n"
19500 " to its reference point. If just=0. , the reference point is at\n"
19501 " the left and if just=1. , it is at the right of the string. Other\n"
19502 " values of just give intermediate justifications.\n"
19504 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19509 "Random number generator returning a real random number in the range [0,1]\n"
19513 " Random number generator returning a real random number in the range\n"
19514 " [0,1]. The generator is based on the Mersenne Twister. Most languages\n"
19515 " / compilers provide their own random number generator, and so this is\n"
19516 " provided purely for convenience and to give a consistent random number\n"
19517 " generator across all languages supported by PLplot. This is\n"
19518 " particularly useful for comparing results from the test suite of\n"
19521 " Redacted form: plrandd()\n"
19523 " This function is used in examples 17 and 21.\n"
19533 "Replays contents of plot buffer to current device/file\n"
19537 " Replays contents of plot buffer to current device/file.\n"
19539 " Redacted form: plreplot()\n"
19541 " This function is used in example 1,20.\n"
19551 "Convert RGB color to HLS\n"
19555 " Convert RGB color coordinates to HLS\n"
19557 " Redacted form: General: plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19560 " This function is used in example 2.\n"
19566 "plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19570 " r (PLFLT, input) : Red intensity (0.0-1.0) of the color.\n"
19572 " g (PLFLT, input) : Green intensity (0.0-1.0) of the color.\n"
19574 " b (PLFLT, input) : Blue intensity (0.0-1.0) of the color.\n"
19576 " p_h (PLFLT_NC_SCALAR, output) : Returned value of the hue in\n"
19577 " degrees (0.0-360.0) on the color cylinder.\n"
19579 " p_l (PLFLT_NC_SCALAR, output) : Returned value of the lightness\n"
19580 " expressed as a fraction (0.0-1.0) of the axis of the color\n"
19583 " p_s (PLFLT_NC_SCALAR, output) : Returned value of the saturation\n"
19584 " expressed as a fraction (0.0-1.0) of the radius of the color\n"
19589 "Set character size\n"
19593 " This sets up the size of all subsequent characters drawn. The actual\n"
19594 " height of a character is the product of the default character size and\n"
19595 " a scaling factor.\n"
19597 " Redacted form: plschr(def, scale)\n"
19599 " This function is used in examples 2, 13, 23, and 24.\n"
19605 "plschr(def, scale)\n"
19609 " def (PLFLT, input) : The default height of a character in\n"
19610 " millimeters, should be set to zero if the default height is to\n"
19611 " remain unchanged. For rasterized drivers the dx and dy values\n"
19612 " specified in plspage are used to convert from mm to pixels (note\n"
19613 " the different unit systems used). This dpi aware scaling is not\n"
19614 " implemented for all drivers yet.\n"
19616 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
19617 " actual character height.\n"
19621 "Set cmap0 colors by 8-bit RGB values\n"
19625 " Set cmap0 colors using 8-bit RGB values (see the PLplot\n"
19626 " documentation). This sets the entire color map -- only as many colors\n"
19627 " as specified will be allocated.\n"
19629 " Redacted form: plscmap0(r, g, b)\n"
19631 " This function is used in examples 2 and 24.\n"
19637 "plscmap0(r, g, b, ncol0)\n"
19641 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19642 " integers (0-255) representing the degree of red in the color.\n"
19644 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19645 " integers (0-255) representing the degree of green in the color.\n"
19647 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19648 " integers (0-255) representing the degree of blue in the color.\n"
19650 " ncol0 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19654 "Set cmap0 colors by 8-bit RGB values and PLFLT alpha transparency value\n"
19658 " Set cmap0 colors using 8-bit RGB values (see the PLplot documentation)\n"
19659 " and PLFLT alpha transparency value. This sets the entire color map --\n"
19660 " only as many colors as specified will be allocated.\n"
19662 " Redacted form: plscmap0a(r, g, b, alpha)\n"
19664 " This function is used in examples 30.\n"
19670 "plscmap0a(r, g, b, alpha, ncol0)\n"
19674 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19675 " integers (0-255) representing the degree of red in the color.\n"
19677 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19678 " integers (0-255) representing the degree of green in the color.\n"
19680 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19681 " integers (0-255) representing the degree of blue in the color.\n"
19683 " alpha (PLFLT_VECTOR, input) : A vector containing values (0.0-1.0)\n"
19684 " representing the alpha transparency of the color.\n"
19686 " ncol0 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19691 "Set number of colors in cmap0\n"
19695 " Set number of colors in cmap0 (see the PLplot documentation). Allocate\n"
19696 " (or reallocate) cmap0, and fill with default values for those colors\n"
19697 " not previously allocated. The first 16 default colors are given in\n"
19698 " the plcol0 documentation. For larger indices the default color is\n"
19701 " The drivers are not guaranteed to support more than 16 colors.\n"
19703 " Redacted form: plscmap0n(ncol0)\n"
19705 " This function is used in examples 15, 16, and 24.\n"
19711 "plscmap0n(ncol0)\n"
19715 " ncol0 (PLINT, input) : Number of colors that will be allocated in\n"
19716 " the cmap0 palette. If this number is zero or less, then the value\n"
19717 " from the previous call to plscmap0n is used and if there is no\n"
19718 " previous call, then a default value is used.\n"
19722 "Set opaque RGB cmap1 colors values\n"
19726 " Set opaque cmap1 colors (see the PLplot documentation) using RGB\n"
19727 " vector values. This function also sets the number of cmap1 colors.\n"
19728 " N.B. Continuous cmap1 colors are indexed with a floating-point index\n"
19729 " in the range from 0.0-1.0 which is linearly transformed (e.g., by\n"
19730 " plcol1) to an integer index of these RGB vectors in the range from 0\n"
19732 " ncol1-1. So in order for this continuous color model to work\n"
19733 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19734 " that these RGB vectors are continuous functions of their integer\n"
19737 " Redacted form: plscmap1(r, g, b)\n"
19739 " This function is used in example 31.\n"
19745 "plscmap1(r, g, b, ncol1)\n"
19749 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19750 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19751 " color as a continuous function of the integer index of the vector.\n"
19753 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19754 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19755 " color as a continuous function of the integer index of the vector.\n"
19757 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19758 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19759 " color as a continuous function of the integer index of the vector.\n"
19761 " ncol1 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19765 "Set semitransparent cmap1 RGBA colors.\n"
19769 " Set semitransparent cmap1 colors (see the PLplot documentation) using\n"
19770 " RGBA vector values. This function also sets the number of cmap1\n"
19771 " colors. N.B. Continuous cmap1 colors are indexed with a\n"
19772 " floating-point index in the range from 0.0-1.0 which is linearly\n"
19773 " transformed (e.g., by plcol1) to an integer index of these RGBA\n"
19774 " vectors in the range from 0 to\n"
19775 " ncol1-1. So in order for this continuous color model to work\n"
19776 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19777 " that these RGBA vectors are continuous functions of their integer\n"
19780 " Redacted form: plscmap1a(r, g, b, alpha)\n"
19782 " This function is used in example 31.\n"
19788 "plscmap1a(r, g, b, alpha, ncol1)\n"
19792 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19793 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19794 " color as a continuous function of the integer index of the vector.\n"
19796 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19797 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19798 " color as a continuous function of the integer index of the vector.\n"
19800 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19801 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19802 " color as a continuous function of the integer index of the vector.\n"
19804 " alpha (PLFLT_VECTOR, input) : A vector that represents (using PLFLT\n"
19805 " values in the range from 0.0-1.0 where 0.0 corresponds to\n"
19806 " completely transparent and 1.0 corresponds to completely opaque)\n"
19807 " the alpha transparency of the color as a continuous function of\n"
19808 " the integer index of the vector.\n"
19810 " ncol1 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19815 "Set cmap1 colors using a piece-wise linear relationship\n"
19819 " Set cmap1 colors using a piece-wise linear relationship between the\n"
19820 " cmap1 intensity index (0.0-1.0) and position in HLS or RGB color space\n"
19821 " (see the PLplot documentation). May be called at any time.\n"
19823 " The idea here is to specify a number of control points that define the\n"
19824 " mapping between input cmap1 intensity indices and HLS or RGB. Between\n"
19825 " these points, linear interpolation is used which gives a smooth\n"
19826 " variation of color with intensity index. Any number of control points\n"
19827 " may be specified, located at arbitrary positions, although typically 2\n"
19828 " - 4 are enough. Another way of stating this is that we are traversing\n"
19829 " a given number of lines through HLS or RGB space as we move through\n"
19830 " cmap1 intensity indices. The control points at the minimum and\n"
19831 " maximum position (0 and 1) must always be specified. By adding more\n"
19832 " control points you can get more variation. One good technique for\n"
19833 " plotting functions that vary about some expected average is to use an\n"
19834 " additional 2 control points in the center (position ~= 0.5) that are\n"
19835 " the same lightness as the background (typically white for paper\n"
19836 " output, black for crt), and same hue as the boundary control points.\n"
19837 " This allows the highs and lows to be very easily distinguished.\n"
19839 " Each control point must specify the cmap1 intensity index and the\n"
19840 " associated three coordinates in HLS or RGB space. The first point\n"
19841 " must correspond to position = 0, and the last to position = 1.\n"
19843 " If RGB colors are provided then the interpolation takes place in RGB\n"
19844 " space and is trivial. However if HLS colors are provided then, because\n"
19845 " of the circular nature of the color wheel for the hue coordinate, the\n"
19846 " interpolation could be performed in either direction around the color\n"
19847 " wheel. The default behaviour is for the hue to be linearly\n"
19848 " interpolated ignoring this circular property of hue. So for example,\n"
19849 " the hues 0 (red) and 240 (blue) will get interpolated via yellow,\n"
19850 " green and cyan. If instead you wish to interpolate the other way\n"
19851 " around the color wheel you have two options. You may provide hues\n"
19852 " outside the range [0, 360), so by using a hue of -120 for blue or 360\n"
19853 " for red the interpolation will proceed via magenta. Alternatively you\n"
19854 " can utilise the alt_hue_path variable to reverse the direction of\n"
19855 " interpolation if you need to provide hues within the [0-360) range.\n"
19857 " Examples of interpolation Huealt_hue_pathcolor scheme[120\n"
19858 " 240]falsegreen-cyan-blue[240 120]falseblue-cyan-green[120\n"
19859 " -120]falsegreen-yellow-red-magenta-blue[240\n"
19860 " 480]falseblue-magenta-red-yellow-green[120\n"
19861 " 240]truegreen-yellow-red-magenta-blue[240\n"
19862 " 120]trueblue-magenta-red-yellow-green\n"
19864 " Bounds on coordinatesRGBR[0, 1]magnitudeRGBG[0, 1]magnitudeRGBB[0,\n"
19865 " 1]magnitudeHLShue[0, 360]degreesHLSlightness[0,\n"
19866 " 1]magnitudeHLSsaturation[0, 1]magnitude\n"
19868 " Redacted form: plscmap1l(itype, intensity, coord1, coord2, coord3,\n"
19871 " This function is used in examples 8, 11, 12, 15, 20, and 21.\n"
19877 "plscmap1l(itype, npts, intensity, coord1, coord2, coord3, alt_hue_path)\n"
19881 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19883 " npts (PLINT, input) : number of control points\n"
19885 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19886 " intensity index (0.0-1.0) in ascending order for each control\n"
19889 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19890 " coordinate (H or R) for each control point.\n"
19892 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19893 " coordinate (L or G) for each control point.\n"
19895 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19896 " coordinate (S or B) for each control point.\n"
19898 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19899 " npts - 1 elements), each containing either true to use the reversed\n"
19900 " HLS interpolation or false to use the regular HLS interpolation.\n"
19901 " (alt_hue_path[i] refers to the interpolation interval between the\n"
19902 " i and i + 1 control points). This parameter is not used for RGB\n"
19904 " itype = true).\n"
19908 "Set cmap1 colors and alpha transparency using a piece-wise linear relationship\n"
19912 " This is a variant of plscmap1l that supports alpha channel\n"
19913 " transparency. It sets cmap1 colors using a piece-wise linear\n"
19914 " relationship between cmap1 intensity index (0.0-1.0) and position in\n"
19915 " HLS or RGB color space (see the PLplot documentation) with alpha\n"
19916 " transparency value (0.0-1.0). It may be called at any time.\n"
19918 " Redacted form: plscmap1la(itype, intensity, coord1, coord2, coord3,\n"
19919 " alpha, alt_hue_path)\n"
19921 " This function is used in example 30.\n"
19927 "plscmap1la(itype, npts, intensity, coord1, coord2, coord3, alpha, alt_hue_path)\n"
19931 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19933 " npts (PLINT, input) : number of control points.\n"
19935 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19936 " intensity index (0.0-1.0) in ascending order for each control\n"
19939 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19940 " coordinate (H or R) for each control point.\n"
19942 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19943 " coordinate (L or G) for each control point.\n"
19945 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19946 " coordinate (S or B) for each control point.\n"
19948 " alpha (PLFLT_VECTOR, input) : A vector containing the alpha\n"
19949 " transparency value (0.0-1.0) for each control point.\n"
19951 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19952 " npts - 1 elements) containing the alternative interpolation method\n"
19953 " Boolean value for each control point interval. (alt_hue_path[i]\n"
19954 " refers to the interpolation interval between the i and i + 1\n"
19955 " control points).\n"
19959 "Set number of colors in cmap1\n"
19963 " Set number of colors in cmap1, (re-)allocate cmap1, and set default\n"
19964 " values if this is the first allocation (see the PLplot documentation).\n"
19966 " Redacted form: plscmap1n(ncol1)\n"
19968 " This function is used in examples 8, 11, 20, and 21.\n"
19974 "plscmap1n(ncol1)\n"
19978 " ncol1 (PLINT, input) : Number of colors that will be allocated in\n"
19979 " the cmap1 palette. If this number is zero or less, then the value\n"
19980 " from the previous call to plscmap1n is used and if there is no\n"
19981 " previous call, then a default value is used.\n"
19985 "Set the cmap1 argument range for continuous color plots\n"
19989 " Set the cmap1 argument range for continuous color plots that\n"
19990 " corresponds to the range of data values. The maximum range\n"
19991 " corresponding to the entire cmap1 palette is 0.0-1.0, and the smaller\n"
19992 " the cmap1 argument range that is specified with this routine, the\n"
19993 " smaller the subset of the cmap1 color palette that is used to\n"
19994 " represent the continuous data being plotted. If\n"
19995 " min_color is greater than\n"
19997 " max_color is greater than 1.0 or\n"
19998 " min_color is less than 0.0 then no change is made to the cmap1\n"
19999 " argument range. (Use plgcmap1_range to get the cmap1 argument range.)\n"
20001 " Redacted form: plscmap1_range(min_color, max_color)\n"
20003 " This function is currently used in example 33.\n"
20009 "plscmap1_range(min_color, max_color)\n"
20013 " min_color (PLFLT, input) : The minimum cmap1 argument. If less\n"
20014 " than 0.0, then 0.0 is used instead.\n"
20016 " max_color (PLFLT, input) : The maximum cmap1 argument. If greater\n"
20017 " than 1.0, then 1.0 is used instead.\n"
20021 "Get the cmap1 argument range for continuous color plots\n"
20025 " Get the cmap1 argument range for continuous color plots. (Use\n"
20026 " plscmap1_range to set the cmap1 argument range.)\n"
20028 " Redacted form: plgcmap1_range(min_color, max_color)\n"
20030 " This function is currently not used in any example.\n"
20036 "plgcmap1_range(min_color, max_color)\n"
20040 " min_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20041 " minimum cmap1 argument.\n"
20043 " max_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20044 " maximum cmap1 argument.\n"
20048 "Set 8-bit RGB values for given cmap0 color index\n"
20052 " Set 8-bit RGB values for given cmap0 (see the PLplot documentation)\n"
20053 " index. Overwrites the previous color value for the given index and,\n"
20054 " thus, does not result in any additional allocation of space for\n"
20057 " Redacted form: plscol0(icol0, r, g, b)\n"
20059 " This function is used in any example 31.\n"
20065 "plscol0(icol0, r, g, b)\n"
20069 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20070 " number of colors (which is set by default, by plscmap0n, or even\n"
20073 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20074 " degree of red in the color.\n"
20076 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20077 " degree of green in the color.\n"
20079 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20080 " degree of blue in the color.\n"
20084 "Set 8-bit RGB values and PLFLT alpha transparency value for given cmap0 color index\n"
20088 " Set 8-bit RGB value and PLFLT alpha transparency value for given cmap0\n"
20089 " (see the PLplot documentation) index. Overwrites the previous color\n"
20090 " value for the given index and, thus, does not result in any additional\n"
20091 " allocation of space for colors.\n"
20093 " This function is used in example 30.\n"
20099 "plscol0a(icol0, r, g, b, alpha)\n"
20103 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20104 " number of colors (which is set by default, by plscmap0n, or even\n"
20107 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20108 " degree of red in the color.\n"
20110 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20111 " degree of green in the color.\n"
20113 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20114 " degree of blue in the color.\n"
20116 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20121 "Set the background color by 8-bit RGB value\n"
20125 " Set the background color (color 0 in cmap0) by 8-bit RGB value (see\n"
20126 " the PLplot documentation).\n"
20128 " Redacted form: plscolbg(r, g, b)\n"
20130 " This function is used in examples 15 and 31.\n"
20136 "plscolbg(r, g, b)\n"
20140 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20141 " degree of red in the color.\n"
20143 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20144 " degree of green in the color.\n"
20146 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20147 " degree of blue in the color.\n"
20151 "Set the background color by 8-bit RGB value and PLFLT alpha transparency value.\n"
20155 " Set the background color (color 0 in cmap0) by 8-bit RGB value and\n"
20156 " PLFLT alpha transparency value (see the PLplot documentation).\n"
20158 " This function is used in example 31.\n"
20164 "plscolbga(r, g, b, alpha)\n"
20168 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20169 " degree of red in the color.\n"
20171 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20172 " degree of green in the color.\n"
20174 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20175 " degree of blue in the color.\n"
20177 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20182 "Used to globally turn color output on/off\n"
20186 " Used to globally turn color output on/off for those drivers/devices\n"
20187 " that support it.\n"
20189 " Redacted form: plscolor(color)\n"
20191 " This function is used in example 31.\n"
20197 "plscolor(color)\n"
20201 " color (PLINT, input) : Color flag (Boolean). If zero, color is\n"
20202 " turned off. If non-zero, color is turned on.\n"
20206 "Set device-compression level\n"
20210 " Set device-compression level. Only used for drivers that provide\n"
20211 " compression. This function, if used, should be invoked before a call\n"
20214 " Redacted form: plscompression(compression)\n"
20216 " This function is used in example 31.\n"
20222 "plscompression(compression)\n"
20226 " compression (PLINT, input) : The desired compression level. This is\n"
20227 " a device-dependent value. Currently only the jpeg and png devices\n"
20228 " use these values. For jpeg value is the jpeg quality which should\n"
20229 " normally be in the range 0-95. Higher values denote higher quality\n"
20230 " and hence larger image sizes. For png values are in the range -1\n"
20231 " to 99. Values of 0-9 are taken as the compression level for zlib.\n"
20232 " A value of -1 denotes the default zlib compression level. Values\n"
20233 " in the range 10-99 are divided by 10 and then used as the zlib\n"
20234 " compression level. Higher compression levels correspond to greater\n"
20235 " compression and small file sizes at the expense of more\n"
20240 "Set the device (keyword) name\n"
20244 " Set the device (keyword) name.\n"
20246 " Redacted form: plsdev(devname)\n"
20248 " This function is used in examples 1, 14, and 20.\n"
20254 "plsdev(devname)\n"
20258 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
20259 " containing the device name keyword of the required output device.\n"
20261 " devname is NULL or if the first character of the string is a ``?'',\n"
20262 " the normal (prompted) start up is used.\n"
20266 "Set parameters that define current device-space window\n"
20270 " Set relative margin width, aspect ratio, and relative justification\n"
20271 " that define current device-space window. If you want to just use the\n"
20272 " previous value for any of these, just pass in the magic value\n"
20273 " PL_NOTSET. It is unlikely that one should ever need to change the\n"
20274 " aspect ratio but it's in there for completeness. If plsdidev is not\n"
20275 " called the default values of mar, jx, and jy are all 0. aspect is set\n"
20276 " to a device-specific value.\n"
20278 " Redacted form: plsdidev(mar, aspect, jx, jy)\n"
20280 " This function is used in example 31.\n"
20286 "plsdidev(mar, aspect, jx, jy)\n"
20290 " mar (PLFLT, input) : Relative margin width.\n"
20292 " aspect (PLFLT, input) : Aspect ratio.\n"
20294 " jx (PLFLT, input) : Relative justification in x. Value must lie in\n"
20295 " the range -0.5 to 0.5.\n"
20297 " jy (PLFLT, input) : Relative justification in y. Value must lie in\n"
20298 " the range -0.5 to 0.5.\n"
20302 "Set up transformation from metafile coordinates\n"
20306 " Set up transformation from metafile coordinates. The size of the plot\n"
20307 " is scaled so as to preserve aspect ratio. This isn't intended to be a\n"
20308 " general-purpose facility just yet (not sure why the user would need\n"
20311 " Redacted form: plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm,\n"
20314 " This function is not used in any examples.\n"
20320 "plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm, dimypmm)\n"
20324 " dimxmin (PLINT, input) : NEEDS DOCUMENTATION\n"
20326 " dimxmax (PLINT, input) : NEEDS DOCUMENTATION\n"
20328 " dimymin (PLINT, input) : NEEDS DOCUMENTATION\n"
20330 " dimymax (PLINT, input) : NEEDS DOCUMENTATION\n"
20332 " dimxpmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20334 " dimypmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20338 "Set plot orientation\n"
20342 " Set plot orientation parameter which is multiplied by 90 degrees to\n"
20343 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
20344 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
20345 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
20346 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
20347 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori is\n"
20348 " not called the default value of rot is 0.\n"
20350 " N.B. aspect ratio is unaffected by calls to plsdiori. So you will\n"
20351 " probably want to change the aspect ratio to a value suitable for the\n"
20352 " plot orientation using a call to plsdidev or the command-line options\n"
20353 " -a or -freeaspect. For more documentation of those options see the\n"
20354 " PLplot documentation. Such command-line options can be set internally\n"
20355 " using plsetopt or set directly using the command line and parsed using\n"
20356 " a call to plparseopts.\n"
20358 " Redacted form: plsdiori(rot)\n"
20360 " This function is not used in any examples.\n"
20370 " rot (PLFLT, input) : Plot orientation parameter.\n"
20374 "Set parameters that define current plot-space window\n"
20378 " Set relative minima and maxima that define the current plot-space\n"
20379 " window. If plsdiplt is not called the default values of xmin, ymin,\n"
20380 " xmax, and ymax are 0., 0., 1., and 1.\n"
20382 " Redacted form: plsdiplt(xmin, ymin, xmax, ymax)\n"
20384 " This function is used in example 31.\n"
20390 "plsdiplt(xmin, ymin, xmax, ymax)\n"
20394 " xmin (PLFLT, input) : Relative minimum in x.\n"
20396 " ymin (PLFLT, input) : Relative minimum in y.\n"
20398 " xmax (PLFLT, input) : Relative maximum in x.\n"
20400 " ymax (PLFLT, input) : Relative maximum in y.\n"
20404 "Set parameters incrementally (zoom mode) that define current plot-space window\n"
20408 " Set relative minima and maxima incrementally (zoom mode) that define\n"
20409 " the current plot-space window. This function has the same effect as\n"
20410 " plsdiplt if that function has not been previously called. Otherwise,\n"
20411 " this function implements zoom mode using the transformation min_used =\n"
20412 " old_min + old_length*min and max_used = old_min + old_length*max for\n"
20413 " each axis. For example, if min = 0.05 and max = 0.95 for each axis,\n"
20414 " repeated calls to plsdiplz will zoom in by 10 per cent for each call.\n"
20416 " Redacted form: plsdiplz(xmin, ymin, xmax, ymax)\n"
20418 " This function is used in example 31.\n"
20424 "plsdiplz(xmin, ymin, xmax, ymax)\n"
20428 " xmin (PLFLT, input) : Relative (incremental) minimum in x.\n"
20430 " ymin (PLFLT, input) : Relative (incremental) minimum in y.\n"
20432 " xmax (PLFLT, input) : Relative (incremental) maximum in x.\n"
20434 " ymax (PLFLT, input) : Relative (incremental) maximum in y.\n"
20438 "Set seed for internal random number generator.\n"
20442 " Set the seed for the internal random number generator. See plrandd for\n"
20443 " further details.\n"
20445 " Redacted form: plseed(seed)\n"
20447 " This function is used in example 21.\n"
20457 " seed (unsigned int, input) : Seed for random number generator.\n"
20461 "Set the escape character for text strings\n"
20465 " Set the escape character for text strings. From C (in contrast to\n"
20466 " Fortran, see plsescfortran) you pass esc as a character. Only selected\n"
20467 " characters are allowed to prevent the user from shooting himself in\n"
20468 " the foot (For example, a \\ isn't allowed since it conflicts with C's\n"
20469 " use of backslash as a character escape). Here are the allowed escape\n"
20470 " characters and their corresponding decimal ASCII values: !, ASCII 33\n"
20481 " Redacted form: General: plsesc(esc)\n"
20484 " This function is used in example 29.\n"
20494 " esc (char, input) : Escape character.\n"
20498 "Set any command-line option\n"
20502 " Set any command-line option internally from a program before it\n"
20503 " invokes plinit. opt is the name of the command-line option and optarg\n"
20504 " is the corresponding command-line option argument.\n"
20506 " This function returns 0 on success.\n"
20508 " Redacted form: plsetopt(opt, optarg)\n"
20510 " This function is used in example 14.\n"
20516 "PLINT plsetopt(opt, optarg)\n"
20520 " opt (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20521 " the command-line option.\n"
20523 " optarg (PLCHAR_VECTOR, input) : An ascii character string\n"
20524 " containing the argument of the command-line option.\n"
20528 "Set family file parameters\n"
20532 " Sets variables dealing with output file familying. Does nothing if\n"
20533 " familying not supported by the driver. This routine, if used, must be\n"
20534 " called before initializing PLplot. See the PLplot documentation for\n"
20535 " more information.\n"
20537 " Redacted form: plsfam(fam, num, bmax)\n"
20539 " This function is used in examples 14 and 31.\n"
20545 "plsfam(fam, num, bmax)\n"
20549 " fam (PLINT, input) : Family flag (Boolean). If nonzero, familying\n"
20552 " num (PLINT, input) : Current family file number.\n"
20554 " bmax (PLINT, input) : Maximum file size (in bytes) for a family\n"
20559 "Set FCI (font characterization integer)\n"
20563 " Sets font characteristics to be used at the start of the next string\n"
20564 " using the FCI approach. See the PLplot documentation for more\n"
20565 " information. Note, plsfont (which calls plsfci internally) provides a\n"
20566 " more user-friendly API for setting the font characterisitics.\n"
20568 " Redacted form: General: plsfci(fci)\n"
20571 " This function is used in example 23.\n"
20581 " fci (PLUNICODE, input) : PLUNICODE (unsigned 32-bit integer) value\n"
20586 "Set output file name\n"
20590 " Sets the current output file name, if applicable. If the file name\n"
20591 " has not been specified and is required by the driver, the user will be\n"
20592 " prompted for it. If using the X-windows output driver, this sets the\n"
20593 " display name. This routine, if used, must be called before\n"
20594 " initializing PLplot.\n"
20596 " Redacted form: plsfnam(fnam)\n"
20598 " This function is used in examples 1 and 20.\n"
20608 " fnam (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20609 " the file name.\n"
20613 "Set family, style and weight of the current font\n"
20617 " Sets the current font. See the PLplot documentation for more\n"
20618 " information on font selection.\n"
20620 " Redacted form: plsfont(family, style, weight)\n"
20622 " This function is used in example 23.\n"
20628 "plsfont(family, style, weight)\n"
20632 " family (PLINT, input) : Font family to select for the current font.\n"
20633 " The available values are given by the PL_FCI_* constants in\n"
20634 " plplot.h. Current options are PL_FCI_SANS, PL_FCI_SERIF,\n"
20635 " PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. A negative value\n"
20636 " signifies that the font family should not be altered.\n"
20638 " style (PLINT, input) : Font style to select for the current font.\n"
20639 " The available values are given by the PL_FCI_* constants in\n"
20640 " plplot.h. Current options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and\n"
20641 " PL_FCI_OBLIQUE. A negative value signifies that the font style\n"
20642 " should not be altered.\n"
20644 " weight (PLINT, input) : Font weight to select for the current font.\n"
20645 " The available values are given by the PL_FCI_* constants in\n"
20646 " plplot.h. Current options are PL_FCI_MEDIUM and PL_FCI_BOLD. A\n"
20647 " negative value signifies that the font weight should not be\n"
20652 "Shade regions on the basis of value\n"
20656 " Shade regions on the basis of value. This is the high-level routine\n"
20657 " for making continuous color shaded plots with cmap1 while plshade\n"
20658 " should be used to plot individual shaded regions using either cmap0 or\n"
20659 " cmap1. examples/;<language>/x16* shows how to use plshades for each of\n"
20660 " our supported languages.\n"
20662 " Redacted form: General: plshades(a, defined, xmin, xmax, ymin, ymax,\n"
20663 " clevel, fill_width, cont_color, cont_width, fill, rectangular, pltr,\n"
20667 " This function is used in examples 16, 21, and 22.\n"
20673 "plshades(a, nx, ny, defined, xmin, xmax, ymin, ymax, clevel, nlevel, fill_width, cont_color, cont_width, fill, rectangular, pltr, pltr_data)\n"
20677 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20678 " plot. Should have dimensions of\n"
20682 " nx (PLINT, input) : First dimension of matrix \"a\".\n"
20684 " ny (PLINT, input) : Second dimension of matrix \"a\".\n"
20686 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20687 " the region that should be plotted in the shade plot. This\n"
20688 " function accepts x and y coordinates as input arguments and must\n"
20689 " return 1 if the point is to be included in the shade plot and 0\n"
20690 " otherwise. If you want to plot the entire shade plot (the usual\n"
20691 " case), this argument should be set to NULL.\n"
20693 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20694 " pltr below for how these arguments are used (only for the special case\n"
20695 " when the callback function\n"
20696 " pltr is not supplied).\n"
20698 " clevel (PLFLT_VECTOR, input) : A vector containing the data levels\n"
20699 " corresponding to the edges of each shaded region that will be\n"
20700 " plotted by this function. To work properly the levels should be\n"
20703 " nlevel (PLINT, input) : Number of shades plus 1 (i.e., the number\n"
20704 " of shade edge values in clevel).\n"
20706 " fill_width (PLFLT, input) : Defines the line width used by the fill\n"
20709 " cont_color (PLINT, input) : Defines cmap0 pen color used for\n"
20710 " contours defining edges of shaded regions. The pen color is only\n"
20711 " temporary set for the contour drawing. Set this value to zero or\n"
20712 " less if no shade edge contours are wanted.\n"
20714 " cont_width (PLFLT, input) : Defines line width used for contours\n"
20715 " defining edges of shaded regions. This value may not be honored\n"
20716 " by all drivers. The pen width is only temporary set for the\n"
20717 " contour drawing. Set this value to zero or less if no shade edge\n"
20718 " contours are wanted.\n"
20720 " fill (PLFILL_callback, input) : Callback routine used to fill the\n"
20721 " region. Use plfill for this purpose.\n"
20723 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20724 " map to rectangles after coordinate transformation with pltrl.\n"
20725 " Otherwise, set rectangular to false. If rectangular is set to\n"
20726 " true, plshade tries to save time by filling large rectangles.\n"
20727 " This optimization fails if the coordinate transformation distorts\n"
20728 " the shape of rectangles. For example a plot in polar coordinates\n"
20729 " has to have rectangular set to false.\n"
20731 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20732 " defines the transformation between the zero-based indices of the\n"
20733 " matrix a and world coordinates. If\n"
20734 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20735 " indices of a are mapped to the range\n"
20737 " xmax and the y indices of a are mapped to the range\n"
20739 " ymax.For the C case, transformation functions are provided in the\n"
20740 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20741 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20742 " matrices. In addition, C callback routines for the transformation\n"
20743 " can be supplied by the user such as the mypltr function in\n"
20744 " examples/c/x09c.c which provides a general linear transformation\n"
20745 " between index coordinates and world coordinates.For languages\n"
20746 " other than C you should consult the PLplot documentation for the\n"
20747 " details concerning how PLTRANSFORM_callback arguments are\n"
20748 " interfaced. However, in general, a particular pattern of\n"
20749 " callback-associated arguments such as a tr vector with 6 elements;\n"
20750 " xg and yg vectors; or xg and yg matrices are respectively\n"
20751 " interfaced to a linear-transformation routine similar to the above\n"
20752 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20753 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20754 " support native language callbacks for handling index to\n"
20755 " world-coordinate transformations. Examples of these various\n"
20756 " approaches are given in examples/<language>x09*,\n"
20757 " examples/<language>x16*, examples/<language>x20*,\n"
20758 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20759 " supported languages.\n"
20761 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20762 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20763 " externally supplied.\n"
20767 "Shade individual region on the basis of value\n"
20771 " Shade individual region on the basis of value. Use plshades if you\n"
20772 " want to shade a number of contiguous regions using continuous colors.\n"
20773 " In particular the edge contours are treated properly in plshades. If\n"
20774 " you attempt to do contiguous regions with plshade the contours at the\n"
20775 " edge of the shade are partially obliterated by subsequent plots of\n"
20776 " contiguous shaded regions.\n"
20778 " Redacted form: General: plshade(a, defined, xmin, xmax, ymin, ymax,\n"
20779 " shade_min, shade_max, sh_cmap, sh_color, sh_width, min_color,\n"
20780 " min_width, max_color, max_width, fill, rectangular, pltr, pltr_data)\n"
20783 " This function is used in example 15.\n"
20789 "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"
20793 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20794 " plot. Should have dimensions of\n"
20798 " nx (PLINT, input) : First dimension of the matrix \"a\".\n"
20800 " ny (PLINT, input) : Second dimension of the matrix \"a\".\n"
20802 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20803 " the region that should be plotted in the shade plot. This\n"
20804 " function accepts x and y coordinates as input arguments and must\n"
20805 " return 1 if the point is to be included in the shade plot and 0\n"
20806 " otherwise. If you want to plot the entire shade plot (the usual\n"
20807 " case), this argument should be set to NULL.\n"
20809 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20810 " pltr below for how these arguments are used (only for the special case\n"
20811 " when the callback function\n"
20812 " pltr is not supplied).\n"
20814 " shade_min (PLFLT, input) : Defines the lower end of the interval to\n"
20815 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20817 " shade_max (PLFLT, input) : Defines the upper end of the interval to\n"
20818 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20820 " sh_cmap (PLINT, input) : Defines color map. If sh_cmap=0, then\n"
20821 " sh_color is interpreted as a cmap0 (integer) index. If sh_cmap=1,\n"
20822 " then sh_color is interpreted as a cmap1 argument in the range\n"
20825 " sh_color (PLFLT, input) : Defines color map index with integer\n"
20826 " value if cmap0 or value in range (0.0-1.0) if cmap1.\n"
20828 " sh_width (PLFLT, input) : Defines width used by the fill pattern.\n"
20830 " min_color (PLINT, input) : Defines pen color, width used by the\n"
20831 " boundary of shaded region. The min values are used for the\n"
20832 " shade_min boundary, and the max values are used on the shade_max\n"
20833 " boundary. Set color and width to zero for no plotted boundaries.\n"
20835 " min_width (PLFLT, input) : Defines pen color, width used by the\n"
20836 " boundary of shaded region. The min values are used for the\n"
20837 " shade_min boundary, and the max values are used on the shade_max\n"
20838 " boundary. Set color and width to zero for no plotted boundaries.\n"
20840 " max_color (PLINT, input) : Defines pen color, width used by the\n"
20841 " boundary of shaded region. The min values are used for the\n"
20842 " shade_min boundary, and the max values are used on the shade_max\n"
20843 " boundary. Set color and width to zero for no plotted boundaries.\n"
20845 " max_width (PLFLT, input) : Defines pen color, width used by the\n"
20846 " boundary of shaded region. The min values are used for the\n"
20847 " shade_min boundary, and the max values are used on the shade_max\n"
20848 " boundary. Set color and width to zero for no plotted boundaries.\n"
20850 " fill (PLFILL_callback, input) : Routine used to fill the region.\n"
20851 " Use plfill. Future version of PLplot may have other fill\n"
20854 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20855 " map to rectangles after coordinate transformation with pltrl.\n"
20856 " Otherwise, set rectangular to false. If rectangular is set to\n"
20857 " true, plshade tries to save time by filling large rectangles.\n"
20858 " This optimization fails if the coordinate transformation distorts\n"
20859 " the shape of rectangles. For example a plot in polar coordinates\n"
20860 " has to have rectangular set to false.\n"
20862 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20863 " defines the transformation between the zero-based indices of the\n"
20864 " matrix a and world coordinates. If\n"
20865 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20866 " indices of a are mapped to the range\n"
20868 " xmax and the y indices of a are mapped to the range\n"
20870 " ymax.For the C case, transformation functions are provided in the\n"
20871 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20872 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20873 " matrices. In addition, C callback routines for the transformation\n"
20874 " can be supplied by the user such as the mypltr function in\n"
20875 " examples/c/x09c.c which provides a general linear transformation\n"
20876 " between index coordinates and world coordinates.For languages\n"
20877 " other than C you should consult the PLplot documentation for the\n"
20878 " details concerning how PLTRANSFORM_callback arguments are\n"
20879 " interfaced. However, in general, a particular pattern of\n"
20880 " callback-associated arguments such as a tr vector with 6 elements;\n"
20881 " xg and yg vectors; or xg and yg matrices are respectively\n"
20882 " interfaced to a linear-transformation routine similar to the above\n"
20883 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20884 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20885 " support native language callbacks for handling index to\n"
20886 " world-coordinate transformations. Examples of these various\n"
20887 " approaches are given in examples/<language>x09*,\n"
20888 " examples/<language>x16*, examples/<language>x20*,\n"
20889 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20890 " supported languages.\n"
20892 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20893 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20894 " externally supplied.\n"
20898 "Assign a function to use for generating custom axis labels\n"
20902 " This function allows a user to provide their own function to provide\n"
20903 " axis label text. The user function is given the numeric value for a\n"
20904 " point on an axis and returns a string label to correspond with that\n"
20905 " value. Custom axis labels can be enabled by passing appropriate\n"
20906 " arguments to plenv, plbox, plbox3 and similar functions.\n"
20908 " This function is used in example 19.\n"
20914 "plslabelfunc(label_func, label_data)\n"
20918 " label_func (PLLABEL_FUNC_callback, input) : This is the custom\n"
20919 " label function. In order to reset to the default labelling, set\n"
20920 " this to NULL. The labelling function parameters are, in order:\n"
20921 " axis: This indicates which axis a label is being requested for.\n"
20922 " The value will be one of PL_X_AXIS, PL_Y_AXIS or PL_Z_AXIS.\n"
20924 " value: This is the value along the axis which is being labelled.\n"
20926 " label_text: The string representation of the label value.\n"
20928 " length: The maximum length in characters allowed for label_text.\n"
20931 " label_data (PLPointer, input) : This parameter may be used to pass\n"
20932 " data to the label_func function.\n"
20936 "Set length of major ticks\n"
20940 " This sets up the length of the major ticks. The actual length is the\n"
20941 " product of the default length and a scaling factor as for character\n"
20944 " Redacted form: plsmaj(def, scale)\n"
20946 " This function is used in example 29.\n"
20952 "plsmaj(def, scale)\n"
20956 " def (PLFLT, input) : The default length of a major tick in\n"
20957 " millimeters, should be set to zero if the default length is to\n"
20958 " remain unchanged.\n"
20960 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
20961 " actual tick length.\n"
20965 "Set the memory area to be plotted (RGB)\n"
20969 " Set the memory area to be plotted (with the mem or memcairo driver) as\n"
20970 " the dev member of the stream structure. Also set the number of pixels\n"
20971 " in the memory passed in\n"
20972 " plotmem, which is a block of memory\n"
20974 " maxx by 3 bytes long, say: 480 x 640 x 3 (Y, X, RGB)\n"
20976 " This memory will have to be freed by the user!\n"
20978 " Redacted form: plsmem(maxx, maxy, plotmem)\n"
20980 " This function is not used in any examples.\n"
20986 "plsmem(maxx, maxy, plotmem)\n"
20990 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
20992 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
20994 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
20995 " user-supplied writeable memory area.\n"
20999 "Set the memory area to be plotted (RGBA)\n"
21003 " Set the memory area to be plotted (with the memcairo driver) as the\n"
21004 " dev member of the stream structure. Also set the number of pixels in\n"
21005 " the memory passed in\n"
21006 " plotmem, which is a block of memory\n"
21008 " maxx by 4 bytes long, say: 480 x 640 x 4 (Y, X, RGBA)\n"
21010 " This memory will have to be freed by the user!\n"
21012 " Redacted form: plsmema(maxx, maxy, plotmem)\n"
21014 " This function is not used in any examples.\n"
21020 "plsmema(maxx, maxy, plotmem)\n"
21024 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21026 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21028 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21029 " user-supplied writeable memory area.\n"
21033 "Set length of minor ticks\n"
21037 " This sets up the length of the minor ticks and the length of the\n"
21038 " terminals on error bars. The actual length is the product of the\n"
21039 " default length and a scaling factor as for character height.\n"
21041 " Redacted form: plsmin(def, scale)\n"
21043 " This function is used in example 29.\n"
21049 "plsmin(def, scale)\n"
21053 " def (PLFLT, input) : The default length of a minor tick in\n"
21054 " millimeters, should be set to zero if the default length is to\n"
21055 " remain unchanged.\n"
21057 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21058 " actual tick length.\n"
21062 "Set orientation\n"
21066 " Set integer plot orientation parameter. This function is identical to\n"
21067 " plsdiori except for the type of the argument, and should be used in\n"
21068 " the same way. See the documentation of plsdiori for details.\n"
21070 " Redacted form: plsori(ori)\n"
21072 " This function is used in example 3.\n"
21082 " ori (PLINT, input) : Orientation value (0 for landscape, 1 for\n"
21083 " portrait, etc.) The value is multiplied by 90 degrees to get the\n"
21088 "Set page parameters\n"
21092 " Sets the page configuration (optional). If an individual parameter is\n"
21093 " zero then that parameter value is not updated. Not all parameters are\n"
21094 " recognized by all drivers and the interpretation is device-dependent.\n"
21095 " The X-window driver uses the length and offset parameters to determine\n"
21096 " the window size and location. The length and offset values are\n"
21097 " expressed in units that are specific to the current driver. For\n"
21098 " instance: screen drivers will usually interpret them as number of\n"
21099 " pixels, whereas printer drivers will usually use mm.\n"
21101 " This routine, if used, must be called before initializing PLplot. It\n"
21102 " may be called at later times for interactive drivers to change only\n"
21103 " the dpi for subsequent redraws which you can force via a call to\n"
21104 " plreplot. If this function is not called then the page size defaults\n"
21105 " to landscape A4 for drivers which use real world page sizes and 744\n"
21106 " pixels wide by 538 pixels high for raster drivers. The default value\n"
21107 " for dx and dy is 90 pixels per inch for raster drivers.\n"
21111 " Redacted form: plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21113 " This function is used in examples 14 and 31.\n"
21119 "plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21123 " xp (PLFLT, input) : Number of pixels per inch (DPI), x. Used only\n"
21124 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21127 " yp (PLFLT, input) : Number of pixels per inch (DPI), y. Used only\n"
21128 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21131 " xleng (PLINT, input) : Page length, x.\n"
21133 " yleng (PLINT, input) : Page length, y.\n"
21135 " xoff (PLINT, input) : Page offset, x.\n"
21137 " yoff (PLINT, input) : Page offset, y.\n"
21141 "Set the cmap0 palette using the specified cmap0*.pal format file\n"
21145 " Set the cmap0 palette using the specified cmap0*.pal format file.\n"
21147 " Redacted form: plspal0(filename)\n"
21149 " This function is in example 16.\n"
21155 "plspal0(filename)\n"
21159 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21160 " containing the name of the cmap0*.pal file. If this string is\n"
21161 " empty, use the default cmap0*.pal file.\n"
21165 "Set the cmap1 palette using the specified cmap1*.pal format file\n"
21169 " Set the cmap1 palette using the specified cmap1*.pal format file.\n"
21171 " Redacted form: plspal1(filename, interpolate)\n"
21173 " This function is used in example 16.\n"
21179 "plspal1(filename, interpolate)\n"
21183 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21184 " containing the name of the cmap1*.pal file. If this string is\n"
21185 " empty, use the default cmap1*.pal file.\n"
21187 " interpolate (PLBOOL, input) : If this parameter is true, the\n"
21188 " columns containing the intensity index, r, g, b, alpha and\n"
21189 " alt_hue_path in the cmap1*.pal file are used to set the cmap1\n"
21190 " palette with a call to plscmap1la. (The cmap1*.pal header contains\n"
21191 " a flag which controls whether the r, g, b data sent to plscmap1la\n"
21192 " are interpreted as HLS or RGB.) If this parameter is false, the\n"
21193 " intensity index and alt_hue_path columns are ignored and the r, g,\n"
21194 " b (interpreted as RGB), and alpha columns of the cmap1*.pal file\n"
21195 " are used instead to set the cmap1 palette directly with a call to\n"
21200 "Set the pause (on end-of-page) status\n"
21204 " Set the pause (on end-of-page) status.\n"
21206 " Redacted form: plspause(pause)\n"
21208 " This function is in examples 14,20.\n"
21214 "plspause(pause)\n"
21218 " pause (PLBOOL, input) : If pause is true there will be a pause on\n"
21219 " end-of-page for those drivers which support this. Otherwise there\n"
21224 "Set current output stream\n"
21228 " Sets the number of the current output stream. The stream number\n"
21229 " defaults to 0 unless changed by this routine. The first use of this\n"
21230 " routine must be followed by a call initializing PLplot (e.g. plstar).\n"
21232 " Redacted form: plsstrm(strm)\n"
21234 " This function is examples 1,14,20.\n"
21244 " strm (PLINT, input) : The current stream number.\n"
21248 "Set the number of subpages in x and y\n"
21252 " Set the number of subpages in x and y.\n"
21254 " Redacted form: plssub(nx, ny)\n"
21256 " This function is examples 1,2,14,21,25,27.\n"
21266 " nx (PLINT, input) : Number of windows in x direction (i.e., number\n"
21267 " of window columns).\n"
21269 " ny (PLINT, input) : Number of windows in y direction (i.e., number\n"
21270 " of window rows).\n"
21274 "Set symbol size\n"
21278 " This sets up the size of all subsequent symbols drawn by plpoin and\n"
21279 " plsym. The actual height of a symbol is the product of the default\n"
21280 " symbol size and a scaling factor as for the character height.\n"
21282 " Redacted form: plssym(def, scale)\n"
21284 " This function is used in example 29.\n"
21290 "plssym(def, scale)\n"
21294 " def (PLFLT, input) : The default height of a symbol in millimeters,\n"
21295 " should be set to zero if the default height is to remain\n"
21298 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21299 " actual symbol height.\n"
21307 " Initializing the plotting package. The program prompts for the device\n"
21308 " keyword or number of the desired output device. Hitting a RETURN in\n"
21309 " response to the prompt is the same as selecting the first device. If\n"
21310 " only one device is enabled when PLplot is installed, plstar will issue\n"
21311 " no prompt. The output device is divided into nx by ny subpages, each\n"
21312 " of which may be used independently. The subroutine pladv is used to\n"
21313 " advance from one subpage to the next.\n"
21315 " Redacted form: plstar(nx, ny)\n"
21317 " This function is used in example 1.\n"
21327 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21330 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21339 " Alternative to plstar for initializing the plotting package. The\n"
21340 " device name keyword for the desired output device must be supplied as\n"
21341 " an argument. These keywords are the same as those printed out by\n"
21342 " plstar. If the requested device is not available, or if the input\n"
21343 " string is empty or begins with ``?'', the prompted start up of plstar\n"
21344 " is used. This routine also divides the output device page into nx by\n"
21345 " ny subpages, each of which may be used independently. The subroutine\n"
21346 " pladv is used to advance from one subpage to the next.\n"
21348 " Redacted form: General: plstart(devname, nx, ny)\n"
21351 " This function is not used in any examples.\n"
21357 "plstart(devname, nx, ny)\n"
21361 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
21362 " containing the device name keyword of the required output device.\n"
21364 " devname is NULL or if the first character of the string is a ``?'',\n"
21365 " the normal (prompted) start up is used.\n"
21367 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21370 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21375 "Set a global coordinate transform function\n"
21379 " This function can be used to define a coordinate transformation which\n"
21380 " affects all elements drawn within the current plot window. The\n"
21381 " coordinate_transform callback function is similar to that provided for\n"
21382 " the plmap and plmeridians functions. The coordinate_transform_data\n"
21383 " parameter may be used to pass extra data to coordinate_transform.\n"
21385 " Redacted form: General: plstransform(coordinate_transform,\n"
21386 " coordinate_transform_data)\n"
21389 " This function is used in examples 19 and 22.\n"
21395 "plstransform(coordinate_transform, coordinate_transform_data)\n"
21399 " coordinate_transform (PLTRANSFORM_callback, input) : A callback\n"
21400 " function that defines the transformation from the input (x, y)\n"
21401 " world coordinates to new PLplot world coordinates. If\n"
21402 " coordinate_transform is not supplied (e.g., is set to NULL in the C\n"
21403 " case), then no transform is applied.\n"
21405 " coordinate_transform_data (PLPointer, input) : Optional extra data\n"
21407 " coordinate_transform.\n"
21411 "Plot a glyph at the specified points\n"
21415 " Plot a glyph at the specified points. (Supersedes plpoin and plsym\n"
21416 " because many[!] more glyphs are accessible with plstring.) The glyph\n"
21417 " is specified with a PLplot user string. Note that the user string is\n"
21418 " not actually limited to one glyph so it is possible (but not normally\n"
21419 " useful) to plot more than one glyph at the specified points with this\n"
21420 " function. As with plmtex and plptex, the user string can contain FCI\n"
21421 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21422 " else PLplot escapes for Hershey or unicode text to determine the\n"
21425 " Redacted form: plstring(x, y, string)\n"
21427 " This function is used in examples 4, 21 and 26.\n"
21433 "plstring(n, x, y, string)\n"
21437 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21439 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21442 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21445 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21446 " the glyph(s) to be plotted at each of the n points.\n"
21450 "Plot a glyph at the specified 3D points\n"
21454 " Plot a glyph at the specified 3D points. (Supersedes plpoin3 because\n"
21455 " many[!] more glyphs are accessible with plstring3.) Set up the call to\n"
21456 " this function similar to what is done for plline3. The glyph is\n"
21457 " specified with a PLplot user string. Note that the user string is not\n"
21458 " actually limited to one glyph so it is possible (but not normally\n"
21459 " useful) to plot more than one glyph at the specified points with this\n"
21460 " function. As with plmtex and plptex, the user string can contain FCI\n"
21461 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21462 " else PLplot escapes for Hershey or unicode text to determine the\n"
21465 " Redacted form: plstring3(x, y, z, string)\n"
21467 " This function is used in example 18.\n"
21473 "plstring3(n, x, y, z, string)\n"
21477 " n (PLINT, input) : Number of points in the x, y, and z vectors.\n"
21479 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21482 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21485 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
21488 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21489 " the glyph(s) to be plotted at each of the n points. points.\n"
21493 "Add a point to a strip chart\n"
21497 " Add a point to a given pen of a given strip chart. There is no need\n"
21498 " for all pens to have the same number of points or to be equally\n"
21499 " sampled in the x coordinate. Allocates memory and rescales as\n"
21502 " Redacted form: plstripa(id, pen, x, y)\n"
21504 " This function is used in example 17.\n"
21510 "plstripa(id, pen, x, y)\n"
21514 " id (PLINT, input) : Identification number of the strip chart (set\n"
21515 " up in plstripc).\n"
21517 " pen (PLINT, input) : Pen number (ranges from 0 to 3).\n"
21519 " x (PLFLT, input) : X coordinate of point to plot.\n"
21521 " y (PLFLT, input) : Y coordinate of point to plot.\n"
21525 "Create a 4-pen strip chart\n"
21529 " Create a 4-pen strip chart, to be used afterwards by plstripa\n"
21531 " Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump,\n"
21532 " ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline,\n"
21533 " styline, legline, labx, laby, labz)\n"
21536 " This function is used in example 17.\n"
21542 "plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby, labtop)\n"
21546 " id (PLINT_NC_SCALAR, output) : Returned value of the identification\n"
21547 " number of the strip chart to use on plstripa and plstripd.\n"
21549 " xspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21550 " the x-axis specification as in plbox.\n"
21552 " yspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21553 " the y-axis specification as in plbox.\n"
21555 " xmin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21556 " change as data are added.\n"
21558 " xmax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21559 " change as data are added.\n"
21561 " xjump (PLFLT, input) : When x attains xmax, the length of the plot\n"
21562 " is multiplied by the factor (1 +\n"
21565 " ymin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21566 " change as data are added.\n"
21568 " ymax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21569 " change as data are added.\n"
21571 " xlpos (PLFLT, input) : X legend box position (range from 0 to 1).\n"
21573 " ylpos (PLFLT, input) : Y legend box position (range from 0 to 1).\n"
21575 " y_ascl (PLBOOL, input) : Autoscale y between x jumps if y_ascl is\n"
21576 " true, otherwise not.\n"
21578 " acc (PLBOOL, input) : Accumulate strip plot if acc is true,\n"
21579 " otherwise slide display.\n"
21581 " colbox (PLINT, input) : Plot box color index (cmap0).\n"
21583 " collab (PLINT, input) : Legend color index (cmap0).\n"
21585 " colline (PLINT_VECTOR, input) : A vector containing the cmap0 color\n"
21586 " indices for the 4 pens.\n"
21588 " styline (PLINT_VECTOR, input) : A vector containing the line style\n"
21589 " indices for the 4 pens.\n"
21591 " legline (PLCHAR_MATRIX, input) : A vector of UTF-8 character\n"
21592 " strings containing legends for the 4 pens.\n"
21594 " labx (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21595 " the label for the x axis.\n"
21597 " laby (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21598 " the label for the y axis.\n"
21600 " labtop (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21601 " the plot title.\n"
21605 "Deletes and releases memory used by a strip chart\n"
21609 " Deletes and releases memory used by a strip chart.\n"
21611 " Redacted form: plstripd(id)\n"
21613 " This function is used in example 17.\n"
21623 " id (PLINT, input) : Identification number of strip chart to delete.\n"
21631 " This sets up the line style for all lines subsequently drawn. A line\n"
21632 " consists of segments in which the pen is alternately down and up. The\n"
21633 " lengths of these segments are passed in the vectors mark and space\n"
21634 " respectively. The number of mark-space pairs is specified by nms. In\n"
21635 " order to return the line style to the default continuous line, plstyl\n"
21636 " should be called with nms =0 .(see also pllsty)\n"
21638 " Redacted form: plstyl(mark, space)\n"
21640 " This function is used in examples 1, 9, and 14.\n"
21646 "plstyl(nms, mark, space)\n"
21650 " nms (PLINT, input) : The number of mark and space elements in a\n"
21651 " line. Thus a simple broken line can be obtained by setting nms=1\n"
21652 " . A continuous line is specified by setting nms=0 .\n"
21654 " mark (PLINT_VECTOR, input) : A vector containing the lengths of the\n"
21655 " segments during which the pen is down, measured in micrometers.\n"
21657 " space (PLINT_VECTOR, input) : A vector containing the lengths of\n"
21658 " the segments during which the pen is up, measured in micrometers.\n"
21662 "Set arrow style for vector plots\n"
21666 " Set the style for the arrow used by plvect to plot vectors.\n"
21668 " Redacted form: plsvect(arrowx, arrowy, fill)\n"
21670 " This function is used in example 22.\n"
21676 "plsvect(arrowx, arrowy, npts, fill)\n"
21680 " arrowx, arrowy (PLFLT_VECTOR, input) : A pair of vectors containing\n"
21681 " the x and y points which make up the arrow. The arrow is plotted\n"
21682 " by joining these points to form a polygon. The scaling assumes\n"
21683 " that the x and y points in the arrow lie in the range -0.5 <= x,y\n"
21684 " <= 0.5. If both arrowx and arrowy are NULL then the arrow style\n"
21685 " will be reset to its default.\n"
21687 " npts (PLINT, input) : Number of points in the vectors arrowx and\n"
21690 " fill (PLBOOL, input) : If fill is true then the arrow is closed, if\n"
21691 " fill is false then the arrow is open.\n"
21695 "Specify viewport in absolute coordinates\n"
21699 " Alternate routine to plvpor for setting up the viewport. This routine\n"
21700 " should be used only if the viewport is required to have a definite\n"
21701 " size in millimeters. The routine plgspa is useful for finding out the\n"
21702 " size of the current subpage.\n"
21704 " Redacted form: plsvpa(xmin, xmax, ymin, ymax)\n"
21706 " This function is used in example 10.\n"
21712 "plsvpa(xmin, xmax, ymin, ymax)\n"
21716 " xmin (PLFLT, input) : The distance of the left-hand edge of the\n"
21717 " viewport from the left-hand edge of the subpage in millimeters.\n"
21719 " xmax (PLFLT, input) : The distance of the right-hand edge of the\n"
21720 " viewport from the left-hand edge of the subpage in millimeters.\n"
21722 " ymin (PLFLT, input) : The distance of the bottom edge of the\n"
21723 " viewport from the bottom edge of the subpage in millimeters.\n"
21725 " ymax (PLFLT, input) : The distance of the top edge of the viewport\n"
21726 " from the bottom edge of the subpage in millimeters.\n"
21730 "Set x axis parameters\n"
21734 " Sets values of the digmax and digits flags for the x axis. See the\n"
21735 " PLplot documentation for more information.\n"
21737 " Redacted form: plsxax(digmax, digits)\n"
21739 " This function is used in example 31.\n"
21745 "plsxax(digmax, digits)\n"
21749 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21750 " digits for the x axis. If nonzero, the printed label will be\n"
21751 " switched to a floating-point representation when the number of\n"
21752 " digits exceeds digmax.\n"
21754 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21755 " its value here has no effect since it is set only by plbox or\n"
21756 " plbox3. However, the user may obtain its value after a call to\n"
21757 " either of these functions by calling plgxax.\n"
21761 "Set y axis parameters\n"
21765 " Identical to plsxax, except that arguments are flags for y axis. See\n"
21766 " the description of plsxax for more detail.\n"
21768 " Redacted form: plsyax(digmax, digits)\n"
21770 " This function is used in examples 1, 14, and 31.\n"
21776 "plsyax(digmax, digits)\n"
21780 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21781 " digits for the y axis. If nonzero, the printed label will be\n"
21782 " switched to a floating-point representation when the number of\n"
21783 " digits exceeds digmax.\n"
21785 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21786 " its value here has no effect since it is set only by plbox or\n"
21787 " plbox3. However, the user may obtain its value after a call to\n"
21788 " either of these functions by calling plgyax.\n"
21792 "Plot a glyph at the specified points\n"
21796 " Plot a glyph at the specified points. (This function is largely\n"
21797 " superseded by plstring which gives access to many[!] more glyphs.)\n"
21799 " Redacted form: plsym(x, y, code)\n"
21801 " This function is used in example 7.\n"
21807 "plsym(n, x, y, code)\n"
21811 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21813 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21816 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21819 " code (PLINT, input) : Hershey symbol code corresponding to a glyph\n"
21820 " to be plotted at each of the n points.\n"
21824 "Set z axis parameters\n"
21828 " Identical to plsxax, except that arguments are flags for z axis. See\n"
21829 " the description of plsxax for more detail.\n"
21831 " Redacted form: plszax(digmax, digits)\n"
21833 " This function is used in example 31.\n"
21839 "plszax(digmax, digits)\n"
21843 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21844 " digits for the z axis. If nonzero, the printed label will be\n"
21845 " switched to a floating-point representation when the number of\n"
21846 " digits exceeds digmax.\n"
21848 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21849 " its value here has no effect since it is set only by plbox or\n"
21850 " plbox3. However, the user may obtain its value after a call to\n"
21851 " either of these functions by calling plgzax.\n"
21855 "Switch to text screen\n"
21859 " Sets an interactive device to text mode, used in conjunction with\n"
21860 " plgra to allow graphics and text to be interspersed. On a device\n"
21861 " which supports separate text and graphics windows, this command causes\n"
21862 " control to be switched to the text window. This can be useful for\n"
21863 " printing diagnostic messages or getting user input, which would\n"
21864 " otherwise interfere with the plots. The program must switch back to\n"
21865 " the graphics window before issuing plot commands, as the text (or\n"
21866 " console) device will probably become quite confused otherwise. If\n"
21867 " already in text mode, this command is ignored. It is also ignored on\n"
21868 " devices which only support a single window or use a different method\n"
21869 " for shifting focus (see also plgra).\n"
21871 " Redacted form: pltext()\n"
21873 " This function is used in example 1.\n"
21883 "Set format for date / time labels\n"
21887 " Sets the format for date / time labels. To enable date / time format\n"
21888 " labels see the options to plbox, plbox3, and plenv.\n"
21890 " Redacted form: pltimefmt(fmt)\n"
21892 " This function is used in example 29.\n"
21902 " fmt (PLCHAR_VECTOR, input) : An ascii character string which is\n"
21903 " interpreted similarly to the format specifier of typical system\n"
21904 " strftime routines except that PLplot ignores locale and also\n"
21905 " supplies some useful extensions in the context of plotting. All\n"
21906 " text in the string is printed as-is other than conversion\n"
21907 " specifications which take the form of a '%' character followed by\n"
21908 " further conversion specification character. The conversion\n"
21909 " specifications which are similar to those provided by system\n"
21910 " strftime routines are the following: %a: The abbreviated (English)\n"
21912 " %A: The full (English) weekday name.\n"
21913 " %b: The abbreviated (English) month name.\n"
21914 " %B: The full (English) month name.\n"
21915 " %c: Equivalent to %a %b %d %T %Y (non-ISO).\n"
21916 " %C: The century number (year/100) as a 2-digit integer.\n"
21917 " %d: The day of the month as a decimal number (range 01 to 31).\n"
21918 " %D: Equivalent to %m/%d/%y (non-ISO).\n"
21919 " %e: Like %d, but a leading zero is replaced by a space.\n"
21920 " %F: Equivalent to %Y-%m-%d (the ISO 8601 date format).\n"
21921 " %h: Equivalent to %b.\n"
21922 " %H: The hour as a decimal number using a 24-hour clock (range\n"
21924 " %I: The hour as a decimal number using a 12-hour clock (range\n"
21926 " %j: The day of the year as a decimal number (range 001 to\n"
21928 " %k: The hour (24-hour clock) as a decimal number (range 0 to\n"
21929 " 23); single digits are preceded by a blank. (See also %H.)\n"
21930 " %l: The hour (12-hour clock) as a decimal number (range 1 to\n"
21931 " 12); single digits are preceded by a blank. (See also %I.)\n"
21932 " %m: The month as a decimal number (range 01 to 12).\n"
21933 " %M: The minute as a decimal number (range 00 to 59).\n"
21934 " %n: A newline character.\n"
21935 " %p: Either \"AM\" or \"PM\" according to the given time value.\n"
21936 " Noon is treated as \"PM\" and midnight as \"AM\".\n"
21937 " %r: Equivalent to %I:%M:%S %p.\n"
21938 " %R: The time in 24-hour notation (%H:%M). For a version\n"
21939 " including the seconds, see %T below.\n"
21940 " %s: The number of seconds since the Epoch, 1970-01-01 00:00:00\n"
21942 " %S: The second as a decimal number (range 00 to 60). (The\n"
21943 " range is up to 60 to allow for occasional leap seconds.)\n"
21944 " %t: A tab character.\n"
21945 " %T: The time in 24-hour notation (%H:%M:%S).\n"
21946 " %u: The day of the week as a decimal, range 1 to 7, Monday\n"
21947 " being 1. See also %w.\n"
21948 " %U: The week number of the current year as a decimal number,\n"
21949 " range 00 to 53, starting with the first Sunday as the first\n"
21950 " day of week 01. See also %V and %W.\n"
21951 " %v: Equivalent to %e-%b-%Y.\n"
21952 " %V: The ISO 8601 week number of the current year as a decimal\n"
21953 " number, range 01 to 53, where week 1 is the first week that\n"
21954 " has at least 4 days in the new year. See also %U and %W.\n"
21955 " %w: The day of the week as a decimal, range 0 to 6, Sunday\n"
21956 " being 0. See also %u.\n"
21957 " %W: The week number of the current year as a decimal number,\n"
21958 " range 00 to 53, starting with the first Monday as the first\n"
21959 " day of week 01.\n"
21960 " %x: Equivalent to %a %b %d %Y.\n"
21961 " %X: Equivalent to %T.\n"
21962 " %y: The year as a decimal number without a century (range 00\n"
21964 " %Y: The year as a decimal number including a century.\n"
21965 " %z: The UTC time-zone string = \"+0000\".\n"
21966 " %Z: The UTC time-zone abbreviation = \"UTC\".\n"
21967 " %+: The UTC date and time in default format of the Unix date\n"
21968 " command which is equivalent to %a %b %d %T %Z %Y.\n"
21969 " %%: A literal \"%\" character.\n"
21970 " The conversion specifications which are extensions to those normally\n"
21971 " provided by system strftime routines are the following: %(0-9):\n"
21972 " The fractional part of the seconds field (including leading\n"
21973 " decimal point) to the specified accuracy. Thus %S%3 would give\n"
21974 " seconds to millisecond accuracy (00.000).\n"
21975 " %.: The fractional part of the seconds field (including\n"
21976 " leading decimal point) to the maximum available accuracy. Thus\n"
21977 " %S%. would give seconds with fractional part up to 9 decimal\n"
21978 " places if available.\n"
21982 "Specify viewport using aspect ratio only\n"
21986 " Selects the largest viewport with the given aspect ratio within the\n"
21987 " subpage that leaves a standard margin (left-hand margin of eight\n"
21988 " character heights, and a margin around the other three sides of five\n"
21989 " character heights).\n"
21991 " Redacted form: plvasp(aspect)\n"
21993 " This function is used in example 13.\n"
22003 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22004 " axis of resulting viewport.\n"
22012 " Draws a plot of vector data contained in the matrices (\n"
22018 " ny]) . The scaling factor for the vectors is given by scale. A\n"
22019 " transformation routine pointed to by pltr with a pointer pltr_data for\n"
22020 " additional data required by the transformation routine to map indices\n"
22021 " within the matrices to the world coordinates. The style of the vector\n"
22022 " arrow may be set using plsvect.\n"
22024 " Redacted form: plvect(u, v, scale, pltr, pltr_data) where (see above\n"
22025 " discussion) the pltr, pltr_data callback arguments are sometimes\n"
22026 " replaced by a tr vector with 6 elements, or xg and yg array arguments\n"
22027 " with either one or two dimensions.\n"
22029 " This function is used in example 22.\n"
22035 "plvect(u, v, nx, ny, scale, pltr, pltr_data)\n"
22039 " u, v (PLFLT_MATRIX, input) : A pair of matrices containing the x\n"
22040 " and y components of the vector data to be plotted.\n"
22042 " nx, ny (PLINT, input) : Dimensions of the matrices u and v.\n"
22044 " scale (PLFLT, input) : Parameter to control the scaling factor of\n"
22045 " the vectors for plotting. If scale = 0 then the scaling factor is\n"
22046 " automatically calculated for the data. If scale < 0 then the\n"
22047 " scaling factor is automatically calculated for the data and then\n"
22048 " multiplied by -\n"
22049 " scale. If scale > 0 then the scaling factor is set to scale.\n"
22051 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22052 " defines the transformation between the zero-based indices of the\n"
22053 " matrices u and v and world coordinates.For the C case,\n"
22054 " transformation functions are provided in the PLplot library: pltr0\n"
22055 " for the identity mapping, and pltr1 and pltr2 for arbitrary\n"
22056 " mappings respectively defined by vectors and matrices. In\n"
22057 " addition, C callback routines for the transformation can be\n"
22058 " supplied by the user such as the mypltr function in\n"
22059 " examples/c/x09c.c which provides a general linear transformation\n"
22060 " between index coordinates and world coordinates.For languages\n"
22061 " other than C you should consult the PLplot documentation for the\n"
22062 " details concerning how PLTRANSFORM_callback arguments are\n"
22063 " interfaced. However, in general, a particular pattern of\n"
22064 " callback-associated arguments such as a tr vector with 6 elements;\n"
22065 " xg and yg vectors; or xg and yg matrices are respectively\n"
22066 " interfaced to a linear-transformation routine similar to the above\n"
22067 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22068 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22069 " support native language callbacks for handling index to\n"
22070 " world-coordinate transformations. Examples of these various\n"
22071 " approaches are given in examples/<language>x09*,\n"
22072 " examples/<language>x16*, examples/<language>x20*,\n"
22073 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22074 " supported languages.\n"
22076 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22077 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
22078 " that is externally supplied.\n"
22082 "Specify viewport using coordinates and aspect ratio\n"
22086 " Device-independent routine for setting up the viewport. The viewport\n"
22087 " is chosen to be the largest with the given aspect ratio that fits\n"
22088 " within the specified region (in terms of normalized subpage\n"
22089 " coordinates). This routine is functionally equivalent to plvpor when\n"
22090 " a ``natural'' aspect ratio (0.0) is chosen. Unlike plvasp, this\n"
22091 " routine reserves no extra space at the edges for labels.\n"
22093 " Redacted form: plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22095 " This function is used in example 9.\n"
22101 "plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22105 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22106 " left-hand edge of the viewport.\n"
22108 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22109 " right-hand edge of the viewport.\n"
22111 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22112 " bottom edge of the viewport.\n"
22114 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22115 " edge of the viewport.\n"
22117 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22122 "Specify viewport using normalized subpage coordinates\n"
22126 " Device-independent routine for setting up the viewport. This defines\n"
22127 " the viewport in terms of normalized subpage coordinates which run from\n"
22128 " 0.0 to 1.0 (left to right and bottom to top) along each edge of the\n"
22129 " current subpage. Use the alternate routine plsvpa in order to create\n"
22130 " a viewport of a definite size.\n"
22132 " Redacted form: plvpor(xmin, xmax, ymin, ymax)\n"
22134 " This function is used in examples 2, 6-8, 10, 11, 15, 16, 18, 21, 23,\n"
22135 " 24, 26, 27, and 31.\n"
22141 "plvpor(xmin, xmax, ymin, ymax)\n"
22145 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22146 " left-hand edge of the viewport.\n"
22148 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22149 " right-hand edge of the viewport.\n"
22151 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22152 " bottom edge of the viewport.\n"
22154 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22155 " edge of the viewport.\n"
22159 "Select standard viewport\n"
22163 " Selects the largest viewport within the subpage that leaves a standard\n"
22164 " margin (left-hand margin of eight character heights, and a margin\n"
22165 " around the other three sides of five character heights).\n"
22167 " Redacted form: plvsta()\n"
22169 " This function is used in examples 1, 12, 14, 17, 25, and 29.\n"
22179 "Configure the transformations required for projecting a 3D surface on a 2D window\n"
22183 " Configure the transformations required for projecting a 3D surface on\n"
22184 " an existing 2D window. Those transformations (see the PLplot\n"
22185 " documentation) are done to a rectangular cuboid enclosing the 3D\n"
22186 " surface which has its limits expressed in 3D world coordinates and\n"
22187 " also normalized 3D coordinates (used for interpreting the altitude and\n"
22188 " azimuth of the viewing angle). The transformations consist of the\n"
22189 " linear transform from 3D world coordinates to normalized 3D\n"
22190 " coordinates, and the 3D rotation of normalized coordinates required to\n"
22191 " align the pole of the new 3D coordinate system with the viewing\n"
22192 " direction specified by altitude and azimuth so that x and y of the\n"
22193 " surface elements in that transformed coordinate system are the\n"
22194 " projection of the 3D surface with given viewing direction on the 2D\n"
22197 " The enclosing rectangular cuboid for the surface plot is defined by\n"
22198 " xmin, xmax, ymin, ymax, zmin and zmax in 3D world coordinates. It is\n"
22199 " mapped into the same rectangular cuboid with normalized 3D coordinate\n"
22200 " sizes of basex by basey by height so that xmin maps to -\n"
22201 " basex/2, xmax maps to basex/2, ymin maps to -\n"
22202 " basey/2, ymax maps to basey/2, zmin maps to 0 and zmax maps to height.\n"
22203 " The resulting rectangular cuboid in normalized coordinates is then\n"
22204 " viewed by an observer at altitude alt and azimuth az. This routine\n"
22205 " must be called before plbox3 or any of the 3D surface plotting\n"
22206 " routines; plmesh, plmeshc, plot3d, plot3dc, plot3dcl, plsurf3d,\n"
22207 " plsurf3dl or plfill3.\n"
22209 " Redacted form: plw3d(basex, basey, height, xmin, xmax, ymin, ymax,\n"
22210 " zmin, zmax, alt, az)\n"
22212 " This function is examples 8, 11, 18, and 21.\n"
22218 "plw3d(basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az)\n"
22222 " basex (PLFLT, input) : The normalized x coordinate size of the\n"
22223 " rectangular cuboid.\n"
22225 " basey (PLFLT, input) : The normalized y coordinate size of the\n"
22226 " rectangular cuboid.\n"
22228 " height (PLFLT, input) : The normalized z coordinate size of the\n"
22229 " rectangular cuboid.\n"
22231 " xmin (PLFLT, input) : The minimum x world coordinate of the\n"
22232 " rectangular cuboid.\n"
22234 " xmax (PLFLT, input) : The maximum x world coordinate of the\n"
22235 " rectangular cuboid.\n"
22237 " ymin (PLFLT, input) : The minimum y world coordinate of the\n"
22238 " rectangular cuboid.\n"
22240 " ymax (PLFLT, input) : The maximum y world coordinate of the\n"
22241 " rectangular cuboid.\n"
22243 " zmin (PLFLT, input) : The minimum z world coordinate of the\n"
22244 " rectangular cuboid.\n"
22246 " zmax (PLFLT, input) : The maximum z world coordinate of the\n"
22247 " rectangular cuboid.\n"
22249 " alt (PLFLT, input) : The viewing altitude in degrees above the xy\n"
22250 " plane of the rectangular cuboid in normalized coordinates.\n"
22252 " az (PLFLT, input) : The viewing azimuth in degrees of the\n"
22253 " rectangular cuboid in normalized coordinates. When az=0, the\n"
22254 " observer is looking face onto the zx plane of the rectangular\n"
22255 " cuboid in normalized coordinates, and as az is increased, the\n"
22256 " observer moves clockwise around that cuboid when viewed from above\n"
22265 " Sets the pen width.\n"
22267 " Redacted form: plwidth(width)\n"
22269 " This function is used in examples 1 and 2.\n"
22279 " width (PLFLT, input) : The desired pen width. If width is negative\n"
22280 " or the same as the previous value no action is taken. width = 0.\n"
22281 " should be interpreted as as the minimum valid pen width for the\n"
22282 " device. The interpretation of positive width values is also\n"
22283 " device dependent.\n"
22291 " Specify the window, i.e., the world coordinates of the edges of the\n"
22294 " Redacted form: plwind(xmin, xmax, ymin, ymax)\n"
22296 " This function is used in examples 1, 2, 4, 6-12, 14-16, 18, 21, 23-27,\n"
22303 "plwind(xmin, xmax, ymin, ymax)\n"
22307 " xmin (PLFLT, input) : The world x coordinate of the left-hand edge\n"
22308 " of the viewport.\n"
22310 " xmax (PLFLT, input) : The world x coordinate of the right-hand edge\n"
22311 " of the viewport.\n"
22313 " ymin (PLFLT, input) : The world y coordinate of the bottom edge of\n"
22316 " ymax (PLFLT, input) : The world y coordinate of the top edge of the\n"
22321 "Enter or leave xor mode\n"
22325 " Enter (when mode is true) or leave (when mode is false) xor mode for\n"
22326 " those drivers (e.g., the xwin driver) that support it. Enables\n"
22327 " erasing plots by drawing twice the same line, symbol, etc. If driver\n"
22328 " is not capable of xor operation it returns a status of false.\n"
22330 " Redacted form: plxormod(mode, status)\n"
22332 " This function is used in examples 1 and 20.\n"
22338 "plxormod(mode, status)\n"
22342 " mode (PLBOOL, input) : mode is true means enter xor mode and mode\n"
22343 " is false means leave xor mode.\n"
22345 " status (PLBOOL_NC_SCALAR, output) : Returned value of the status.\n"
22346 " modestatus of true (false) means driver is capable (incapable) of\n"
22351 "Plot continental outline or shapefile data in world coordinates\n"
22355 " Plots continental outlines or shapefile data in world coordinates. A\n"
22356 " demonstration of how to use this function to create different\n"
22357 " projections can be found in examples/c/x19c. PLplot is provided with\n"
22358 " basic coastal outlines and USA state borders. To use the map\n"
22359 " functionality PLplot must be compiled with the shapelib library.\n"
22360 " Shapefiles have become a popular standard for geographical data and\n"
22361 " data in this format can be easily found from a number of online\n"
22362 " sources. Shapefile data is actually provided as three or more files\n"
22363 " with the same filename, but different extensions. The .shp and .shx\n"
22364 " files are required for plotting Shapefile data with PLplot.\n"
22366 " PLplot currently supports the point, multipoint, polyline and polygon\n"
22367 " objects within shapefiles. However holes in polygons are not\n"
22368 " supported. When plmap is used the type of object is derived from the\n"
22369 " shapefile, if you wish to override the type then use one of the other\n"
22370 " plmap variants. The built in maps have line data only.\n"
22372 " Redacted form: plmap(mapform, name, minx, maxx, miny, maxy)\n"
22374 " This function is used in example 19.\n"
22380 "plmap(mapform, name, minx, maxx, miny, maxy)\n"
22384 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22385 " transform the original map data coordinates to a new coordinate\n"
22386 " system. The PLplot-supplied map data is provided as latitudes and\n"
22387 " longitudes; other Shapefile data may be provided in other\n"
22388 " coordinate systems as can be found in their .prj plain text files.\n"
22389 " For example, by using this transform we can change from a\n"
22390 " longitude, latitude coordinate to a polar stereographic\n"
22391 " projection. Initially, x[0]..[n-1] are the original x coordinates\n"
22392 " (longitudes for the PLplot-supplied data) and y[0]..y[n-1] are the\n"
22393 " corresponding y coordinates (latitudes for the PLplot supplied\n"
22394 " data). After the call to mapform(), x[] and y[] should be\n"
22395 " replaced by the corresponding plot coordinates. If no transform is\n"
22396 " desired, mapform can be replaced by NULL.\n"
22398 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22399 " the type of map plotted. This is either one of the PLplot built-in\n"
22400 " maps or the file name of a set of Shapefile files without the file\n"
22401 " extensions. For the PLplot built-in maps the possible values are:\n"
22402 " \"globe\" -- continental outlines\n"
22403 " \"usa\" -- USA and state boundaries\n"
22404 " \"cglobe\" -- continental outlines and countries\n"
22405 " \"usaglobe\" -- USA, state boundaries and continental outlines\n"
22408 " minx (PLFLT, input) : The minimum x value of map elements to be\n"
22409 " drawn. The units must match the shapefile (built in maps are\n"
22410 " degrees lat/lon). Objects in the file which do not encroach on the\n"
22411 " box defined by minx, maxx, miny, maxy will not be rendered. But\n"
22412 " note this is simply an optimisation, not a clipping so for objects\n"
22413 " with some points inside the box and some points outside the box\n"
22414 " all the points will be rendered. These parameters also define\n"
22415 " latitude and longitude wrapping for shapefiles using these units.\n"
22416 " Longitude points will be wrapped by integer multiples of 360\n"
22417 " degrees to place them in the box. This allows the same data to be\n"
22418 " used on plots from -180-180 or 0-360 longitude ranges. In fact if\n"
22419 " you plot from -180-540 you will get two cycles of data drawn. The\n"
22420 " value of minx must be less than the value of maxx. Passing in a\n"
22421 " nan, max/-max floating point number or +/-infinity will case the\n"
22422 " bounding box from the shapefile to be used.\n"
22424 " maxx (PLFLT, input) : The maximum x value of map elements to be\n"
22425 " drawn - see minx.\n"
22427 " miny (PLFLT, input) : The minimum y value of map elements to be\n"
22428 " drawn - see minx.\n"
22430 " maxy (PLFLT, input) : The maximum y value of map elements to be\n"
22431 " drawn - see minx.\n"
22435 "Plot all or a subset of Shapefile data using lines in world coordinates\n"
22439 " Plot all or a subset of Shapefile data using lines in world\n"
22440 " coordinates. Our 19th standard example demonstrates how to use this\n"
22441 " function. This function plots data from a Shapefile using lines as in\n"
22442 " plmap, however it also has the option of also only drawing specified\n"
22443 " elements from the Shapefile. The vector of indices of the required\n"
22444 " elements are passed as a function argument. The Shapefile data should\n"
22445 " include a metadata file (extension.dbf) listing all items within the\n"
22446 " Shapefile. This file can be opened by most popular spreadsheet\n"
22447 " programs and can be used to decide which indices to pass to this\n"
22450 " Redacted form: plmapline(mapform, name, minx, maxx, miny, maxy,\n"
22453 " This function is used in example 19.\n"
22459 "plmapline(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22463 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22464 " transform the coordinates given in the shapefile into a plot\n"
22465 " coordinate system. By using this transform, we can change from a\n"
22466 " longitude, latitude coordinate to a polar stereographic project,\n"
22467 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22468 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22469 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22470 " plot coordinates. If no transform is desired, mapform can be\n"
22471 " replaced by NULL.\n"
22473 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22474 " the file name of a set of Shapefile files without the file\n"
22477 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22478 " be in the same units as used by the Shapefile. You could use a\n"
22479 " very large negative number to plot everything, but you can improve\n"
22480 " performance by limiting the area drawn. The units must match those\n"
22481 " of the Shapefile projection, which may be for example longitude or\n"
22482 " distance. The value of minx must be less than the value of maxx.\n"
22484 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22485 " use a very large number to plot everything, but you can improve\n"
22486 " performance by limiting the area drawn.\n"
22488 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22489 " be in the same units as used by the Shapefile. You could use a\n"
22490 " very large negative number to plot everything, but you can improve\n"
22491 " performance by limiting the area drawn. The units must match those\n"
22492 " of the Shapefile projection, which may be for example latitude or\n"
22493 " distance. The value of miny must be less than the value of maxy.\n"
22495 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22496 " use a very large number to plot everything, but you can improve\n"
22497 " performance by limiting the area drawn.\n"
22499 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22500 " zero-based indices of the Shapefile elements which will be drawn.\n"
22502 " plotentries to NULL will plot all elements of the Shapefile.\n"
22504 " nplotentries (PLINT, input) : The number of items in\n"
22505 " plotentries. Ignored if\n"
22506 " plotentries is NULL.\n"
22510 "Plot all or a subset of Shapefile data using strings or points in world coordinates\n"
22514 " As per plmapline, however the items are plotted as strings or points\n"
22515 " in the same way as plstring.\n"
22517 " Redacted form: plmapstring(mapform, name, string, minx, maxx, miny,\n"
22518 " maxy, plotentries)\n"
22520 " This function is not used in any examples.\n"
22526 "plmapstring(mapform, name, string, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22530 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22531 " transform the coordinates given in the shapefile into a plot\n"
22532 " coordinate system. By using this transform, we can change from a\n"
22533 " longitude, latitude coordinate to a polar stereographic project,\n"
22534 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22535 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22536 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22537 " plot coordinates. If no transform is desired, mapform can be\n"
22538 " replaced by NULL.\n"
22540 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22541 " the file name of a set of Shapefile files without the file\n"
22544 " string (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
22547 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22548 " be in the same units as used by the Shapefile. You could use a\n"
22549 " very large negative number to plot everything, but you can improve\n"
22550 " performance by limiting the area drawn. The units must match those\n"
22551 " of the Shapefile projection, which may be for example longitude or\n"
22552 " distance. The value of minx must be less than the value of maxx.\n"
22554 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22555 " use a very large number to plot everything, but you can improve\n"
22556 " performance by limiting the area drawn.\n"
22558 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22559 " be in the same units as used by the Shapefile. You could use a\n"
22560 " very large negative number to plot everything, but you can improve\n"
22561 " performance by limiting the area drawn. The units must match those\n"
22562 " of the Shapefile projection, which may be for example latitude or\n"
22563 " distance. The value of miny must be less than the value of maxy.\n"
22565 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22566 " use a very large number to plot everything, but you can improve\n"
22567 " performance by limiting the area drawn.\n"
22569 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22570 " zero-based indices of the Shapefile elements which will be drawn.\n"
22572 " plotentries to NULL will plot all elements of the Shapefile.\n"
22574 " nplotentries (PLINT, input) : The number of items in\n"
22575 " plotentries. Ignored if\n"
22576 " plotentries is NULL.\n"
22580 "Draw text at points defined by Shapefile data in world coordinates\n"
22584 " As per plmapline, however the items are plotted as text in the same\n"
22585 " way as plptex.\n"
22587 " Redacted form: plmaptex(mapform, name, dx, dy, just, text, minx, maxx,\n"
22588 " miny, maxy, plotentry)\n"
22590 " This function is used in example 19.\n"
22596 "plmaptex(mapform, name, dx, dy, just, text, minx, maxx, miny, maxy, plotentry)\n"
22600 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22601 " transform the coordinates given in the shapefile into a plot\n"
22602 " coordinate system. By using this transform, we can change from a\n"
22603 " longitude, latitude coordinate to a polar stereographic project,\n"
22604 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22605 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22606 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22607 " plot coordinates. If no transform is desired, mapform can be\n"
22608 " replaced by NULL.\n"
22610 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22611 " the file name of a set of Shapefile files without the file\n"
22614 " dx (PLFLT, input) : Used to define the slope of the texts which is\n"
22617 " dy (PLFLT, input) : Used to define the slope of the texts which is\n"
22620 " just (PLFLT, input) : Set the justification of the text. The value\n"
22621 " given will be the fraction of the distance along the string that\n"
22622 " sits at the given point. 0.0 gives left aligned text, 0.5 gives\n"
22623 " centralized text and 1.0 gives right aligned text.\n"
22625 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be drawn.\n"
22627 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22628 " be in the same units as used by the Shapefile. You could use a\n"
22629 " very large negative number to plot everything, but you can improve\n"
22630 " performance by limiting the area drawn. The units must match those\n"
22631 " of the Shapefile projection, which may be for example longitude or\n"
22632 " distance. The value of minx must be less than the value of maxx.\n"
22634 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22635 " use a very large number to plot everything, but you can improve\n"
22636 " performance by limiting the area drawn.\n"
22638 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22639 " be in the same units as used by the Shapefile. You could use a\n"
22640 " very large negative number to plot everything, but you can improve\n"
22641 " performance by limiting the area drawn. The units must match those\n"
22642 " of the Shapefile projection, which may be for example latitude or\n"
22643 " distance. The value of miny must be less than the value of maxy.\n"
22645 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22646 " use a very large number to plot everything, but you can improve\n"
22647 " performance by limiting the area drawn.\n"
22649 " plotentry (PLINT, input) : An integer indicating which text string\n"
22650 " of the Shapefile (zero indexed) will be drawn.\n"
22654 "Plot all or a subset of Shapefile data, filling the polygons\n"
22658 " As per plmapline, however the items are filled in the same way as\n"
22661 " Redacted form: plmapfill(mapform, name, minx, maxx, miny, maxy,\n"
22664 " This function is used in example 19.\n"
22670 "plmapfill(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22674 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22675 " transform the coordinates given in the shapefile into a plot\n"
22676 " coordinate system. By using this transform, we can change from a\n"
22677 " longitude, latitude coordinate to a polar stereographic project,\n"
22678 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22679 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22680 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22681 " plot coordinates. If no transform is desired, mapform can be\n"
22682 " replaced by NULL.\n"
22684 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22685 " the file name of a set of Shapefile files without the file\n"
22688 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22689 " be in the same units as used by the Shapefile. You could use a\n"
22690 " very large negative number to plot everything, but you can improve\n"
22691 " performance by limiting the area drawn. The units must match those\n"
22692 " of the Shapefile projection, which may be for example longitude or\n"
22693 " distance. The value of minx must be less than the value of maxx.\n"
22695 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22696 " use a very large number to plot everything, but you can improve\n"
22697 " performance by limiting the area drawn.\n"
22699 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22700 " be in the same units as used by the Shapefile. You could use a\n"
22701 " very large negative number to plot everything, but you can improve\n"
22702 " performance by limiting the area drawn. The units must match those\n"
22703 " of the Shapefile projection, which may be for example latitude or\n"
22704 " distance. The value of miny must be less than the value of maxy.\n"
22706 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22707 " use a very large number to plot everything, but you can improve\n"
22708 " performance by limiting the area drawn.\n"
22710 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22711 " zero-based indices of the Shapefile elements which will be drawn.\n"
22713 " plotentries to NULL will plot all elements of the Shapefile.\n"
22715 " nplotentries (PLINT, input) : The number of items in\n"
22716 " plotentries. Ignored if\n"
22717 " plotentries is NULL.\n"
22721 "Plot latitude and longitude lines\n"
22725 " Displays latitude and longitude on the current plot. The lines are\n"
22726 " plotted in the current color and line style.\n"
22728 " Redacted form: plmeridians(mapform, dlong, dlat, minlong, maxlong,\n"
22729 " minlat, maxlat)\n"
22731 " This function is used in example 19.\n"
22737 "plmeridians(mapform, dlong, dlat, minlong, maxlong, minlat, maxlat)\n"
22741 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22742 " transform the coordinate longitudes and latitudes to a plot\n"
22743 " coordinate system. By using this transform, we can change from a\n"
22744 " longitude, latitude coordinate to a polar stereographic project,\n"
22745 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22746 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22747 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22748 " plot coordinates. If no transform is desired, mapform can be\n"
22749 " replaced by NULL.\n"
22751 " dlong (PLFLT, input) : The interval in degrees at which the\n"
22752 " longitude lines are to be plotted.\n"
22754 " dlat (PLFLT, input) : The interval in degrees at which the latitude\n"
22755 " lines are to be plotted.\n"
22757 " minlong (PLFLT, input) : The value of the longitude on the left\n"
22758 " side of the plot. The value of minlong must be less than the value\n"
22759 " of maxlong, and the quantity maxlong-minlong must be less than or\n"
22762 " maxlong (PLFLT, input) : The value of the longitude on the right\n"
22763 " side of the plot.\n"
22765 " minlat (PLFLT, input) : The minimum latitude to be plotted on the\n"
22766 " background. One can always use -90.0 as the boundary outside the\n"
22767 " plot window will be automatically eliminated. However, the\n"
22768 " program will be faster if one can reduce the size of the\n"
22769 " background plotted.\n"
22771 " maxlat (PLFLT, input) : The maximum latitudes to be plotted on the\n"
22772 " background. One can always use 90.0 as the boundary outside the\n"
22773 " plot window will be automatically eliminated.\n"
22777 "Plot a 2D matrix using cmap1 with automatic color adjustment\n"
22781 " Plot a 2D matrix using the cmap1 palette. The color scale is\n"
22782 " automatically adjusted to use the maximum and minimum values in idata\n"
22783 " as valuemin and valuemax in a call to plimagefr.\n"
22785 " Redacted form: General: plimage(idata, xmin, xmax, ymin, ymax, zmin,\n"
22786 " zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22789 " This function is used in example 20.\n"
22795 "plimage(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22799 " idata (PLFLT_MATRIX, input) : A matrix containing function values\n"
22800 " to plot. Should have dimensions of\n"
22804 " nx, ny (PLINT, input) : Dimensions of idata\n"
22806 " xmin, xmax, ymin, ymax (PLFLT, input) : The x and y index ranges\n"
22807 " are linearly transformed to these world coordinate ranges such\n"
22808 " that idata[0][0] corresponds to (xmin, ymin) and idata[nx - 1][ny\n"
22809 " - 1] corresponds to (xmax, ymax).\n"
22811 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22812 " (inclusive) will be plotted.\n"
22814 " Dxmin, Dxmax, Dymin, Dymax (PLFLT, input) : Plot only the window of\n"
22815 " points whose plot coordinates fall inside the window of (Dxmin,\n"
22816 " Dymin) to (Dxmax, Dymax).\n"
22820 "Plot a 2D matrix using cmap1\n"
22824 " Plot a 2D matrix using cmap1.\n"
22826 " Redacted form: General: plimagefr(idata, xmin, xmax, ymin, ymax, zmin,\n"
22827 " zmax, valuemin, valuemax, pltr, pltr_data)\n"
22830 " This function is used in example 20.\n"
22836 "plimagefr(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data)\n"
22840 " idata (PLFLT_MATRIX, input) : A matrix of values (intensities) to\n"
22841 " plot. Should have dimensions of\n"
22845 " nx, ny (PLINT, input) : Dimensions of idata\n"
22847 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
22848 " pltr below for how these arguments are used (only for the special case\n"
22849 " when the callback function\n"
22850 " pltr is not supplied).\n"
22852 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22853 " (inclusive) will be plotted.\n"
22855 " valuemin, valuemax (PLFLT, input) : The minimum and maximum data\n"
22856 " values to use for value to color mappings. A datum equal to or\n"
22857 " less than valuemin will be plotted with color 0.0, while a datum\n"
22858 " equal to or greater than valuemax will be plotted with color 1.0.\n"
22859 " Data between valuemin and valuemax map linearly to colors in the\n"
22860 " range (0.0-1.0).\n"
22862 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22863 " defines the transformation between the zero-based indices of the\n"
22864 " matrix idata and world coordinates. If\n"
22865 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
22866 " indices of idata are mapped to the range\n"
22868 " xmax and the y indices of idata are mapped to the range\n"
22870 " ymax.For the C case, transformation functions are provided in the\n"
22871 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
22872 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
22873 " matrices. In addition, C callback routines for the transformation\n"
22874 " can be supplied by the user such as the mypltr function in\n"
22875 " examples/c/x09c.c which provides a general linear transformation\n"
22876 " between index coordinates and world coordinates.For languages\n"
22877 " other than C you should consult the PLplot documentation for the\n"
22878 " details concerning how PLTRANSFORM_callback arguments are\n"
22879 " interfaced. However, in general, a particular pattern of\n"
22880 " callback-associated arguments such as a tr vector with 6 elements;\n"
22881 " xg and yg vectors; or xg and yg matrices are respectively\n"
22882 " interfaced to a linear-transformation routine similar to the above\n"
22883 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22884 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22885 " support native language callbacks for handling index to\n"
22886 " world-coordinate transformations. Examples of these various\n"
22887 " approaches are given in examples/<language>x09*,\n"
22888 " examples/<language>x16*, examples/<language>x20*,\n"
22889 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22890 " supported languages.\n"
22892 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22893 " information to pltr0, pltr1, pltr2, or whatever routine is\n"
22894 " externally supplied.\n"
22903 "Wait for graphics input event and translate to world coordinates.\n"
22907 " Wait for graphics input event and translate to world coordinates.\n"
22908 " Returns 0 if no translation to world coordinates is possible.\n"
22910 " This function returns 1 on success and 0 if no translation to world\n"
22911 " coordinates is possible.\n"
22913 " Redacted form: plGetCursor(gin)\n"
22915 " This function is used in examples 1 and 20.\n"
22921 "PLINT plGetCursor(gin)\n"
22925 " gin (PLGraphicsIn *, output) : Pointer to PLGraphicsIn structure\n"
22926 " which will contain the output. The structure is not allocated by\n"
22927 " the routine and must exist before the function is called.\n"
22930 { NULL, NULL, 0, NULL }
23004{0, 0, 0, 0.0, 0, 0}};
23058#define SWIGRUNTIME_DEBUG
23061#ifndef SWIG_INIT_CLIENT_DATA_TYPE
23062#define SWIG_INIT_CLIENT_DATA_TYPE void *
23084 if (!module_head) {
23097 }
while (iter!= module_head);
23108 if (init == 0)
return;
23111#ifdef SWIGRUNTIME_DEBUG
23112 printf(
"SWIG_InitializeModule: size %lu\n", (
unsigned long)
swig_module.size);
23119#ifdef SWIGRUNTIME_DEBUG
23120 printf(
"SWIG_InitializeModule: type %lu %s\n", (
unsigned long)i,
swig_module.type_initial[i]->name);
23129#ifdef SWIGRUNTIME_DEBUG
23130 printf(
"SWIG_InitializeModule: found type %s\n", type->name);
23133 type->clientdata =
swig_module.type_initial[i]->clientdata;
23134#ifdef SWIGRUNTIME_DEBUG
23135 printf(
"SWIG_InitializeModule: found and overwrite type %s \n", type->name);
23144 while (cast->
type) {
23147#ifdef SWIGRUNTIME_DEBUG
23148 printf(
"SWIG_InitializeModule: look cast %s\n", cast->
type->
name);
23152#ifdef SWIGRUNTIME_DEBUG
23153 if (ret) printf(
"SWIG_InitializeModule: found cast %s\n", ret->name);
23158#ifdef SWIGRUNTIME_DEBUG
23159 printf(
"SWIG_InitializeModule: skip old type %s\n", ret->name);
23166#ifdef SWIGRUNTIME_DEBUG
23167 if (ocast) printf(
"SWIG_InitializeModule: skip old cast %s\n", ret->name);
23169 if (!ocast) ret = 0;
23174#ifdef SWIGRUNTIME_DEBUG
23175 printf(
"SWIG_InitializeModule: adding cast %s\n", cast->
type->
name);
23178 type->cast->prev = cast;
23179 cast->
next = type->cast;
23190#ifdef SWIGRUNTIME_DEBUG
23191 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23195 printf(
"SWIG_InitializeModule: type %lu %s\n", (
unsigned long)i,
swig_module.type_initial[i]->name);
23196 while (cast->
type) {
23197 printf(
"SWIG_InitializeModule: cast type %s\n", cast->
type->
name);
23201 printf(
"---- Total casts: %d\n",j);
23203 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23216 static int init_run = 0;
23218 if (init_run)
return;
23225 if (!equiv->converter) {
23226 if (equiv->type && !equiv->type->clientdata)
23229 equiv = equiv->next;
23258 for (i = 0; constants[i].type; ++i) {
23259 switch(constants[i].type) {
23264 obj =
SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
23271 PyDict_SetItemString(d, constants[i].
name, obj);
23284 for (i = 0; methods[i].ml_name; ++i) {
23285 const char *c = methods[i].ml_doc;
23287 c = strstr(c,
"swig_ptr: ");
23291 const char *
name = c + 10;
23292 for (j = 0; const_table[j].type; ++j) {
23293 if (strncmp(const_table[j].
name,
name,
23294 strlen(const_table[j].
name)) == 0) {
23295 ci = &(const_table[j]);
23302 size_t shift = (ci->ptype) - types;
23304 size_t ldoc = (c - methods[i].ml_doc);
23305 size_t lptr = strlen(ty->
name)+2*
sizeof(
void*)+2;
23306 char *ndoc = (
char*)malloc(ldoc + lptr + 10);
23309 memcpy(buff, methods[i].ml_doc, ldoc);
23311 memcpy(buff,
"swig_ptr: ", 10);
23314 methods[i].ml_doc = ndoc;
23338#if PY_VERSION_HEX >= 0x03000000
23344 PyObject *m, *d, *md, *globals;
23346#if PY_VERSION_HEX >= 0x03000000
23347 static struct PyModuleDef SWIG_module = {
23348 PyModuleDef_HEAD_INIT,
23360#if defined(SWIGPYTHON_BUILTIN)
23362 0, 0, 0, 0, 0, 0, 0
23364 static PyGetSetDef this_getset_def = {
23365 (
char *)
"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
23367 static SwigPyGetSet thisown_getset_closure = {
23371 static PyGetSetDef thisown_getset_def = {
23372 (
char *)
"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
23374 PyTypeObject *builtin_pytype;
23375 int builtin_base_count;
23378 PyGetSetDescrObject *static_getset;
23379 PyTypeObject *metatype;
23380 PyTypeObject *swigpyobject;
23382 PyObject *public_interface, *public_symbol;
23383 PyObject *this_descr;
23384 PyObject *thisown_descr;
23385 PyObject *self = 0;
23388 (void)builtin_pytype;
23389 (void)builtin_base_count;
23390 (void)builtin_basetype;
23392 (void)static_getset;
23396 metatype = SwigPyObjectType();
23406#ifndef SWIGPYTHON_BUILTIN
23413#if PY_VERSION_HEX >= 0x03000000
23414 m = PyModule_Create(&SWIG_module);
23419 md = d = PyModule_GetDict(m);
23424#ifdef SWIGPYTHON_BUILTIN
23428 assert(SwigPyObject_stype);
23431 SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
23432 SwigPyObject_clientdata.pytype = swigpyobject;
23433 }
else if (swigpyobject->tp_basicsize != cd->pytype->tp_basicsize) {
23434 PyErr_SetString(PyExc_RuntimeError,
"Import error: attempted to load two incompatible swig-generated modules.");
23435# if PY_VERSION_HEX >= 0x03000000
23448 (void)thisown_descr;
23450 public_interface = PyList_New(0);
23452 (void)public_symbol;
23454 PyDict_SetItemString(md,
"__all__", public_interface);
23455 Py_DECREF(public_interface);
23457 SwigPyBuiltin_AddPublicSymbol(public_interface,
SwigMethods[i].ml_name);
23652#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)
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[]
#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 * SWIG_Python_AppendOutput(PyObject *result, PyObject *obj)
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