10#define SWIG_VERSION 0x040300
12#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
14#define SWIG_name "_plplotc"
21#ifndef SWIGTEMPLATEDISAMBIGUATOR
22# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
23# define SWIGTEMPLATEDISAMBIGUATOR template
24# elif defined(__HP_aCC)
27# define SWIGTEMPLATEDISAMBIGUATOR template
29# define SWIGTEMPLATEDISAMBIGUATOR
35# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
36# define SWIGINLINE inline
45# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
46# define SWIGUNUSED __attribute__ ((__unused__))
51# define SWIGUNUSED __attribute__ ((__unused__))
57#ifndef SWIG_MSC_UNSUPPRESS_4505
59# pragma warning(disable : 4505)
65# define SWIGUNUSEDPARM(p)
67# define SWIGUNUSEDPARM(p) p SWIGUNUSED
73# define SWIGINTERN static SWIGUNUSED
77#ifndef SWIGINTERNINLINE
78# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
83# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
84# ifndef GCC_HASCLASSVISIBILITY
85# define GCC_HASCLASSVISIBILITY
91# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
92# if defined(STATIC_LINKED)
95# define SWIGEXPORT __declspec(dllexport)
98# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
99# define SWIGEXPORT __attribute__ ((visibility("default")))
108# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
109# define SWIGSTDCALL __stdcall
116#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
117# define _CRT_SECURE_NO_DEPRECATE
121#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
122# define _SCL_SECURE_NO_DEPRECATE
126#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
127# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
135#ifdef __INTEL_COMPILER
136# pragma warning disable 592
139#if defined(__cplusplus) && __cplusplus >=201103L
140# define SWIG_NULLPTR nullptr
142# define SWIG_NULLPTR NULL
158#if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
159 (defined __cplusplus && __cplusplus >= 201103L) || \
160 defined SWIG_HAVE_SNPRINTF) && \
161 !defined SWIG_NO_SNPRINTF
162# define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
163# define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
169# define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
170# define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
174#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
179#if !defined(PY_SSIZE_T_CLEAN) && !defined(SWIG_NO_PY_SSIZE_T_CLEAN)
180#define PY_SSIZE_T_CLEAN
184#pragma GCC diagnostic push
185#if defined(__cplusplus) && __cplusplus >=201703L
186#pragma GCC diagnostic ignored "-Wregister"
190#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
193#if defined(_MSC_VER) && _MSC_VER >= 1929
206#if !defined(SWIGPYTHON_BUILTIN) && PY_VERSION_HEX >= 0x03030000
207# define SWIG_HEAPTYPES
211# if PY_VERSION_HEX < 0x030c0000 && defined(SWIGPYTHON_BUILTIN)
212# include <structmember.h>
213# define Py_READONLY READONLY
214# define Py_T_PYSSIZET T_PYSSIZET
219#pragma GCC diagnostic pop
234#define SWIG_RUNTIME_VERSION "4"
237#ifdef SWIG_TYPE_TABLE
238# define SWIG_QUOTE_STRING(x) #x
239# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
240# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
242# define SWIG_TYPE_TABLE_NAME
255# define SWIGRUNTIME SWIGINTERN
258#ifndef SWIGRUNTIMEINLINE
259# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
263#ifndef SWIG_BUFFER_SIZE
264# define SWIG_BUFFER_SIZE 1024
268#define SWIG_POINTER_DISOWN 0x1
269#define SWIG_CAST_NEW_MEMORY 0x2
270#define SWIG_POINTER_NO_NULL 0x4
271#define SWIG_POINTER_CLEAR 0x8
272#define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
275#define SWIG_POINTER_OWN 0x1
359#define SWIG_ERROR (-1)
363#define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
365#define SWIG_IsOK(r) (r >= 0)
366#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
369#define SWIG_CASTRANKLIMIT (1 << 8)
371#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
373#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
375#define SWIG_BADOBJ (SWIG_ERROR)
376#define SWIG_OLDOBJ (SWIG_OK)
377#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
378#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
380#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
381#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
382#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
383#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
384#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
385#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
388#if defined(SWIG_CASTRANK_MODE)
389# ifndef SWIG_TypeRank
390# define SWIG_TypeRank unsigned long
392# ifndef SWIG_MAXCASTRANK
393# define SWIG_MAXCASTRANK (2)
395# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
396# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
401 return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
404# define SWIG_AddCast(r) (r)
405# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
415typedef void *(*swig_converter_func)(
void *,
int *);
457 const char *f2,
const char *l2) {
458 for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
459 while ((*f1 ==
' ') && (f1 != l1)) ++f1;
460 while ((*f2 ==
' ') && (f2 != l2)) ++f2;
461 if (*f1 != *f2)
return (*f1 > *f2) ? 1 : -1;
463 return (
int)((l1 - f1) - (l2 - f2));
473 const char* te = tb + strlen(tb);
475 while (equiv != 0 && *ne) {
476 for (nb = ne; *ne; ++ne) {
477 if (*ne ==
'|')
break;
502 if (strcmp(iter->
type->
name, c) == 0) {
503 if (iter == ty->
cast)
529 if (iter->
type == from) {
530 if (iter == ty->
cast)
562 if (!ty || !ty->
dcast)
return ty;
563 while (ty && (ty->
dcast)) {
564 ty = (*ty->
dcast)(ptr);
588 if (!type)
return NULL;
589 if (type->str != NULL) {
590 const char *last_name = type->str;
592 for (s = type->str; *s; s++)
593 if (*s ==
'|') last_name = s+1;
641 size_t r = iter->
size - 1;
644 size_t i = (l + r) >> 1;
645 const char *iname = iter->
types[i]->
name;
647 int compare = strcmp(
name, iname);
649 return iter->
types[i];
650 }
else if (compare < 0) {
656 }
else if (compare > 0) {
665 }
while (iter != end);
692 for (; i < iter->
size; ++i) {
694 return iter->
types[i];
697 }
while (iter != end);
709 static const char hex[17] =
"0123456789abcdef";
710 const unsigned char *u = (
unsigned char *) ptr;
711 const unsigned char *eu = u + sz;
712 for (; u != eu; ++u) {
713 unsigned char uu = *u;
714 *(c++) = hex[(uu & 0xf0) >> 4];
715 *(c++) = hex[uu & 0xf];
725 unsigned char *u = (
unsigned char *) ptr;
726 const unsigned char *eu = u + sz;
727 for (; u != eu; ++u) {
730 if ((d >=
'0') && (d <=
'9'))
731 uu = (
unsigned char)((d -
'0') << 4);
732 else if ((d >=
'a') && (d <=
'f'))
733 uu = (
unsigned char)((d - (
'a'-10)) << 4);
737 if ((d >=
'0') && (d <=
'9'))
738 uu |= (
unsigned char)(d -
'0');
739 else if ((d >=
'a') && (d <=
'f'))
740 uu |= (
unsigned char)(d - (
'a'-10));
754 if ((2*
sizeof(
void *) + 2) > bsz)
return 0;
757 if (strlen(
name) + 1 > (bsz - (r - buff)))
return 0;
765 if (strcmp(c,
"NULL") == 0) {
778 size_t lname = (
name ? strlen(
name) : 0);
779 if ((2*sz + 2 + lname) > bsz)
return 0;
783 strncpy(r,
name,lname+1);
793 if (strcmp(c,
"NULL") == 0) {
808#define SWIG_UnknownError -1
809#define SWIG_IOError -2
810#define SWIG_RuntimeError -3
811#define SWIG_IndexError -4
812#define SWIG_TypeError -5
813#define SWIG_DivisionByZero -6
814#define SWIG_OverflowError -7
815#define SWIG_SyntaxError -8
816#define SWIG_ValueError -9
817#define SWIG_SystemError -10
818#define SWIG_AttributeError -11
819#define SWIG_MemoryError -12
820#define SWIG_NullReferenceError -13
824#if PY_VERSION_HEX >= 0x03000000
826#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
827#define PyInt_Check(x) PyLong_Check(x)
828#define PyInt_AsLong(x) PyLong_AsLong(x)
829#define PyInt_FromLong(x) PyLong_FromLong(x)
830#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
831#define PyString_Check(name) PyBytes_Check(name)
832#define PyString_FromString(x) PyUnicode_FromString(x)
833#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
834#define PyString_AsString(str) PyBytes_AsString(str)
835#define PyString_Size(str) PyBytes_Size(str)
836#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
837#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
838#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
844#if PY_VERSION_HEX >= 0x03000000
845# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
847# define SWIG_Python_str_FromFormat PyString_FromFormat
855#if PY_VERSION_HEX >= 0x03030000
856# if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
858 return PyUnicode_AsUTF8AndSize(str, psize);
861 *pbytes = PyUnicode_AsUTF8String(str);
862 chars = *pbytes ? PyBytes_AsString(*pbytes) : NULL;
864 *psize = PyBytes_Size(*pbytes);
870 PyString_AsStringAndSize(str, &chars, psize);
878#if PY_VERSION_HEX >= 0x03000000
879 return PyUnicode_FromString(c);
881 return PyString_FromString(c);
886# define SWIGPY_USE_CAPSULE
887#ifdef SWIGPYTHON_BUILTIN
888# define SWIGPY_CAPSULE_ATTR_NAME "type_pointer_capsule_builtin" SWIG_TYPE_TABLE_NAME
890# define SWIGPY_CAPSULE_ATTR_NAME "type_pointer_capsule" SWIG_TYPE_TABLE_NAME
892# define SWIGPY_CAPSULE_NAME ("swig_runtime_data" SWIG_RUNTIME_VERSION "." SWIGPY_CAPSULE_ATTR_NAME)
894#if PY_VERSION_HEX < 0x03020000
895#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
896#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
897#define Py_hash_t long
901# define PyTuple_GET_ITEM PyTuple_GetItem
904# define PyTuple_SET_ITEM PyTuple_SetItem
905# define PyTuple_GET_SIZE PyTuple_Size
906# define PyCFunction_GET_FLAGS PyCFunction_GetFlags
907# define PyCFunction_GET_FUNCTION PyCFunction_GetFunction
908# define PyCFunction_GET_SELF PyCFunction_GetSelf
909# define PyList_GET_ITEM PyList_GetItem
910# define PyList_SET_ITEM PyList_SetItem
911# define PySliceObject PyObject
916# define SWIG_Py_INCREF Py_IncRef
917# define SWIG_Py_XINCREF Py_IncRef
918# define SWIG_Py_DECREF Py_DecRef
919# define SWIG_Py_XDECREF Py_DecRef
921# define SWIG_Py_INCREF Py_INCREF
922# define SWIG_Py_XINCREF Py_XINCREF
923# define SWIG_Py_DECREF Py_DECREF
924# define SWIG_Py_XDECREF Py_XDECREF
936 type = PyExc_MemoryError;
939 type = PyExc_IOError;
942 type = PyExc_RuntimeError;
945 type = PyExc_IndexError;
948 type = PyExc_TypeError;
951 type = PyExc_ZeroDivisionError;
954 type = PyExc_OverflowError;
957 type = PyExc_SyntaxError;
960 type = PyExc_ValueError;
963 type = PyExc_SystemError;
966 type = PyExc_AttributeError;
969 type = PyExc_TypeError;
972 type = PyExc_RuntimeError;
983 PyObject *traceback = 0;
985 if (PyErr_Occurred())
986 PyErr_Fetch(&type, &
value, &traceback);
988 PyObject *old_str = PyObject_Str(
value);
989 PyObject *bytes = NULL;
994 PyErr_Format(type,
"%s %s", tmp, mesg);
996 PyErr_Format(type,
"%s", mesg);
1001 PyErr_SetString(PyExc_RuntimeError, mesg);
1011 error = PyErr_Occurred();
1012 return error && PyErr_GivenExceptionMatches(
error, PyExc_TypeError);
1021 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
1022 PyErr_Fetch(&type, &
value, &traceback);
1023#if PY_VERSION_HEX >= 0x03000000
1024 newvalue = PyUnicode_FromFormat(
"%S\nAdditional information:\n%s",
value, message);
1026 newvalue = PyString_FromFormat(
"%s\nAdditional information:\n%s", PyString_AsString(
value), message);
1030 PyErr_Restore(type, newvalue, traceback);
1032 PyErr_Restore(type,
value, traceback);
1036 PyErr_SetString(PyExc_TypeError, message);
1040#if defined(SWIG_PYTHON_NO_THREADS)
1041# if defined(SWIG_PYTHON_THREADS)
1042# undef SWIG_PYTHON_THREADS
1045#if defined(SWIG_PYTHON_THREADS)
1046# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
1047# define SWIG_PYTHON_USE_GIL
1049# if defined(SWIG_PYTHON_USE_GIL)
1050# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1051# if PY_VERSION_HEX < 0x03070000
1052# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
1054# define SWIG_PYTHON_INITIALIZE_THREADS
1058 class SWIG_Python_Thread_Block {
1060 PyGILState_STATE state;
1062 void end() {
if (status) { PyGILState_Release(state); status =
false;} }
1063 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
1064 ~SWIG_Python_Thread_Block() { end(); }
1066 class SWIG_Python_Thread_Allow {
1068 PyThreadState *save;
1070 void end() {
if (status) { status =
false; PyEval_RestoreThread(save); }}
1071 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
1072 ~SWIG_Python_Thread_Allow() { end(); }
1074# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
1075# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
1076# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
1077# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
1079# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
1080# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
1081# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
1082# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
1085# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
1086# define SWIG_PYTHON_INITIALIZE_THREADS
1088# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
1089# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1091# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
1092# define SWIG_PYTHON_THREAD_END_BLOCK
1094# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
1095# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1097# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
1098# define SWIG_PYTHON_THREAD_END_ALLOW
1102# define SWIG_PYTHON_INITIALIZE_THREADS
1103# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
1104# define SWIG_PYTHON_THREAD_END_BLOCK
1105# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
1106# define SWIG_PYTHON_THREAD_END_ALLOW
1122#define SWIG_PY_POINTER 4
1123#define SWIG_PY_BINARY 5
1149#if PY_VERSION_HEX < 0x02070000
1150# error "This version of SWIG only supports Python >= 2.7"
1153#if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03030000
1154# error "This version of SWIG only supports Python 3 >= 3.3"
1160#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
1161#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
1162#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
1164#ifdef SWIGPYTHON_BUILTIN
1165#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
1167#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1170#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
1172#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
1173#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
1174#define swig_owntype int
1177#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1178#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1181#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1182#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1185#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1186#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
1189#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1190#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1195#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
1196#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1197#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
1199#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1200#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1201#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1202#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1203#define SWIG_fail goto fail
1213 PyErr_SetObject(errtype, obj);
1221 PyErr_SetString(errtype, msg);
1225#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1229#if defined(SWIGPYTHON_BUILTIN)
1232SwigPyBuiltin_AddPublicSymbol(PyObject *seq,
const char *key) {
1233 PyObject *s = PyString_InternFromString(key);
1234 PyList_Append(seq, s);
1240 PyDict_SetItemString(d,
name, obj);
1242 if (public_interface)
1243 SwigPyBuiltin_AddPublicSymbol(public_interface,
name);
1250 PyDict_SetItemString(d,
name, obj);
1262 }
else if (result == Py_None && is_void) {
1266 if (!PyList_Check(result)) {
1267 PyObject *o2 = result;
1268 result = PyList_New(1);
1270 PyList_SET_ITEM(result, 0, o2);
1276 PyList_Append(result,obj);
1291 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got none",
1296 if (!PyTuple_Check(args)) {
1300 for (i = 1; i <
max; ++i) {
1305 PyErr_SetString(PyExc_SystemError,
"UnpackTuple() argument list is not a tuple");
1308 Py_ssize_t l = PyTuple_GET_SIZE(args);
1310 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1313 }
else if (l >
max) {
1314 PyErr_Format(PyExc_TypeError,
"%s expected %s%d arguments, got %d",
1319 for (i = 0; i < l; ++i) {
1320 objs[i] = PyTuple_GET_ITEM(args, i);
1322 for (; l <
max; ++l) {
1334 assert(PyDict_Check(kwargs));
1335 if (PyDict_Size(kwargs) > 0) {
1336 PyErr_Format(PyExc_TypeError,
"%s() does not take keyword arguments",
name);
1344#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1351#define SWIG_STATIC_POINTER(var) var
1353#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1361#define SWIG_newvarlink() SWIG_Python_newvarlink()
1362#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
1363#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
1371 PyObject *(*get_attr)(void);
1383#if PY_VERSION_HEX >= 0x03000000
1384 return PyUnicode_InternFromString(
"<Swig global variables>");
1386 return PyString_FromString(
"<Swig global variables>");
1393#if PY_VERSION_HEX >= 0x03000000
1394 PyObject *str = PyUnicode_InternFromString(
"(");
1398 for (var = v->
vars; var; var=var->
next) {
1399 tail = PyUnicode_FromString(var->
name);
1400 joined = PyUnicode_Concat(str,
tail);
1405 tail = PyUnicode_InternFromString(
", ");
1406 joined = PyUnicode_Concat(str,
tail);
1412 tail = PyUnicode_InternFromString(
")");
1413 joined = PyUnicode_Concat(str,
tail);
1418 PyObject *str = PyString_FromString(
"(");
1420 for (var = v->
vars; var; var=var->
next) {
1421 PyString_ConcatAndDel(&str,PyString_FromString(var->
name));
1422 if (var->
next) PyString_ConcatAndDel(&str,PyString_FromString(
", "));
1424 PyString_ConcatAndDel(&str,PyString_FromString(
")"));
1444 PyObject *res = NULL;
1447 if (strcmp(var->
name,n) == 0) {
1453 if (res == NULL && !PyErr_Occurred()) {
1454 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1465 if (strcmp(var->
name,n) == 0) {
1471 if (res == 1 && !PyErr_Occurred()) {
1472 PyErr_Format(PyExc_AttributeError,
"Unknown C global variable '%s'", n);
1479 static char varlink__doc__[] =
"Swig var link object";
1480#ifndef SWIG_HEAPTYPES
1481 static PyTypeObject varlink_type;
1482 static int type_init = 0;
1484 const PyTypeObject tmp = {
1485#if PY_VERSION_HEX >= 0x03000000
1486 PyVarObject_HEAD_INIT(NULL, 0)
1488 PyObject_HEAD_INIT(NULL)
1495#if PY_VERSION_HEX < 0x030800b4
1519 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1522#if PY_VERSION_HEX >= 0x03040000
1525#if PY_VERSION_HEX >= 0x03080000
1528#if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
1531#if PY_VERSION_HEX >= 0x030c0000
1534#if PY_VERSION_HEX >= 0x030d00a4
1547 if (PyType_Ready(&varlink_type) < 0)
1550 return &varlink_type;
1552 PyType_Slot slots[] = {
1558 { Py_tp_doc, (
void *)varlink__doc__ },
1561 PyType_Spec spec = {
1568 return (PyTypeObject *)PyType_FromSpec(&spec);
1579 return ((PyObject*) result);
1587 size_t size = strlen(
name)+1;
1588 gv->
name = (
char *)malloc(size);
1619#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1620#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1622#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1624#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
1625#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
1636 PyObject *none = Py_None;
1657 int fail = data ? data->implicitconv : 0;
1659 PyErr_SetString(PyExc_TypeError,
"Implicit conversion is prohibited for explicit constructors.");
1666 PyObject *klass = data ? data->klass : 0;
1667 return (klass ? klass : PyExc_RuntimeError);
1682 if (PyClass_Check(obj)) {
1685 data->newargs = obj;
1687 data->newraw = PyObject_GetAttrString(data->klass,
"__new__");
1689 data->newargs = PyTuple_New(1);
1690 if (data->newargs) {
1692 PyTuple_SET_ITEM(data->newargs, 0, obj);
1701 data->newargs = obj;
1705 data->destroy = PyObject_GetAttrString(data->klass,
"__swig_destroy__");
1706 if (PyErr_Occurred()) {
1710 if (data->destroy) {
1711 data->delargs = !(PyCFunction_GET_FLAGS(data->destroy) & METH_O);
1715 data->implicitconv = 0;
1739#ifdef SWIGPYTHON_BUILTIN
1745#ifdef SWIGPYTHON_BUILTIN
1748SwigPyObject_get___dict__(PyObject *v, PyObject *
SWIGUNUSEDPARM(args))
1753 sobj->dict = PyDict_New();
1764 return PyLong_FromVoidPtr(v->
ptr);
1770 PyObject *res = NULL;
1771 PyObject *args = PyTuple_New(1);
1776 PyTuple_SET_ITEM(args, 0, val);
1779#if PY_VERSION_HEX >= 0x03000000
1780 res = PyUnicode_Format(ofmt,args);
1782 res = PyString_Format(ofmt,args);
1809 if (repr && v->
next) {
1812# if PY_VERSION_HEX >= 0x03000000
1813 PyObject *joined = PyUnicode_Concat(repr, nrep);
1818 PyString_ConcatAndDel(&repr,nrep);
1841 return (i < j) ? -1 : ((i > j) ? 1 : 0);
1848 PyObject* res = NULL;
1849 if (!PyErr_Occurred()) {
1850 if (op != Py_EQ && op != Py_NE) {
1852 return Py_NotImplemented;
1862#ifdef SWIGPYTHON_BUILTIN
1867 assert(SwigPyObject_stype);
1884 PyTypeObject *op_type = Py_TYPE(op);
1885#ifdef SWIGPYTHON_BUILTIN
1886 if (PyType_IsSubtype(op_type, target_tp))
1888 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1890# ifdef Py_LIMITED_API
1894 if (op_type == target_tp)
1896# ifdef Py_LIMITED_API
1897 tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
1900 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyObject");
1904 return (strcmp(op_type->tp_name,
"SwigPyObject") == 0);
1918 PyObject *next = sobj->
next;
1922 PyObject *destroy = data ? data->destroy : 0;
1934 PyObject *type = NULL, *
value = NULL, *traceback = NULL;
1935 PyErr_Fetch(&type, &
value, &traceback);
1937 if (data->delargs) {
1947 PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
1948 PyObject *mself = PyCFunction_GET_SELF(destroy);
1949 res = ((*meth)(mself, v));
1952 PyErr_WriteUnraisable(destroy);
1954 PyErr_Restore(type,
value, traceback);
1958#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1961 printf(
"swig/python detected a memory leak of type '%s', no destructor found.\n", (
name ?
name :
"unknown"));
1967#ifdef SWIGPYTHON_BUILTIN
1978 PyErr_SetString(PyExc_TypeError,
"Attempt to append a non SwigPyObject");
2019 if (!PyArg_UnpackTuple(args,
"own", 0, 1, &val)) {
2023 PyObject *obj = PyBool_FromLong(sobj->
own);
2025 if (PyObject_IsTrue(val)) {
2039 {
"own",
SwigPyObject_own, METH_VARARGS,
"returns/sets ownership of the pointer"},
2048 static char swigobject_doc[] =
"Swig object carries a C/C++ instance pointer";
2049#ifndef SWIG_HEAPTYPES
2050 static PyNumberMethods SwigPyObject_as_number = {
2055#
if PY_VERSION_HEX < 0x03000000
2071#
if PY_VERSION_HEX < 0x03000000
2075#if PY_VERSION_HEX < 0x03000000
2081#if PY_VERSION_HEX < 0x03000000
2085#if PY_VERSION_HEX >= 0x03050000
2086 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2087#elif PY_VERSION_HEX >= 0x03000000
2088 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2090 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2094 static PyTypeObject swigpyobject_type;
2095 static int type_init = 0;
2097 const PyTypeObject tmp = {
2098#if PY_VERSION_HEX >= 0x03000000
2099 PyVarObject_HEAD_INIT(NULL, 0)
2101 PyObject_HEAD_INIT(NULL)
2108#if PY_VERSION_HEX < 0x030800b4
2115#if PY_VERSION_HEX >= 0x03000000
2121 &SwigPyObject_as_number,
2127 PyObject_GenericGetAttr,
2158#
if PY_VERSION_HEX >= 0x03040000
2161#
if PY_VERSION_HEX >= 0x03080000
2164#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2167#
if PY_VERSION_HEX >= 0x030c0000
2170#
if PY_VERSION_HEX >= 0x030d00a4
2181 swigpyobject_type = tmp;
2183 if (PyType_Ready(&swigpyobject_type) != 0)
2186 return &swigpyobject_type;
2188 PyType_Slot slots[] = {
2191 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2192 { Py_tp_doc, (
void *)swigobject_doc },
2198 PyType_Spec spec = {
2202 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,
2205 return (PyTypeObject *)PyType_FromSpec(&spec);
2218#ifdef SWIGPYTHON_BUILTIN
2228 return (PyObject *)sobj;
2269 int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
2270 return s ? s : strncmp((
const char *)v->
pack, (
const char *)w->
pack, 2*v->
size);
2283#ifdef Py_LIMITED_API
2287 PyTypeObject* op_type = Py_TYPE(op);
2290#ifdef Py_LIMITED_API
2291 tp_name = PyObject_GetAttrString((PyObject *)op_type,
"__name__");
2294 cmp = PyUnicode_CompareWithASCIIString(tp_name,
"SwigPyPacked");
2298 return (strcmp(op_type->tp_name,
"SwigPyPacked") == 0);
2314 static char swigpacked_doc[] =
"Swig object carries a C/C++ instance pointer";
2315#ifndef SWIG_HEAPTYPES
2316 static PyTypeObject swigpypacked_type;
2317 static int type_init = 0;
2319 const PyTypeObject tmp = {
2320#if PY_VERSION_HEX>=0x03000000
2321 PyVarObject_HEAD_INIT(NULL, 0)
2323 PyObject_HEAD_INIT(NULL)
2330#if PY_VERSION_HEX < 0x030800b4
2337#if PY_VERSION_HEX>=0x03000000
2349 PyObject_GenericGetAttr,
2380#
if PY_VERSION_HEX >= 0x03040000
2383#
if PY_VERSION_HEX >= 0x03080000
2386#
if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000)
2389#
if PY_VERSION_HEX >= 0x030c0000
2392#
if PY_VERSION_HEX >= 0x030d00a4
2403 swigpypacked_type = tmp;
2405 if (PyType_Ready(&swigpypacked_type) != 0)
2408 return &swigpypacked_type;
2410 PyType_Slot slots[] = {
2414 { Py_tp_getattro, (
void *)PyObject_GenericGetAttr },
2415 { Py_tp_doc, (
void *)swigpacked_doc },
2418 PyType_Spec spec = {
2425 return (PyTypeObject *)PyType_FromSpec(&spec);
2434 void *pack = malloc(size);
2436 memcpy(pack, ptr, size);
2441 PyObject_Free((PyObject *)sobj);
2445 return (PyObject *) sobj;
2453 if (sobj->
size != size)
return 0;
2454 memcpy(ptr, sobj->
pack, size);
2478#if PY_VERSION_HEX>=0x03000000
2479#define SWIG_PYTHON_SLOW_GETSET_THIS
2490#ifdef SWIGPYTHON_BUILTIN
2492# ifdef PyWeakref_CheckProxy
2493 if (PyWeakref_CheckProxy(pyobj)) {
2494#if PY_VERSION_HEX >= 0x030d0000
2495 PyWeakref_GetRef(pyobj, &pyobj);
2498 pyobj = PyWeakref_GET_OBJECT(pyobj);
2509#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2510 if (PyInstance_Check(pyobj)) {
2511 obj = _PyInstance_Lookup(pyobj,
SWIG_This());
2513 PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
2514 if (dictptr != NULL) {
2515 PyObject *dict = *dictptr;
2516 obj = dict ? PyDict_GetItem(dict,
SWIG_This()) : 0;
2518#ifdef PyWeakref_CheckProxy
2519 if (PyWeakref_CheckProxy(pyobj)) {
2520 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
2524 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2528 if (PyErr_Occurred()) PyErr_Clear();
2534 obj = PyObject_GetAttr(pyobj,
SWIG_This());
2538 if (PyErr_Occurred()) PyErr_Clear();
2558 int oldown = sobj->
own;
2576 if (obj == Py_None && !implicit_conv) {
2588 void *vptr = sobj->
ptr;
2593 if (ptr) *ptr = vptr;
2613 if (ptr) *ptr = vptr;
2622 *own = *own | sobj->
own;
2632 if (implicit_conv) {
2634 if (data && !data->implicitconv) {
2635 PyObject *klass = data->klass;
2638 data->implicitconv = 1;
2640 data->implicitconv = 0;
2641 if (PyErr_Occurred()) {
2666 if (!
SWIG_IsOK(res) && obj == Py_None) {
2669 if (PyErr_Occurred())
2682 if (!PyCFunction_Check(obj)) {
2689#ifndef Py_LIMITED_API
2690 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
2692 PyObject* pystr_doc = PyObject_GetAttrString(obj,
"__doc__");
2693 PyObject *bytes = NULL;
2696 const char *desc = doc ? strstr(doc,
"swig_ptr: ") : 0;
2699#ifdef Py_LIMITED_API
2746 PyObject *newraw = data->newraw;
2748 inst = PyObject_Call(newraw, data->newargs, NULL);
2750#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2751 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2752 if (dictptr != NULL) {
2753 PyObject *dict = *dictptr;
2755 dict = PyDict_New();
2759 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2766 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2773#if PY_VERSION_HEX >= 0x03000000
2774 PyObject *empty_args = PyTuple_New(0);
2776 PyObject *empty_kwargs = PyDict_New();
2778#ifndef Py_LIMITED_API
2779 newfunc newfn = ((PyTypeObject *)data->newargs)->tp_new;
2781 newfunc newfn = (newfunc)PyType_GetSlot((PyTypeObject *)data->newargs, Py_tp_new);
2783 inst = newfn((PyTypeObject *)data->newargs, empty_args, empty_kwargs);
2786 if (PyObject_SetAttr(inst,
SWIG_This(), swig_this) == -1) {
2790 PyType_Modified(Py_TYPE(inst));
2797 PyObject *dict = PyDict_New();
2799 PyDict_SetItem(dict,
SWIG_This(), swig_this);
2800 inst = PyInstance_NewRaw(data->newargs, dict);
2811#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2812 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2813 if (dictptr != NULL) {
2814 PyObject *dict = *dictptr;
2816 dict = PyDict_New();
2820 return PyDict_SetItem(dict,
SWIG_This(), swig_this);
2826 return PyObject_SetAttr(inst,
SWIG_This(), swig_this);
2860 if (clientdata && clientdata->
pytype) {
2865#ifndef Py_LIMITED_API
2866 allocfunc alloc = clientdata->
pytype->tp_alloc;
2868 allocfunc alloc = (allocfunc)PyType_GetSlot(clientdata->
pytype, Py_tp_alloc);
2870 PyObject *next_self = alloc(clientdata->
pytype, 0);
2871 while (newobj->
next)
2873 newobj->
next = next_self;
2875#ifdef SWIGPYTHON_BUILTIN
2881#ifdef SWIGPYTHON_BUILTIN
2892 return (PyObject*) newobj;
2919#ifdef SWIG_LINK_RUNTIME
2920void *SWIG_ReturnGlobalTypeList(
void *);
2936#ifdef SWIG_LINK_RUNTIME
2937 static void *type_pointer = (
void *)0;
2939 if (!type_pointer) {
2940 type_pointer = SWIG_ReturnGlobalTypeList((
void *)0);
2944 if (PyErr_Occurred()) {
2946 type_pointer = (
void *)0;
2982#if PY_VERSION_HEX >= 0x03000000
2986 static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };
2987 PyObject *module = Py_InitModule(
"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
2990 if (pointer && module) {
3007 PyObject *obj = PyDict_GetItem(cache, key);
3015 obj = PyCapsule_New((
void*) descriptor, NULL, NULL);
3017 PyDict_SetItem(cache, key, obj);
3029#define SWIG_POINTER_EXCEPTION 0
3030#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
3031#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
3036 if (PyErr_Occurred()) {
3038 PyObject *
value = 0;
3039 PyObject *traceback = 0;
3040 PyErr_Fetch(&type, &
value, &traceback);
3042 PyObject *old_str = PyObject_Str(
value);
3043 PyObject *bytes = NULL;
3045 const char *errmesg = tmp ? tmp :
"Invalid error message";
3049 PyErr_Format(type,
"%s %s", mesg, errmesg);
3051 PyErr_Format(type,
"%s %s", errmesg, mesg);
3065 if (PyErr_Occurred()) {
3068 PyOS_snprintf(mesg,
sizeof(mesg),
"argument number %d:", argnum);
3080 return ty ? ty->
str :
"";
3088#if defined(SWIG_COBJECT_TYPES)
3092 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, 'SwigPyObject(%s)' is received",
3099#ifndef Py_LIMITED_API
3101 const char *otype = (obj ? obj->ob_type->tp_name : 0);
3103 PyObject *str = PyObject_Str(obj);
3104 PyObject *bytes = NULL;
3107 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s(%s)' is received",
3110 PyErr_Format(PyExc_TypeError,
"a '%s' is expected, '%s' is received",
3119 PyErr_Format(PyExc_TypeError,
"a '%s' is expected", type);
3121 PyErr_Format(PyExc_TypeError,
"unexpected type is received");
3136#ifdef SWIGPYTHON_BUILTIN
3138SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *
name, PyObject *
value) {
3139 PyTypeObject *tp = obj->ob_type;
3141 PyObject *encoded_name;
3145# ifdef Py_USING_UNICODE
3146 if (PyString_Check(
name)) {
3147 name = PyUnicode_Decode(PyString_AsString(
name), PyString_Size(
name), NULL, NULL);
3150 }
else if (!PyUnicode_Check(
name))
3152 if (!PyString_Check(
name))
3155 PyErr_Format(PyExc_TypeError,
"attribute name must be string, not '%.200s'",
name->ob_type->tp_name);
3162 if (PyType_Ready(tp) != 0)
3166 descr = _PyType_Lookup(tp,
name);
3169 f = descr->ob_type->tp_descr_set;
3171 if (PyString_Check(
name)) {
3172 encoded_name =
name;
3175 encoded_name = PyUnicode_AsUTF8String(
name);
3179 PyErr_Format(PyExc_AttributeError,
"'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
3182 res = f(descr, obj,
value);
3198#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
3200#define SWIG_contract_assert(expr, msg) do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
3206#define SWIGTYPE_p_PLGraphicsIn swig_types[0]
3207#define SWIGTYPE_p_PLcGrid swig_types[1]
3208#define SWIGTYPE_p_PLcGrid2 swig_types[2]
3209#define SWIGTYPE_p_char swig_types[3]
3210#define SWIGTYPE_p_double swig_types[4]
3211#define SWIGTYPE_p_f_double_double__int swig_types[5]
3212#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void swig_types[6]
3213#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void swig_types[7]
3214#define SWIGTYPE_p_f_int_p_double_p_double__void swig_types[8]
3215#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void swig_types[9]
3216#define SWIGTYPE_p_int swig_types[10]
3217#define SWIGTYPE_p_p_char swig_types[11]
3218#define SWIGTYPE_p_p_double swig_types[12]
3219#define SWIGTYPE_p_unsigned_int swig_types[13]
3222#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
3223#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
3227#ifdef SWIG_TypeQuery
3228# undef SWIG_TypeQuery
3230#define SWIG_TypeQuery SWIG_Python_TypeQuery
3235#if PY_VERSION_HEX >= 0x03000000
3236# define SWIG_init PyInit__plplotc
3239# define SWIG_init init_plplotc
3243#define SWIG_as_voidptr(a) (void *)((const void *)(a))
3244#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
3247#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
3248#include <arrayobject.h>
3252#define NPY_PLINT NPY_INT32
3255#define NPY_PLFLT NPY_FLOAT64
3257#define NPY_PLFLT NPY_FLOAT32
3261#if !defined ( PySequence_Fast_GET_ITEM )
3262 #define PySequence_Fast_GET_ITEM PySequence_GetItem
3264#define PySequence_Size PySequence_Length
3275 if (PyFloat_Check(obj)) {
3276 if (val) *val = PyFloat_AsDouble(obj);
3278#if PY_VERSION_HEX < 0x03000000
3279 }
else if (PyInt_Check(obj)) {
3280 if (val) *val = (double) PyInt_AsLong(obj);
3283 }
else if (PyLong_Check(obj)) {
3284 double v = PyLong_AsDouble(obj);
3285 if (!PyErr_Occurred()) {
3292#ifdef SWIG_PYTHON_CAST_MODE
3295 double d = PyFloat_AsDouble(obj);
3296 if (!PyErr_Occurred()) {
3303 long v = PyLong_AsLong(obj);
3304 if (!PyErr_Occurred()) {
3317 #define SWIG_From_double PyFloat_FromDouble
3332 return PyInt_FromLong((
long)
value);
3337#if !defined(SWIG_NO_LLONG_MAX)
3338# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
3339# define LLONG_MAX __LONG_LONG_MAX__
3340# define LLONG_MIN (-LLONG_MAX - 1LL)
3341# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
3355 if ((
min <= x && x <=
max)) {
3360 rd = ((x - fx) < 0.5) ? fx : cx;
3361 if ((errno == EDOM) || (errno == ERANGE)) {
3364 double summ, reps, diff;
3367 }
else if (rd > x) {
3374 if (reps < 8*DBL_EPSILON) {
3387#if PY_VERSION_HEX < 0x03000000
3388 if (PyInt_Check(obj)) {
3389 if (val) *val = PyInt_AsLong(obj);
3393 if (PyLong_Check(obj)) {
3394 long v = PyLong_AsLong(obj);
3395 if (!PyErr_Occurred()) {
3403#ifdef SWIG_PYTHON_CAST_MODE
3406 long v = PyInt_AsLong(obj);
3407 if (!PyErr_Occurred()) {
3419 const double long_max =
sizeof(long) == 8 ? 0x7ffffffffffffc00LL : LONG_MAX;
3422 if (val) *val = (long)(d);
3438 if ((v < INT_MIN || v > INT_MAX)) {
3441 if (val) *val = (int)(v);
3451#if PY_VERSION_HEX < 0x03000000
3452 if (PyInt_Check(obj)) {
3453 long v = PyInt_AsLong(obj);
3462 if (PyLong_Check(obj)) {
3463 unsigned long v = PyLong_AsUnsignedLong(obj);
3464 if (!PyErr_Occurred()) {
3472#ifdef SWIG_PYTHON_CAST_MODE
3475 unsigned long v = PyLong_AsUnsignedLong(obj);
3476 if (!PyErr_Occurred()) {
3488 const double ulong_max =
sizeof(
unsigned long) == 8 ? 0xfffffffffffff800ULL : ULONG_MAX;
3490 if (val) *val = (
unsigned long)(d);
3506 if ((v > UINT_MAX)) {
3509 if (val) *val = (
unsigned int)(v);
3519 return PyInt_FromSize_t((
size_t)
value);
3539#if PY_VERSION_HEX>=0x03000000
3540#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3541 if (PyBytes_Check(obj))
3543 if (PyUnicode_Check(obj))
3546 if (PyString_Check(obj))
3549 char *cstr; Py_ssize_t len;
3550 PyObject *bytes = NULL;
3554#if PY_VERSION_HEX>=0x03000000 && defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3555 if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1)
3562 if (bytes && cptr) {
3564 cstr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3572 if (cptr) *cptr = cstr;
3573 if (psize) *psize = len + 1;
3577#if defined(SWIG_PYTHON_2_UNICODE)
3578#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3579#error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once"
3581#if PY_VERSION_HEX<0x03000000
3582 if (PyUnicode_Check(obj)) {
3583 char *cstr; Py_ssize_t len;
3584 if (!alloc && cptr) {
3587 obj = PyUnicode_AsUTF8String(obj);
3590 if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) {
3593 *cptr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3595 if (psize) *psize = len + 1;
3607 if (pchar_descriptor) {
3610 if (cptr) *cptr = (
char *) vptr;
3611 if (psize) *psize = vptr ? (strlen((
char *)vptr) + 1) : 0;
3624 char* cptr = 0;
size_t csize = 0;
int alloc =
SWIG_OLDOBJ;
3628 if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize;
3629 if (csize <= size) {
3631 if (csize) memcpy(val, cptr, csize*
sizeof(
char));
3632 if (csize < size) memset(val + csize, 0, (size - csize)*
sizeof(
char));
3650 if (size > INT_MAX) {
3652 return pchar_descriptor ?
3655#if PY_VERSION_HEX >= 0x03000000
3656#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3657 return PyBytes_FromStringAndSize(carray, (Py_ssize_t)(size));
3659 return PyUnicode_DecodeUTF8(carray, (Py_ssize_t)(size),
"surrogateescape");
3662 return PyString_FromStringAndSize(carray, (Py_ssize_t)(size));
3675 for (p = s; maxlen-- && *p; p++)
3692 if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) {
3693 if (val) *val = (char)(v);
3711 PyArrayObject* tmp = (PyArrayObject *) PyArray_ContiguousFromObject( in,
NPY_PLINT,
3716 if ( PyArray_Check( in ) )
3719 tmp = (PyArrayObject *) PyArray_Cast( (PyArrayObject *) in,
NPY_PLINT );
3726#define myArray_ContiguousFromObject PyArray_ContiguousFromObject
3729 PyObject *resultobj = 0;
3743 PyObject *swig_obj[2] ;
3756 arg1 = (
PLFLT)(val1);
3761 arg2 = (
PLFLT)(val2);
3762 pltr0(arg1,arg2,arg3,arg4,arg5);
3797 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3806 PyErr_SetString( PyExc_ValueError,
"Expected a sequence to two 1D arrays." );
3815 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3823 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3845 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3854 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two 2D arrays." );
3860 PyErr_SetString( PyExc_ValueError,
"Arrays must be same size." );
3869 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3877 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3901 PyObject *resultobj = 0;
3915 PyObject *swig_obj[3] ;
3925 arg1 = (
PLFLT)(val1);
3930 arg2 = (
PLFLT)(val2);
3936 pltr1(arg1,arg2,arg3,arg4,arg5);
3963 PyObject *resultobj = 0;
3977 PyObject *swig_obj[3] ;
3987 arg1 = (
PLFLT)(val1);
3992 arg2 = (
PLFLT)(val2);
3998 pltr2(arg1,arg2,arg3,arg4,arg5);
4027 static PyInterpreterState *save_interp = NULL;
4037#define MY_BLOCK_THREADS { \
4038 PyThreadState *prev_state, *new_state; \
4041 PyEval_AcquireLock(); \
4042 new_state = PyThreadState_New( save_interp ); \
4043 prev_state = PyThreadState_Swap( new_state );
4044#define MY_UNBLOCK_THREADS \
4045 new_state = PyThreadState_Swap( prev_state ); \
4046 PyThreadState_Clear( new_state ); \
4047 PyEval_ReleaseLock(); \
4048 PyThreadState_Delete( new_state ); \
4051#define MY_BLOCK_THREADS
4052#define MY_UNBLOCK_THREADS
4075 PyObject *pdata, *arglist, *result;
4079 pdata = (PyObject *) data;
4086 Py_XINCREF( pdata );
4091 arglist = Py_BuildValue(
"(ddO)", x, y, pdata );
4093 arglist = Py_BuildValue(
"(ffO)", x, y, pdata );
4095 if ( arglist == NULL )
4097 fprintf( stderr,
"Py_BuildValue failed to make argument list.\n" );
4102 result = PyObject_CallObject(
python_pltr, arglist );
4104 Py_CLEAR( arglist );
4106 if ( result == NULL )
4108 fprintf( stderr,
"call to python pltr function with 3 arguments failed\n" );
4109 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must take 3 arguments." );
4115 if ( tmp == 0 || PyArray_DIMS( tmp )[0] != 2 )
4117 fprintf( stderr,
"pltr callback must return a 2 element array or sequence\n" );
4118 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must return a 2-sequence." );
4138 PyObject *pdata, *arglist, *result;
4139 PLFLT fresult = 0.0;
4142 pdata = (PyObject *) data;
4145 Py_XINCREF( pdata );
4149 arglist = Py_BuildValue(
"(iiO)", x, y, pdata );
4153 Py_CLEAR( arglist );
4155 if ( !PyFloat_Check( result ) )
4157 fprintf( stderr,
"f2eval callback must return a float\n" );
4158 PyErr_SetString( PyExc_RuntimeError,
"f2eval callback must return a float." );
4163 fresult = (
PLFLT) PyFloat_AsDouble( result );
4175 PyObject *pdata, *arglist, *result, *unicode_string;
4180 pdata = (PyObject *) data;
4185 Py_XINCREF( pdata );
4190 arglist = Py_BuildValue(
"(ldO)", axis,
value, pdata );
4192 arglist = Py_BuildValue(
"(lfO)", axis,
value, pdata );
4199 if ( result == NULL )
4201 fprintf( stderr,
"label callback failed with 3 arguments\n" );
4202 PyErr_SetString( PyExc_RuntimeError,
"label callback must take 3 arguments." );
4204 else if ( PyString_Check( result ) )
4207 pystring = PyString_AsString( result );
4208 strncpy(
string, pystring, len );
4210 else if ( PyUnicode_Check( result ) )
4213 unicode_string = PyUnicode_AsEncodedString( result,
"utf-8",
"Error ~" );
4214 pystring = PyBytes_AS_STRING( unicode_string );
4216 strncpy(
string, pystring, len );
4220 fprintf( stderr,
"label callback must return a string\n" );
4221 PyErr_SetString( PyExc_RuntimeError,
"label callback must return a string." );
4232 PyObject *px, *py, *pdata, *arglist, *result;
4237 pdata = (PyObject *) data;
4244 Py_XINCREF( pdata );
4248 px = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) xt );
4249 py = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) yt );
4250 arglist = Py_BuildValue(
"(ddOOO)", x, y, px, py, pdata );
4252 result = PyObject_CallObject(
python_ct, arglist );
4254 Py_CLEAR( arglist );
4259 if ( result == NULL )
4261 fprintf( stderr,
"call to python coordinate transform function with 5 arguments failed\n" );
4262 PyErr_SetString( PyExc_RuntimeError,
"coordinate transform callback must take 5 arguments." );
4273 PyObject *px, *py, *arglist, *result;
4284#ifdef PL_HAVE_PTHREAD
4285 px = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) x );
4286 py = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) y );
4288 px = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) x );
4289 py = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) y );
4291 arglist = Py_BuildValue(
"(iOO)", n, px, py );
4295 Py_CLEAR( arglist );
4299 if ( result == NULL )
4301 fprintf( stderr,
"call to python mapform function with 3 arguments failed\n" );
4302 PyErr_SetString( PyExc_RuntimeError,
"mapform callback must take 3 arguments." );
4315 PyObject * rep = PyObject_Repr( input );
4320 if ( PyUnicode_Check( rep ) )
4322 PyObject *uni_str = PyUnicode_AsEncodedString( rep,
"utf-8",
"Error ~" );
4323 str = PyBytes_AS_STRING( uni_str );
4327 str = PyString_AsString( rep );
4329 if ( strstr( str,
"function pltr0" ) != 0 )
4335 else if ( strstr( str,
"function pltr1" ) != 0 )
4341 else if ( strstr( str,
"function pltr2" ) != 0 )
4351 Py_XINCREF( input );
4359 Py_XINCREF( input );
4375 Py_XINCREF( input );
4390 Py_XINCREF( input );
4408 if ( input != Py_None )
4412 if ( input != Py_None )
4416 Py_XINCREF( input );
4420 fprintf( stderr,
"pltr_type is invalid\n" );
4441 fprintf( stderr,
"pltr_type is invalid\n" );
4450 PyObject *resultobj = 0;
4457 PyObject *swig_obj[2] ;
4471 if (arg1) (arg1)->type = arg2;
4480 PyObject *resultobj = 0;
4484 PyObject *swig_obj[1] ;
4495 result = (int) ((arg1)->type);
4504 PyObject *resultobj = 0;
4511 PyObject *swig_obj[2] ;
4524 arg2 = (
unsigned int)(val2);
4525 if (arg1) (arg1)->state = arg2;
4534 PyObject *resultobj = 0;
4538 PyObject *swig_obj[1] ;
4539 unsigned int result;
4549 result = (
unsigned int) ((arg1)->state);
4558 PyObject *resultobj = 0;
4565 PyObject *swig_obj[2] ;
4578 arg2 = (
unsigned int)(val2);
4579 if (arg1) (arg1)->keysym = arg2;
4588 PyObject *resultobj = 0;
4592 PyObject *swig_obj[1] ;
4593 unsigned int result;
4603 result = (
unsigned int) ((arg1)->keysym);
4612 PyObject *resultobj = 0;
4619 PyObject *swig_obj[2] ;
4632 arg2 = (
unsigned int)(val2);
4633 if (arg1) (arg1)->button = arg2;
4642 PyObject *resultobj = 0;
4646 PyObject *swig_obj[1] ;
4647 unsigned int result;
4657 result = (
unsigned int) ((arg1)->button);
4666 PyObject *resultobj = 0;
4673 PyObject *swig_obj[2] ;
4686 arg2 = (
PLINT)(val2);
4687 if (arg1) (arg1)->subwindow = arg2;
4696 PyObject *resultobj = 0;
4700 PyObject *swig_obj[1] ;
4711 result = (
PLINT) ((arg1)->subwindow);
4720 PyObject *resultobj = 0;
4722 char *arg2 = (
char *) (
char *)0 ;
4727 PyObject *swig_obj[2] ;
4740 arg2 = (
char *)(temp2);
4741 if (arg2) memcpy(arg1->
string,arg2,16*
sizeof(
char));
4742 else memset(arg1->
string,0,16*
sizeof(
char));
4751 PyObject *resultobj = 0;
4755 PyObject *swig_obj[1] ;
4766 result = (
char *)(
char *) ((arg1)->string);
4781 PyObject *resultobj = 0;
4788 PyObject *swig_obj[2] ;
4802 if (arg1) (arg1)->pX = arg2;
4811 PyObject *resultobj = 0;
4815 PyObject *swig_obj[1] ;
4826 result = (int) ((arg1)->pX);
4835 PyObject *resultobj = 0;
4842 PyObject *swig_obj[2] ;
4856 if (arg1) (arg1)->pY = arg2;
4865 PyObject *resultobj = 0;
4869 PyObject *swig_obj[1] ;
4880 result = (int) ((arg1)->pY);
4889 PyObject *resultobj = 0;
4896 PyObject *swig_obj[2] ;
4909 arg2 = (
PLFLT)(val2);
4910 if (arg1) (arg1)->dX = arg2;
4919 PyObject *resultobj = 0;
4923 PyObject *swig_obj[1] ;
4934 result = (
PLFLT) ((arg1)->dX);
4943 PyObject *resultobj = 0;
4950 PyObject *swig_obj[2] ;
4963 arg2 = (
PLFLT)(val2);
4964 if (arg1) (arg1)->dY = arg2;
4973 PyObject *resultobj = 0;
4977 PyObject *swig_obj[1] ;
4988 result = (
PLFLT) ((arg1)->dY);
4997 PyObject *resultobj = 0;
5004 PyObject *swig_obj[2] ;
5017 arg2 = (
PLFLT)(val2);
5018 if (arg1) (arg1)->wX = arg2;
5027 PyObject *resultobj = 0;
5031 PyObject *swig_obj[1] ;
5042 result = (
PLFLT) ((arg1)->wX);
5051 PyObject *resultobj = 0;
5058 PyObject *swig_obj[2] ;
5071 arg2 = (
PLFLT)(val2);
5072 if (arg1) (arg1)->wY = arg2;
5081 PyObject *resultobj = 0;
5085 PyObject *swig_obj[1] ;
5096 result = (
PLFLT) ((arg1)->wY);
5105 PyObject *resultobj = 0;
5119 PyObject *resultobj = 0;
5123 PyObject *swig_obj[1] ;
5133 free((
char *) arg1);
5142 PyObject *obj = NULL;
5153 PyObject *resultobj = 0;
5157 PyObject *swig_obj[1] ;
5166 arg1 = (
PLINT)(val1);
5176 PyObject *resultobj = 0;
5183 PyObject *swig_obj[2] ;
5191 arg1 = (
PLINT)(val1);
5196 arg2 = (
PLINT)(val2);
5206 PyObject *resultobj = 0;
5219 PyObject *swig_obj[4] ;
5227 arg1 = (
PLFLT)(val1);
5232 arg2 = (
PLFLT)(val2);
5237 arg3 = (
PLFLT)(val3);
5242 arg4 = (
PLINT)(val4);
5252 PyObject *resultobj = 0;
5256 PyObject *swig_obj[1] ;
5265 arg1 = (
PLINT)(val1);
5275 PyObject *resultobj = 0;
5300 PyObject *swig_obj[8] ;
5308 arg1 = (
PLFLT)(val1);
5313 arg2 = (
PLFLT)(val2);
5318 arg3 = (
PLFLT)(val3);
5323 arg4 = (
PLFLT)(val4);
5328 arg5 = (
PLFLT)(val5);
5333 arg6 = (
PLFLT)(val6);
5338 arg7 = (
PLFLT)(val7);
5344 plarc(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
5353 PyObject *resultobj = 0;
5356 char *arg3 = (
char *) 0 ;
5359 char *arg6 = (
char *) 0 ;
5380 PyObject *swig_obj[8] ;
5388 arg1 = (
PLFLT)(val1);
5393 arg2 = (
PLFLT)(val2);
5398 arg3 = (
char *)(buf3);
5403 arg4 = (
PLFLT)(val4);
5408 arg5 = (
PLINT)(val5);
5413 arg6 = (
char *)(buf6);
5418 arg7 = (
PLFLT)(val7);
5423 arg8 = (
PLINT)(val8);
5424 plaxes(arg1,arg2,(
char const *)arg3,arg4,arg5,(
char const *)arg6,arg7,arg8);
5437 PyObject *resultobj = 0;
5442 PyArrayObject *tmp1 = NULL ;
5443 PyArrayObject *tmp3 = NULL ;
5446 PyObject *swig_obj[3] ;
5454 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
5455 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
5461 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
5463 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
5466 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
5472 arg4 = (
PLINT)(val4);
5473 plbin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
5494 PyObject *resultobj = 0;
5516 PyObject *swig_obj[1] ;
5531 arg7 = (
PLFLT)(val7);
5532 plbtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5577 PyObject *resultobj = 0;
5590 PyObject *resultobj = 0;
5591 char *arg1 = (
char *) 0 ;
5594 char *arg4 = (
char *) 0 ;
5611 PyObject *swig_obj[6] ;
5619 arg1 = (
char *)(buf1);
5624 arg2 = (
PLFLT)(val2);
5629 arg3 = (
PLINT)(val3);
5634 arg4 = (
char *)(buf4);
5639 arg5 = (
PLFLT)(val5);
5644 arg6 = (
PLINT)(val6);
5645 plbox((
char const *)arg1,arg2,arg3,(
char const *)arg4,arg5,arg6);
5658 PyObject *resultobj = 0;
5659 char *arg1 = (
char *) 0 ;
5660 char *arg2 = (
char *) 0 ;
5663 char *arg5 = (
char *) 0 ;
5664 char *arg6 = (
char *) 0 ;
5667 char *arg9 = (
char *) 0 ;
5668 char *arg10 = (
char *) 0 ;
5701 PyObject *swig_obj[12] ;
5709 arg1 = (
char *)(buf1);
5714 arg2 = (
char *)(buf2);
5719 arg3 = (
PLFLT)(val3);
5724 arg4 = (
PLINT)(val4);
5729 arg5 = (
char *)(buf5);
5734 arg6 = (
char *)(buf6);
5739 arg7 = (
PLFLT)(val7);
5744 arg8 = (
PLINT)(val8);
5749 arg9 = (
char *)(buf9);
5754 arg10 = (
char *)(buf10);
5759 arg11 = (
PLFLT)(val11);
5764 arg12 = (
PLINT)(val12);
5765 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);
5786 PyObject *resultobj = 0;
5802 PyObject *swig_obj[2] ;
5813 arg1 = (
PLFLT)(val1);
5818 arg2 = (
PLFLT)(val2);
5846 PyObject *resultobj = 0;
5859 PyObject *resultobj = 0;
5863 PyObject *swig_obj[1] ;
5872 arg1 = (
PLINT)(val1);
5882 PyObject *resultobj = 0;
5886 PyObject *swig_obj[1] ;
5895 arg1 = (
PLFLT)(val1);
5905 PyObject *resultobj = 0;
5939 PyObject *swig_obj[11] ;
5947 arg1 = (
PLFLT)(val1);
5952 arg2 = (
PLFLT)(val2);
5957 arg3 = (
PLFLT)(val3);
5962 arg4 = (
PLINT)(val4);
5972 arg6 = (
PLINT)(val6);
5977 arg7 = (
PLINT)(val7);
5982 arg8 = (
PLINT)(val8);
5987 arg9 = (
PLINT)(val9);
5992 arg10 = (
PLINT)(val10);
5997 arg11 = (
PLFLT)(val11);
5998 plconfigtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
6007 PyObject *resultobj = 0;
6019 PyArrayObject *tmp1 = NULL ;
6028 PyArrayObject *tmp8 = NULL ;
6029 PyObject *swig_obj[8] ;
6045 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
6046 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
6048 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
6049 for ( i = 0; i < arg2; i++ )
6050 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
6056 arg4 = (
PLINT)(val4);
6061 arg5 = (
PLINT)(val5);
6066 arg6 = (
PLINT)(val6);
6071 arg7 = (
PLINT)(val7);
6076 arg9 = PyArray_DIMS( tmp8 )[0];
6077 arg8 = (
PLFLT *) PyArray_DATA( tmp8 );
6082 if ( swig_obj[6] == Py_None )
6088 if ( !PyCallable_Check( (PyObject *) swig_obj[6] ) )
6090 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
6099 if ( swig_obj[7] == Py_None )
6107 plcont((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,(
double const *)arg8,arg9,arg10,arg11);
6142 PyObject *resultobj = 0;
6164 PyObject *swig_obj[6] ;
6173 arg1 = (
PLINT)(val1);
6178 arg2 = (
PLINT)(val2);
6183 arg3 = (
PLINT)(val3);
6188 arg4 = (
PLINT)(val4);
6193 arg5 = (
PLINT)(val5);
6198 arg6 = (
PLFLT)(val6);
6199 plctime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
6214 PyObject *resultobj = 0;
6221 PyObject *swig_obj[2] ;
6229 arg1 = (
PLINT)(val1);
6244 PyObject *resultobj = 0;
6257 PyObject *resultobj = 0;
6270 PyObject *resultobj = 0;
6289 PyObject *swig_obj[6] ;
6297 arg1 = (
PLFLT)(val1);
6302 arg2 = (
PLFLT)(val2);
6307 arg3 = (
PLFLT)(val3);
6312 arg4 = (
PLFLT)(val4);
6317 arg5 = (
PLINT)(val5);
6322 arg6 = (
PLINT)(val6);
6323 plenv(arg1,arg2,arg3,arg4,arg5,arg6);
6332 PyObject *resultobj = 0;
6351 PyObject *swig_obj[6] ;
6359 arg1 = (
PLFLT)(val1);
6364 arg2 = (
PLFLT)(val2);
6369 arg3 = (
PLFLT)(val3);
6374 arg4 = (
PLFLT)(val4);
6379 arg5 = (
PLINT)(val5);
6384 arg6 = (
PLINT)(val6);
6385 plenv0(arg1,arg2,arg3,arg4,arg5,arg6);
6394 PyObject *resultobj = 0;
6407 PyObject *resultobj = 0;
6412 PyArrayObject *tmp1 = NULL ;
6413 PyArrayObject *tmp3 = NULL ;
6414 PyArrayObject *tmp4 = NULL ;
6415 PyObject *swig_obj[3] ;
6423 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6424 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6430 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6432 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6435 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6441 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6443 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6446 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6448 plerrx(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6475 PyObject *resultobj = 0;
6480 PyArrayObject *tmp1 = NULL ;
6481 PyArrayObject *tmp3 = NULL ;
6482 PyArrayObject *tmp4 = NULL ;
6483 PyObject *swig_obj[3] ;
6491 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6492 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6498 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6500 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6503 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6509 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6511 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6514 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6516 plerry(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6543 PyObject *resultobj = 0;
6556 PyObject *resultobj = 0;
6560 PyArrayObject *tmp1 = NULL ;
6561 PyArrayObject *tmp3 = NULL ;
6562 PyObject *swig_obj[2] ;
6570 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6571 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6577 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6579 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6582 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6584 plfill(arg1,(
double const *)arg2,(
double const *)arg3);
6605 PyObject *resultobj = 0;
6610 PyArrayObject *tmp1 = NULL ;
6611 PyArrayObject *tmp3 = NULL ;
6612 PyArrayObject *tmp4 = NULL ;
6613 PyObject *swig_obj[3] ;
6621 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6622 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6628 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6630 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6633 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6639 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6641 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6644 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6646 plfill3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6673 PyObject *resultobj = 0;
6678 PyArrayObject *tmp1 = NULL ;
6679 PyArrayObject *tmp3 = NULL ;
6682 PyObject *swig_obj[3] ;
6690 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6691 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6697 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6699 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6702 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6708 arg4 = (
PLFLT)(val4);
6709 plgradient(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
6730 PyObject *resultobj = 0;
6743 PyObject *resultobj = 0;
6747 PyObject *swig_obj[1] ;
6756 arg1 = (
PLINT)(val1);
6766 PyObject *resultobj = 0;
6770 PyObject *swig_obj[1] ;
6779 arg1 = (
PLINT)(val1);
6789 PyObject *resultobj = 0;
6822 PyObject *resultobj = 0;
6835 PyObject *swig_obj[1] ;
6847 arg1 = (
PLINT)(val1);
6875 PyObject *resultobj = 0;
6891 PyObject *swig_obj[1] ;
6904 arg1 = (
PLINT)(val1);
6905 plgcol0a(arg1,arg2,arg3,arg4,arg5);
6938 PyObject *resultobj = 0;
6981 PyObject *resultobj = 0;
7034 PyObject *resultobj = 0;
7057 PyObject *resultobj = 0;
7058 char *arg1 = (
char *) 0 ;
7069 PyObject *o = PyString_FromString( arg1 );
7079 PyObject *resultobj = 0;
7132 PyObject *resultobj = 0;
7155 PyObject *resultobj = 0;
7208 PyObject *resultobj = 0;
7251 PyObject *resultobj = 0;
7274 PyObject *resultobj = 0;
7275 char *arg1 = (
char *) 0 ;
7286 PyObject *o = PyString_FromString( arg1 );
7296 PyObject *resultobj = 0;
7339 PyObject *resultobj = 0;
7362 PyObject *resultobj = 0;
7390 plgpage(arg1,arg2,arg3,arg4,arg5,arg6);
7435 PyObject *resultobj = 0;
7448 PyObject *resultobj = 0;
7460 PyArrayObject *tmp1 = NULL ;
7461 PyArrayObject *tmp2 = NULL ;
7462 PyArrayObject *tmp3 = NULL ;
7463 PyArrayObject *tmp5 = NULL ;
7464 PyArrayObject *tmp7 = NULL ;
7465 PyObject *array7 = NULL ;
7470 PyObject *swig_obj[7] ;
7478 Alen = PyArray_DIMS( tmp1 )[0];
7479 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
7485 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
7487 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7490 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
7496 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
7498 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7501 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
7502 arg4 = PyArray_DIMS( tmp3 )[0];
7508 Xlen = PyArray_DIMS( tmp5 )[0];
7510 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
7518 Ylen = PyArray_DIMS( tmp7 )[0];
7520 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
7525 array7 = PyArray_SimpleNew( 2, dims,
NPY_PLFLT );
7529 arg9 = (
PLFLT **) malloc(
sizeof (
double * ) * (
size_t)
Xlen );
7530 for ( i = 0; i <
Xlen; i++ )
7531 arg9[i] = ( (
PLFLT *) PyArray_DATA( (PyArrayObject *) array7 ) + i * size );
7537 arg10 = (
PLINT)(val10);
7542 arg11 = (
PLFLT)(val11);
7543 plgriddata((
double const *)arg1,(
double const *)arg2,(
double const *)arg3,arg4,(
double const *)arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,arg11);
7587 PyObject *resultobj = 0;
7607 plgspa(arg1,arg2,arg3,arg4);
7640 PyObject *resultobj = 0;
7663 PyObject *resultobj = 0;
7664 char *arg1 = (
char *) 0 ;
7675 PyObject *o = PyString_FromString( arg1 );
7685 PyObject *resultobj = 0;
7705 plgvpd(arg1,arg2,arg3,arg4);
7738 PyObject *resultobj = 0;
7758 plgvpw(arg1,arg2,arg3,arg4);
7791 PyObject *resultobj = 0;
7824 PyObject *resultobj = 0;
7857 PyObject *resultobj = 0;
7890 PyObject *resultobj = 0;
7897 PyArrayObject *tmp1 = NULL ;
7906 PyObject *swig_obj[5] ;
7914 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
7915 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
7921 arg3 = (
PLFLT)(val3);
7926 arg4 = (
PLFLT)(val4);
7931 arg5 = (
PLINT)(val5);
7936 arg6 = (
PLINT)(val6);
7937 plhist(arg1,(
double const *)arg2,arg3,arg4,arg5,arg6);
7952 PyObject *resultobj = 0;
7971 PyObject *swig_obj[3] ;
7982 arg1 = (
PLFLT)(val1);
7987 arg2 = (
PLFLT)(val2);
7992 arg3 = (
PLFLT)(val3);
7993 plhlsrgb(arg1,arg2,arg3,arg4,arg5,arg6);
8020 PyObject *resultobj = 0;
8033 PyObject *resultobj = 0;
8046 PyObject *swig_obj[4] ;
8054 arg1 = (
PLFLT)(val1);
8059 arg2 = (
PLFLT)(val2);
8064 arg3 = (
PLFLT)(val3);
8069 arg4 = (
PLFLT)(val4);
8070 pljoin(arg1,arg2,arg3,arg4);
8079 PyObject *resultobj = 0;
8080 char *arg1 = (
char *) 0 ;
8081 char *arg2 = (
char *) 0 ;
8082 char *arg3 = (
char *) 0 ;
8092 PyObject *swig_obj[3] ;
8100 arg1 = (
char *)(buf1);
8105 arg2 = (
char *)(buf2);
8110 arg3 = (
char *)(buf3);
8111 pllab((
char const *)arg1,(
char const *)arg2,(
char const *)arg3);
8126 PyObject *resultobj = 0;
8146 char **arg20 = (
char **) 0 ;
8157 char **arg31 = (
char **) 0 ;
8182 PyArrayObject *tmp13 = NULL ;
8191 PyArrayObject *tmp19 = NULL ;
8192 PyArrayObject *tmp20 = NULL ;
8193 PyArrayObject *tmp21 = NULL ;
8194 PyArrayObject *tmp22 = NULL ;
8195 PyArrayObject *tmp23 = NULL ;
8196 PyArrayObject *tmp24 = NULL ;
8197 PyArrayObject *tmp25 = NULL ;
8198 PyArrayObject *tmp26 = NULL ;
8199 PyArrayObject *tmp27 = NULL ;
8200 PyArrayObject *tmp28 = NULL ;
8201 PyArrayObject *tmp29 = NULL ;
8202 PyArrayObject *tmp30 = NULL ;
8203 PyArrayObject *tmp31 = NULL ;
8204 PyObject *swig_obj[28] ;
8214 arg3 = (
PLINT)(val3);
8219 arg4 = (
PLINT)(val4);
8224 arg5 = (
PLFLT)(val5);
8229 arg6 = (
PLFLT)(val6);
8234 arg7 = (
PLFLT)(val7);
8239 arg8 = (
PLINT)(val8);
8244 arg9 = (
PLINT)(val9);
8249 arg10 = (
PLINT)(val10);
8254 arg11 = (
PLINT)(val11);
8259 arg12 = (
PLINT)(val12);
8262 if ( tmp13 == NULL )
8264 arg13 =
Alen = PyArray_DIMS( tmp13 )[0];
8265 arg14 = (
PLINT *) PyArray_DATA( tmp13 );
8271 arg15 = (
PLFLT)(val15);
8276 arg16 = (
PLFLT)(val16);
8281 arg17 = (
PLFLT)(val17);
8286 arg18 = (
PLFLT)(val18);
8289 if ( tmp19 == NULL )
8291 if ( PyArray_DIMS( tmp19 )[0] !=
Alen )
8293 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8296 arg19 = (
PLINT *) PyArray_DATA( tmp19 );
8300 tmp20 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[16], NPY_STRING, 1, 1 );
8301 if ( tmp20 == NULL )
8303 if ( PyArray_DIMS( tmp20 )[0] !=
Alen )
8305 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8308 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8309 for ( i = 0; i <
Alen; i++ )
8311 arg20[i] = (
char *) PyArray_DATA( tmp20 ) + i * PyArray_STRIDES( tmp20 )[0];
8312 if ( arg20[i] == NULL )
8321 if ( tmp21 == NULL )
8323 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8325 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8328 arg21 = (
PLINT *) PyArray_DATA( tmp21 );
8332 if ( tmp22 == NULL )
8334 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8336 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8339 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8342 if ( swig_obj[19] != Py_None )
8345 if ( tmp23 == NULL )
8347 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8349 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8352 arg23 = (
PLFLT *) PyArray_DATA( tmp23 );
8360 if ( swig_obj[20] != Py_None )
8363 if ( tmp24 == NULL )
8365 if ( PyArray_DIMS( tmp24 )[0] !=
Alen )
8367 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8370 arg24 = (
PLFLT *) PyArray_DATA( tmp24 );
8379 if ( tmp25 == NULL )
8381 if ( PyArray_DIMS( tmp25 )[0] !=
Alen )
8383 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8386 arg25 = (
PLINT *) PyArray_DATA( tmp25 );
8390 if ( tmp26 == NULL )
8392 if ( PyArray_DIMS( tmp26 )[0] !=
Alen )
8394 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8397 arg26 = (
PLINT *) PyArray_DATA( tmp26 );
8400 if ( swig_obj[23] != Py_None )
8403 if ( tmp27 == NULL )
8405 if ( PyArray_DIMS( tmp27 )[0] !=
Alen )
8407 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8410 arg27 = (
PLFLT *) PyArray_DATA( tmp27 );
8419 if ( tmp28 == NULL )
8421 if ( PyArray_DIMS( tmp28 )[0] !=
Alen )
8423 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8426 arg28 = (
PLINT *) PyArray_DATA( tmp28 );
8429 if ( swig_obj[25] != Py_None )
8432 if ( tmp29 == NULL )
8434 if ( PyArray_DIMS( tmp29 )[0] !=
Alen )
8436 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8439 arg29 = (
PLFLT *) PyArray_DATA( tmp29 );
8448 if ( tmp30 == NULL )
8450 if ( PyArray_DIMS( tmp30 )[0] !=
Alen )
8452 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8455 arg30 = (
PLINT *) PyArray_DATA( tmp30 );
8459 tmp31 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[27], NPY_STRING, 1, 1 );
8460 if ( tmp31 == NULL )
8462 if ( PyArray_DIMS( tmp31 )[0] !=
Alen )
8464 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8467 arg31 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8468 for ( i = 0; i <
Alen; i++ )
8470 arg31[i] = (
char *) PyArray_DATA( tmp31 ) + i * PyArray_STRIDES( tmp31 )[0];
8471 if ( arg31[i] == NULL )
8478 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);
8499 Py_CLEAR( tmp20 ); free( arg20 );
8532 Py_CLEAR( tmp31 ); free( arg31 );
8543 Py_CLEAR( tmp20 ); free( arg20 );
8576 Py_CLEAR( tmp31 ); free( arg31 );
8583 PyObject *resultobj = 0;
8601 char **arg18 = (
char **) 0 ;
8603 char **arg20 = (
char **) 0 ;
8638 PyArrayObject *tmp16 = NULL ;
8639 PyArrayObject *tmp18 = NULL ;
8640 PyArrayObject *tmp19 = NULL ;
8641 PyArrayObject *tmp21 = NULL ;
8642 PyArrayObject *tmp22 = NULL ;
8643 PyArrayObject *tmp23 = NULL ;
8644 PyArrayObject *tmp24 = NULL ;
8645 PyObject *swig_obj[20] ;
8655 arg3 = (
PLINT)(val3);
8660 arg4 = (
PLINT)(val4);
8665 arg5 = (
PLFLT)(val5);
8670 arg6 = (
PLFLT)(val6);
8675 arg7 = (
PLFLT)(val7);
8680 arg8 = (
PLFLT)(val8);
8685 arg9 = (
PLINT)(val9);
8690 arg10 = (
PLINT)(val10);
8695 arg11 = (
PLINT)(val11);
8700 arg12 = (
PLFLT)(val12);
8705 arg13 = (
PLFLT)(val13);
8710 arg14 = (
PLINT)(val14);
8715 arg15 = (
PLFLT)(val15);
8718 if ( tmp16 == NULL )
8720 arg16 =
Alen = PyArray_DIMS( tmp16 )[0];
8721 arg17 = (
PLINT *) PyArray_DATA( tmp16 );
8725 tmp18 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[14], NPY_STRING, 1, 1 );
8726 if ( tmp18 == NULL )
8728 if ( PyArray_DIMS( tmp18 )[0] !=
Alen )
8730 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8733 arg18 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8734 for ( i = 0; i <
Alen; i++ )
8736 arg18[i] = (
char *) PyArray_DATA( tmp18 ) + i * PyArray_STRIDES( tmp18 )[0];
8737 if ( arg18[i] == NULL )
8746 tmp19 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[15], NPY_STRING, 1, 1 );
8747 if ( tmp19 == NULL )
8749 Alen = PyArray_DIMS( tmp19 )[0];
8751 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8752 for ( i = 0; i <
Alen; i++ )
8754 arg20[i] = (
char *) PyArray_DATA( tmp19 ) + i * PyArray_STRIDES( tmp19 )[0];
8755 if ( arg20[i] == NULL )
8764 if ( tmp21 == NULL )
8766 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8768 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8771 arg21 = (
PLFLT *) PyArray_DATA( tmp21 );
8775 if ( tmp22 == NULL )
8777 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8779 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8782 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8787 if ( tmp23 == NULL )
8789 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8791 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8794 Xlen = PyArray_DIMS( tmp23 )[0];
8795 arg23 = (
PLINT *) PyArray_DATA( tmp23 );
8797 for ( i = 0; i <
Xlen; i++ )
8798 if ( arg23[i] >
Ylen )
8804 if ( tmp24 == NULL )
8806 if ( PyArray_DIMS( tmp24 )[0] !=
Xlen || PyArray_DIMS( tmp24 )[1] !=
Ylen )
8808 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
8813 for ( i = 0; i <
Xlen; i++ )
8814 arg24[i] = ( (
PLFLT *) PyArray_DATA( tmp24 ) + i * size );
8816 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);
8834 Py_CLEAR( tmp18 ); free( arg18 );
8837 Py_CLEAR( tmp19 ); free( arg20 );
8858 Py_CLEAR( tmp18 ); free( arg18 );
8861 Py_CLEAR( tmp19 ); free( arg20 );
8881 PyObject *resultobj = 0;
8891 PyObject *swig_obj[3] ;
8899 arg1 = (
PLFLT)(val1);
8904 arg2 = (
PLFLT)(val2);
8909 arg3 = (
PLFLT)(val3);
8919 PyObject *resultobj = 0;
8923 PyArrayObject *tmp1 = NULL ;
8924 PyArrayObject *tmp3 = NULL ;
8925 PyObject *swig_obj[2] ;
8933 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8934 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8940 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8942 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8945 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8947 plline(arg1,(
double const *)arg2,(
double const *)arg3);
8968 PyObject *resultobj = 0;
8973 PyArrayObject *tmp1 = NULL ;
8974 PyArrayObject *tmp3 = NULL ;
8975 PyArrayObject *tmp4 = NULL ;
8976 PyObject *swig_obj[3] ;
8984 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8985 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8991 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8993 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8996 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
9002 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
9004 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9007 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
9009 plline3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
9036 PyObject *resultobj = 0;
9040 PyObject *swig_obj[1] ;
9049 arg1 = (
PLINT)(val1);
9059 PyObject *resultobj = 0;
9066 PyArrayObject *tmp1 = NULL ;
9067 PyArrayObject *tmp2 = NULL ;
9068 PyArrayObject *tmp3 = NULL ;
9071 PyObject *swig_obj[4] ;
9079 Xlen = PyArray_DIMS( tmp1 )[0];
9080 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9086 Ylen = PyArray_DIMS( tmp2 )[0];
9087 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9094 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9096 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9099 arg4 = PyArray_DIMS( tmp3 )[0];
9100 arg5 = PyArray_DIMS( tmp3 )[1];
9102 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9103 for ( i = 0; i < arg4; i++ )
9104 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9110 arg6 = (
PLINT)(val6);
9111 plmesh((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6);
9140 PyObject *resultobj = 0;
9149 PyArrayObject *tmp1 = NULL ;
9150 PyArrayObject *tmp2 = NULL ;
9151 PyArrayObject *tmp3 = NULL ;
9154 PyArrayObject *tmp7 = NULL ;
9155 PyObject *swig_obj[5] ;
9163 Xlen = PyArray_DIMS( tmp1 )[0];
9164 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9170 Ylen = PyArray_DIMS( tmp2 )[0];
9171 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9178 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9180 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9183 arg4 = PyArray_DIMS( tmp3 )[0];
9184 arg5 = PyArray_DIMS( tmp3 )[1];
9186 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9187 for ( i = 0; i < arg4; i++ )
9188 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9194 arg6 = (
PLINT)(val6);
9199 arg8 = PyArray_DIMS( tmp7 )[0];
9200 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9202 plmeshc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9237 PyObject *resultobj = 0;
9260 PyObject *resultobj = 0;
9261 char *arg1 = (
char *) 0 ;
9265 char *arg5 = (
char *) 0 ;
9278 PyObject *swig_obj[5] ;
9286 arg1 = (
char *)(buf1);
9291 arg2 = (
PLFLT)(val2);
9296 arg3 = (
PLFLT)(val3);
9301 arg4 = (
PLFLT)(val4);
9306 arg5 = (
char *)(buf5);
9307 plmtex((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9320 PyObject *resultobj = 0;
9321 char *arg1 = (
char *) 0 ;
9325 char *arg5 = (
char *) 0 ;
9338 PyObject *swig_obj[5] ;
9346 arg1 = (
char *)(buf1);
9351 arg2 = (
PLFLT)(val2);
9356 arg3 = (
PLFLT)(val3);
9361 arg4 = (
PLFLT)(val4);
9366 arg5 = (
char *)(buf5);
9367 plmtex3((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9380 PyObject *resultobj = 0;
9388 PyArrayObject *tmp1 = NULL ;
9389 PyArrayObject *tmp2 = NULL ;
9390 PyArrayObject *tmp3 = NULL ;
9395 PyObject *swig_obj[5] ;
9403 Xlen = PyArray_DIMS( tmp1 )[0];
9404 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9410 Ylen = PyArray_DIMS( tmp2 )[0];
9411 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9418 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9420 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9423 arg4 = PyArray_DIMS( tmp3 )[0];
9424 arg5 = PyArray_DIMS( tmp3 )[1];
9426 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9427 for ( i = 0; i < arg4; i++ )
9428 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9434 arg6 = (
PLINT)(val6);
9440 plot3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,arg7);
9469 PyObject *resultobj = 0;
9478 PyArrayObject *tmp1 = NULL ;
9479 PyArrayObject *tmp2 = NULL ;
9480 PyArrayObject *tmp3 = NULL ;
9483 PyArrayObject *tmp7 = NULL ;
9484 PyObject *swig_obj[5] ;
9492 Xlen = PyArray_DIMS( tmp1 )[0];
9493 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9499 Ylen = PyArray_DIMS( tmp2 )[0];
9500 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9507 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9509 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9512 arg4 = PyArray_DIMS( tmp3 )[0];
9513 arg5 = PyArray_DIMS( tmp3 )[1];
9515 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9516 for ( i = 0; i < arg4; i++ )
9517 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9523 arg6 = (
PLINT)(val6);
9528 arg8 = PyArray_DIMS( tmp7 )[0];
9529 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9531 plot3dc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9566 PyObject *resultobj = 0;
9579 PyArrayObject *tmp1 = NULL ;
9580 PyArrayObject *tmp2 = NULL ;
9581 PyArrayObject *tmp3 = NULL ;
9584 PyArrayObject *tmp7 = NULL ;
9587 PyArrayObject *tmp10 = NULL ;
9588 PyArrayObject *tmp12 = NULL ;
9589 PyObject *swig_obj[8] ;
9597 Xlen = PyArray_DIMS( tmp1 )[0];
9598 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9604 Ylen = PyArray_DIMS( tmp2 )[0];
9605 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9612 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9614 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9617 arg4 = PyArray_DIMS( tmp3 )[0];
9618 arg5 = PyArray_DIMS( tmp3 )[1];
9620 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9621 for ( i = 0; i < arg4; i++ )
9622 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9628 arg6 = (
PLINT)(val6);
9633 arg8 = PyArray_DIMS( tmp7 )[0];
9634 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9640 arg9 = (
PLINT)(val9);
9643 if ( tmp10 == NULL )
9645 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9646 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9650 if ( tmp12 == NULL )
9652 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9654 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9657 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9659 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);
9706 PyObject *resultobj = 0;
9715 PyArrayObject *tmp1 = NULL ;
9716 PyArrayObject *tmp2 = NULL ;
9717 PyArrayObject *tmp3 = NULL ;
9720 PyArrayObject *tmp7 = NULL ;
9721 PyObject *swig_obj[5] ;
9729 Xlen = PyArray_DIMS( tmp1 )[0];
9730 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9736 Ylen = PyArray_DIMS( tmp2 )[0];
9737 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9744 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9746 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9749 arg4 = PyArray_DIMS( tmp3 )[0];
9750 arg5 = PyArray_DIMS( tmp3 )[1];
9752 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9753 for ( i = 0; i < arg4; i++ )
9754 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9760 arg6 = (
PLINT)(val6);
9765 arg8 = PyArray_DIMS( tmp7 )[0];
9766 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9768 plsurf3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9803 PyObject *resultobj = 0;
9816 PyArrayObject *tmp1 = NULL ;
9817 PyArrayObject *tmp2 = NULL ;
9818 PyArrayObject *tmp3 = NULL ;
9821 PyArrayObject *tmp7 = NULL ;
9824 PyArrayObject *tmp10 = NULL ;
9825 PyArrayObject *tmp12 = NULL ;
9826 PyObject *swig_obj[8] ;
9834 Xlen = PyArray_DIMS( tmp1 )[0];
9835 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9841 Ylen = PyArray_DIMS( tmp2 )[0];
9842 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9849 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9851 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9854 arg4 = PyArray_DIMS( tmp3 )[0];
9855 arg5 = PyArray_DIMS( tmp3 )[1];
9857 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9858 for ( i = 0; i < arg4; i++ )
9859 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9865 arg6 = (
PLINT)(val6);
9870 arg8 = PyArray_DIMS( tmp7 )[0];
9871 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9877 arg9 = (
PLINT)(val9);
9880 if ( tmp10 == NULL )
9882 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9883 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9887 if ( tmp12 == NULL )
9889 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9891 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9894 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9896 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);
9943 PyObject *resultobj = 0;
9944 int *arg1 = (
int *) 0 ;
9945 char **arg2 = (
char **) 0 ;
9950 PyObject *swig_obj[2] ;
9957 PyObject *unicode_string;
9959 if ( !PyList_Check( swig_obj[0] ) )
9961 PyErr_SetString( PyExc_ValueError,
"Expecting a list" );
9964 tmp1 = PyList_Size( swig_obj[0] );
9966 arg2 = (
char **) malloc( (
size_t) ( tmp1 + 1 ) *
sizeof (
char * ) );
9967 for ( i = 0; i < tmp1; i++ )
9969 PyObject *s = PyList_GetItem( swig_obj[0], i );
9970 if ( PyString_Check( s ) )
9972 arg2[i] = PyString_AsString( s );
9974 else if ( PyUnicode_Check( s ) )
9977 unicode_string = PyUnicode_AsEncodedString( s,
"utf-8",
"Error ~" );
9978 arg2[i] = PyBytes_AS_STRING( unicode_string );
9983 PyErr_SetString( PyExc_ValueError,
"List items must be strings" );
9993 arg3 = (
PLINT)(val3);
10011 PyObject *resultobj = 0;
10015 PyArrayObject *tmp1 = NULL ;
10016 PyArrayObject *tmp3 = NULL ;
10017 PyObject *swig_obj[2] ;
10023 if ( tmp1 == NULL )
10025 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10026 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
10030 if ( tmp3 == NULL )
10032 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10034 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10037 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10039 plpat(arg1,(
int const *)arg2,(
int const *)arg3);
10060 PyObject *resultobj = 0;
10076 PyObject *swig_obj[5] ;
10084 arg1 = (
PLINT)(val1);
10089 arg2 = (
PLFLT)(val2);
10094 arg3 = (
PLFLT)(val3);
10099 arg4 = (
PLFLT)(val4);
10104 arg5 = (
PLFLT)(val5);
10105 plpath(arg1,arg2,arg3,arg4,arg5);
10114 PyObject *resultobj = 0;
10119 PyArrayObject *tmp1 = NULL ;
10120 PyArrayObject *tmp3 = NULL ;
10123 PyObject *swig_obj[3] ;
10129 if ( tmp1 == NULL )
10131 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10132 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10136 if ( tmp3 == NULL )
10138 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10140 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10143 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10149 arg4 = (
PLINT)(val4);
10150 plpoin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
10171 PyObject *resultobj = 0;
10177 PyArrayObject *tmp1 = NULL ;
10178 PyArrayObject *tmp3 = NULL ;
10179 PyArrayObject *tmp4 = NULL ;
10182 PyObject *swig_obj[4] ;
10188 if ( tmp1 == NULL )
10190 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10191 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10195 if ( tmp3 == NULL )
10197 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10199 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10202 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10206 if ( tmp4 == NULL )
10208 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10210 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10213 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10219 arg5 = (
PLINT)(val5);
10220 plpoin3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,arg5);
10247 PyObject *resultobj = 0;
10254 PyArrayObject *tmp1 = NULL ;
10255 PyArrayObject *tmp3 = NULL ;
10256 PyArrayObject *tmp4 = NULL ;
10257 PyArrayObject *tmp5 = NULL ;
10260 PyObject *swig_obj[5] ;
10266 if ( tmp1 == NULL )
10268 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10269 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10273 if ( tmp3 == NULL )
10275 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10277 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10280 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10284 if ( tmp4 == NULL )
10286 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10288 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10291 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10295 if ( tmp5 == NULL )
10297 if ( PyArray_DIMS( tmp5 )[0] <
Alen - 1 )
10299 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
10302 arg5 = (
PLINT *) PyArray_DATA( tmp5 );
10309 plpoly3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
int const *)arg5,arg6);
10342 PyObject *resultobj = 0;
10349 PyObject *swig_obj[2] ;
10357 arg1 = (
PLINT)(val1);
10362 arg2 = (
PLINT)(val2);
10372 PyObject *resultobj = 0;
10376 PyObject *swig_obj[1] ;
10380 swig_obj[0] = args;
10385 arg1 = (
PLINT)(val1);
10395 PyObject *resultobj = 0;
10401 char *arg6 = (
char *) 0 ;
10415 PyObject *swig_obj[6] ;
10423 arg1 = (
PLFLT)(val1);
10428 arg2 = (
PLFLT)(val2);
10433 arg3 = (
PLFLT)(val3);
10438 arg4 = (
PLFLT)(val4);
10443 arg5 = (
PLFLT)(val5);
10448 arg6 = (
char *)(buf6);
10449 plptex(arg1,arg2,arg3,arg4,arg5,(
char const *)arg6);
10460 PyObject *resultobj = 0;
10471 char *arg11 = (
char *) 0 ;
10495 PyObject *swig_obj[11] ;
10503 arg1 = (
PLFLT)(val1);
10508 arg2 = (
PLFLT)(val2);
10513 arg3 = (
PLFLT)(val3);
10518 arg4 = (
PLFLT)(val4);
10523 arg5 = (
PLFLT)(val5);
10528 arg6 = (
PLFLT)(val6);
10533 arg7 = (
PLFLT)(val7);
10538 arg8 = (
PLFLT)(val8);
10543 arg9 = (
PLFLT)(val9);
10548 arg10 = (
PLFLT)(val10);
10553 arg11 = (
char *)(buf11);
10554 plptex3(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(
char const *)arg11);
10565 PyObject *resultobj = 0;
10579 PyObject *resultobj = 0;
10592 PyObject *resultobj = 0;
10611 PyObject *swig_obj[3] ;
10622 arg1 = (
PLFLT)(val1);
10627 arg2 = (
PLFLT)(val2);
10632 arg3 = (
PLFLT)(val3);
10633 plrgbhls(arg1,arg2,arg3,arg4,arg5,arg6);
10660 PyObject *resultobj = 0;
10667 PyObject *swig_obj[2] ;
10675 arg1 = (
PLFLT)(val1);
10680 arg2 = (
PLFLT)(val2);
10690 PyObject *resultobj = 0;
10695 PyArrayObject *tmp1 = NULL ;
10696 PyArrayObject *tmp2 = NULL ;
10697 PyArrayObject *tmp3 = NULL ;
10698 PyObject *swig_obj[3] ;
10704 if ( tmp1 == NULL )
10706 Alen = PyArray_DIMS( tmp1 )[0];
10707 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10711 if ( tmp2 == NULL )
10713 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10715 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10718 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10722 if ( tmp3 == NULL )
10724 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10726 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10729 arg4 = PyArray_DIMS( tmp3 )[0];
10730 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10732 plscmap0((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10759 PyObject *resultobj = 0;
10765 PyArrayObject *tmp1 = NULL ;
10766 PyArrayObject *tmp2 = NULL ;
10767 PyArrayObject *tmp3 = NULL ;
10768 PyArrayObject *tmp4 = NULL ;
10769 PyObject *swig_obj[4] ;
10775 if ( tmp1 == NULL )
10777 Alen = PyArray_DIMS( tmp1 )[0];
10778 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10782 if ( tmp2 == NULL )
10784 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10786 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10789 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10793 if ( tmp3 == NULL )
10795 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10797 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10800 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10804 if ( tmp4 == NULL )
10806 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10808 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10811 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10812 arg5 = PyArray_DIMS( tmp4 )[0];
10814 plscmap0a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
10847 PyObject *resultobj = 0;
10851 PyObject *swig_obj[1] ;
10855 swig_obj[0] = args;
10860 arg1 = (
PLINT)(val1);
10870 PyObject *resultobj = 0;
10875 PyArrayObject *tmp1 = NULL ;
10876 PyArrayObject *tmp2 = NULL ;
10877 PyArrayObject *tmp3 = NULL ;
10878 PyObject *swig_obj[3] ;
10884 if ( tmp1 == NULL )
10886 Alen = PyArray_DIMS( tmp1 )[0];
10887 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10891 if ( tmp2 == NULL )
10893 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10895 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10898 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10902 if ( tmp3 == NULL )
10904 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10906 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10909 arg4 = PyArray_DIMS( tmp3 )[0];
10910 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10912 plscmap1((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10939 PyObject *resultobj = 0;
10945 PyArrayObject *tmp1 = NULL ;
10946 PyArrayObject *tmp2 = NULL ;
10947 PyArrayObject *tmp3 = NULL ;
10948 PyArrayObject *tmp4 = NULL ;
10949 PyObject *swig_obj[4] ;
10955 if ( tmp1 == NULL )
10957 Alen = PyArray_DIMS( tmp1 )[0];
10958 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10962 if ( tmp2 == NULL )
10964 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10966 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10969 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10973 if ( tmp3 == NULL )
10975 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10977 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10980 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10984 if ( tmp4 == NULL )
10986 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10988 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10991 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10992 arg5 = PyArray_DIMS( tmp4 )[0];
10994 plscmap1a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
11027 PyObject *resultobj = 0;
11037 PyArrayObject *tmp2 = NULL ;
11038 PyArrayObject *tmp4 = NULL ;
11039 PyArrayObject *tmp5 = NULL ;
11040 PyArrayObject *tmp6 = NULL ;
11041 PyArrayObject *tmp7 = NULL ;
11042 PyObject *swig_obj[6] ;
11053 if ( tmp2 == NULL )
11055 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11056 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11060 if ( tmp4 == NULL )
11062 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11064 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11067 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11071 if ( tmp5 == NULL )
11073 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11075 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11078 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11082 if ( tmp6 == NULL )
11084 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11086 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11089 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11093 if ( tmp7 == NULL )
11095 if ( PyArray_DIMS( tmp7 )[0] <
Alen - 1 )
11097 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11100 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
11102 plscmap1l(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
int const *)arg7);
11141 PyObject *resultobj = 0;
11152 PyArrayObject *tmp2 = NULL ;
11153 PyArrayObject *tmp4 = NULL ;
11154 PyArrayObject *tmp5 = NULL ;
11155 PyArrayObject *tmp6 = NULL ;
11156 PyArrayObject *tmp7 = NULL ;
11157 PyArrayObject *tmp8 = NULL ;
11158 PyObject *swig_obj[7] ;
11169 if ( tmp2 == NULL )
11171 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11172 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11176 if ( tmp4 == NULL )
11178 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11180 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11183 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11187 if ( tmp5 == NULL )
11189 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11191 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11194 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11198 if ( tmp6 == NULL )
11200 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11202 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11205 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11209 if ( tmp7 == NULL )
11211 if ( PyArray_DIMS( tmp7 )[0] !=
Alen )
11213 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11216 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
11220 if ( tmp8 == NULL )
11222 if ( PyArray_DIMS( tmp8 )[0] <
Alen - 1 )
11224 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11227 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
11229 plscmap1la(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
double const *)arg7,(
int const *)arg8);
11274 PyObject *resultobj = 0;
11278 PyObject *swig_obj[1] ;
11282 swig_obj[0] = args;
11287 arg1 = (
PLINT)(val1);
11297 PyObject *resultobj = 0;
11304 PyObject *swig_obj[2] ;
11312 arg1 = (
PLFLT)(val1);
11317 arg2 = (
PLFLT)(val2);
11327 PyObject *resultobj = 0;
11360 PyObject *resultobj = 0;
11373 PyObject *swig_obj[4] ;
11381 arg1 = (
PLINT)(val1);
11386 arg2 = (
PLINT)(val2);
11391 arg3 = (
PLINT)(val3);
11396 arg4 = (
PLINT)(val4);
11397 plscol0(arg1,arg2,arg3,arg4);
11406 PyObject *resultobj = 0;
11422 PyObject *swig_obj[5] ;
11430 arg1 = (
PLINT)(val1);
11435 arg2 = (
PLINT)(val2);
11440 arg3 = (
PLINT)(val3);
11445 arg4 = (
PLINT)(val4);
11450 arg5 = (
PLFLT)(val5);
11451 plscol0a(arg1,arg2,arg3,arg4,arg5);
11460 PyObject *resultobj = 0;
11470 PyObject *swig_obj[3] ;
11478 arg1 = (
PLINT)(val1);
11483 arg2 = (
PLINT)(val2);
11488 arg3 = (
PLINT)(val3);
11498 PyObject *resultobj = 0;
11511 PyObject *swig_obj[4] ;
11519 arg1 = (
PLINT)(val1);
11524 arg2 = (
PLINT)(val2);
11529 arg3 = (
PLINT)(val3);
11534 arg4 = (
PLFLT)(val4);
11544 PyObject *resultobj = 0;
11548 PyObject *swig_obj[1] ;
11552 swig_obj[0] = args;
11557 arg1 = (
PLINT)(val1);
11567 PyObject *resultobj = 0;
11571 PyObject *swig_obj[1] ;
11575 swig_obj[0] = args;
11580 arg1 = (
PLINT)(val1);
11590 PyObject *resultobj = 0;
11591 char *arg1 = (
char *) 0 ;
11595 PyObject *swig_obj[1] ;
11599 swig_obj[0] = args;
11604 arg1 = (
char *)(buf1);
11605 plsdev((
char const *)arg1);
11616 PyObject *resultobj = 0;
11629 PyObject *swig_obj[4] ;
11637 arg1 = (
PLFLT)(val1);
11642 arg2 = (
PLFLT)(val2);
11647 arg3 = (
PLFLT)(val3);
11652 arg4 = (
PLFLT)(val4);
11662 PyObject *resultobj = 0;
11681 PyObject *swig_obj[6] ;
11689 arg1 = (
PLINT)(val1);
11694 arg2 = (
PLINT)(val2);
11699 arg3 = (
PLINT)(val3);
11704 arg4 = (
PLINT)(val4);
11709 arg5 = (
PLFLT)(val5);
11714 arg6 = (
PLFLT)(val6);
11715 plsdimap(arg1,arg2,arg3,arg4,arg5,arg6);
11724 PyObject *resultobj = 0;
11728 PyObject *swig_obj[1] ;
11732 swig_obj[0] = args;
11737 arg1 = (
PLFLT)(val1);
11747 PyObject *resultobj = 0;
11760 PyObject *swig_obj[4] ;
11768 arg1 = (
PLFLT)(val1);
11773 arg2 = (
PLFLT)(val2);
11778 arg3 = (
PLFLT)(val3);
11783 arg4 = (
PLFLT)(val4);
11793 PyObject *resultobj = 0;
11806 PyObject *swig_obj[4] ;
11814 arg1 = (
PLFLT)(val1);
11819 arg2 = (
PLFLT)(val2);
11824 arg3 = (
PLFLT)(val3);
11829 arg4 = (
PLFLT)(val4);
11839 PyObject *resultobj = 0;
11840 unsigned int arg1 ;
11841 unsigned int val1 ;
11843 PyObject *swig_obj[1] ;
11847 swig_obj[0] = args;
11852 arg1 = (
unsigned int)(val1);
11862 PyObject *resultobj = 0;
11866 PyObject *swig_obj[1] ;
11870 swig_obj[0] = args;
11875 arg1 = (char)(val1);
11885 PyObject *resultobj = 0;
11886 char *arg1 = (
char *) 0 ;
11887 char *arg2 = (
char *) 0 ;
11894 PyObject *swig_obj[2] ;
11903 arg1 = (
char *)(buf1);
11908 arg2 = (
char *)(buf2);
11909 result = (
PLINT)
plsetopt((
char const *)arg1,(
char const *)arg2);
11922 PyObject *resultobj = 0;
11932 PyObject *swig_obj[3] ;
11940 arg1 = (
PLINT)(val1);
11945 arg2 = (
PLINT)(val2);
11950 arg3 = (
PLINT)(val3);
11960 PyObject *resultobj = 0;
11962 unsigned int val1 ;
11964 PyObject *swig_obj[1] ;
11968 swig_obj[0] = args;
11983 PyObject *resultobj = 0;
11984 char *arg1 = (
char *) 0 ;
11988 PyObject *swig_obj[1] ;
11992 swig_obj[0] = args;
11997 arg1 = (
char *)(buf1);
12009 PyObject *resultobj = 0;
12019 PyObject *swig_obj[3] ;
12027 arg1 = (
PLINT)(val1);
12032 arg2 = (
PLINT)(val2);
12037 arg3 = (
PLINT)(val3);
12047 PyObject *resultobj = 0;
12065 PyArrayObject *tmp1 = NULL ;
12074 PyArrayObject *tmp9 = NULL ;
12083 PyObject *swig_obj[12] ;
12103 if ( tmp1 == NULL )
12105 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12106 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12108 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12109 for ( i = 0; i < arg2; i++ )
12110 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12116 arg5 = (
PLFLT)(val5);
12121 arg6 = (
PLFLT)(val6);
12126 arg7 = (
PLFLT)(val7);
12131 arg8 = (
PLFLT)(val8);
12134 if ( tmp9 == NULL )
12136 arg10 = PyArray_DIMS( tmp9 )[0];
12137 arg9 = (
PLFLT *) PyArray_DATA( tmp9 );
12143 arg11 = (
PLFLT)(val11);
12148 arg12 = (
PLINT)(val12);
12153 arg13 = (
PLFLT)(val13);
12158 arg15 = (
PLBOOL)(val15);
12159 if (swig_obj[10]) {
12162 if ( swig_obj[10] == Py_None )
12168 if ( !PyCallable_Check( (PyObject *) swig_obj[10] ) )
12170 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12177 if (swig_obj[11]) {
12179 if ( swig_obj[11] == Py_None )
12187 plshades((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(
double const *)arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17);
12222 PyObject *resultobj = 0;
12244 PyArrayObject *tmp1 = NULL ;
12273 PyObject *swig_obj[17] ;
12293 if ( tmp1 == NULL )
12295 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12296 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12298 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12299 for ( i = 0; i < arg2; i++ )
12300 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12306 arg5 = (
PLFLT)(val5);
12311 arg6 = (
PLFLT)(val6);
12316 arg7 = (
PLFLT)(val7);
12321 arg8 = (
PLFLT)(val8);
12326 arg9 = (
PLFLT)(val9);
12331 arg10 = (
PLFLT)(val10);
12336 arg11 = (
PLINT)(val11);
12341 arg12 = (
PLFLT)(val12);
12346 arg13 = (
PLFLT)(val13);
12351 arg14 = (
PLINT)(val14);
12356 arg15 = (
PLFLT)(val15);
12361 arg16 = (
PLINT)(val16);
12366 arg17 = (
PLFLT)(val17);
12371 arg19 = (
PLBOOL)(val19);
12372 if (swig_obj[15]) {
12375 if ( swig_obj[15] == Py_None )
12381 if ( !PyCallable_Check( (PyObject *) swig_obj[15] ) )
12383 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12390 if (swig_obj[16]) {
12392 if ( swig_obj[16] == Py_None )
12400 plshade((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17,arg18,arg19,arg20,arg21);
12429 PyObject *resultobj = 0;
12433 PyObject *swig_obj[2] ;
12445 if ( swig_obj[0] == Py_None )
12451 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
12453 PyErr_SetString( PyExc_ValueError,
"label_func argument must be callable" );
12457 Py_XINCREF( (PyObject *) swig_obj[0] );
12476 PyObject *resultobj = 0;
12483 PyObject *swig_obj[2] ;
12491 arg1 = (
PLFLT)(val1);
12496 arg2 = (
PLFLT)(val2);
12506 PyObject *resultobj = 0;
12509 void *arg3 = (
void *) 0 ;
12514 PyObject *swig_obj[3] ;
12522 arg1 = (
PLINT)(val1);
12527 arg2 = (
PLINT)(val2);
12529 int res;
void *
buf = 0;
12530#ifndef Py_LIMITED_API
12532 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12534#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12535#pragma GCC diagnostic push
12536#pragma GCC diagnostic ignored "-Wdeprecated"
12537#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12538#elif defined(_MSC_VER)
12539#pragma warning(push)
12540#pragma warning(disable: 4996)
12543 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12544#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12545#pragma GCC diagnostic pop
12546#elif defined(_MSC_VER)
12547#pragma warning(pop)
12554#ifndef Py_LIMITED_API
12556 PyBuffer_Release(&view);
12558 arg3 = (
void *)
buf;
12569 PyObject *resultobj = 0;
12572 void *arg3 = (
void *) 0 ;
12577 PyObject *swig_obj[3] ;
12585 arg1 = (
PLINT)(val1);
12590 arg2 = (
PLINT)(val2);
12592 int res;
void *
buf = 0;
12593#ifndef Py_LIMITED_API
12595 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12597#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12598#pragma GCC diagnostic push
12599#pragma GCC diagnostic ignored "-Wdeprecated"
12600#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12601#elif defined(_MSC_VER)
12602#pragma warning(push)
12603#pragma warning(disable: 4996)
12606 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12607#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12608#pragma GCC diagnostic pop
12609#elif defined(_MSC_VER)
12610#pragma warning(pop)
12617#ifndef Py_LIMITED_API
12619 PyBuffer_Release(&view);
12621 arg3 = (
void *)
buf;
12632 PyObject *resultobj = 0;
12639 PyObject *swig_obj[2] ;
12647 arg1 = (
PLFLT)(val1);
12652 arg2 = (
PLFLT)(val2);
12662 PyObject *resultobj = 0;
12666 PyObject *swig_obj[1] ;
12670 swig_obj[0] = args;
12675 arg1 = (
PLINT)(val1);
12685 PyObject *resultobj = 0;
12704 PyObject *swig_obj[6] ;
12712 arg1 = (
PLFLT)(val1);
12717 arg2 = (
PLFLT)(val2);
12722 arg3 = (
PLINT)(val3);
12727 arg4 = (
PLINT)(val4);
12732 arg5 = (
PLINT)(val5);
12737 arg6 = (
PLINT)(val6);
12738 plspage(arg1,arg2,arg3,arg4,arg5,arg6);
12747 PyObject *resultobj = 0;
12748 char *arg1 = (
char *) 0 ;
12752 PyObject *swig_obj[1] ;
12756 swig_obj[0] = args;
12761 arg1 = (
char *)(buf1);
12773 PyObject *resultobj = 0;
12774 char *arg1 = (
char *) 0 ;
12781 PyObject *swig_obj[2] ;
12789 arg1 = (
char *)(buf1);
12795 plspal1((
char const *)arg1,arg2);
12806 PyObject *resultobj = 0;
12810 PyObject *swig_obj[1] ;
12814 swig_obj[0] = args;
12829 PyObject *resultobj = 0;
12833 PyObject *swig_obj[1] ;
12837 swig_obj[0] = args;
12842 arg1 = (
PLINT)(val1);
12852 PyObject *resultobj = 0;
12859 PyObject *swig_obj[2] ;
12867 arg1 = (
PLINT)(val1);
12872 arg2 = (
PLINT)(val2);
12882 PyObject *resultobj = 0;
12889 PyObject *swig_obj[2] ;
12897 arg1 = (
PLFLT)(val1);
12902 arg2 = (
PLFLT)(val2);
12912 PyObject *resultobj = 0;
12919 PyObject *swig_obj[2] ;
12927 arg1 = (
PLINT)(val1);
12932 arg2 = (
PLINT)(val2);
12942 PyObject *resultobj = 0;
12943 char *arg1 = (
char *) 0 ;
12953 PyObject *swig_obj[3] ;
12961 arg1 = (
char *)(buf1);
12966 arg2 = (
PLINT)(val2);
12971 arg3 = (
PLINT)(val3);
12972 plstart((
char const *)arg1,arg2,arg3);
12983 PyObject *resultobj = 0;
12987 PyObject *swig_obj[2] ;
13000 if ( swig_obj[0] == Py_None )
13006 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
13008 PyErr_SetString( PyExc_ValueError,
"coordinate transform argument must be callable" );
13030 PyObject *resultobj = 0;
13034 char *arg4 = (
char *) 0 ;
13035 PyArrayObject *tmp1 = NULL ;
13036 PyArrayObject *tmp3 = NULL ;
13040 PyObject *swig_obj[3] ;
13046 if ( tmp1 == NULL )
13048 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13049 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13053 if ( tmp3 == NULL )
13055 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13057 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13060 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13066 arg4 = (
char *)(buf4);
13067 plstring(arg1,(
double const *)arg2,(
double const *)arg3,(
char const *)arg4);
13090 PyObject *resultobj = 0;
13095 char *arg5 = (
char *) 0 ;
13096 PyArrayObject *tmp1 = NULL ;
13097 PyArrayObject *tmp3 = NULL ;
13098 PyArrayObject *tmp4 = NULL ;
13102 PyObject *swig_obj[4] ;
13108 if ( tmp1 == NULL )
13110 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13111 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13115 if ( tmp3 == NULL )
13117 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13119 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13122 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13126 if ( tmp4 == NULL )
13128 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
13130 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13133 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
13139 arg5 = (
char *)(buf5);
13140 plstring3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
char const *)arg5);
13169 PyObject *resultobj = 0;
13182 PyObject *swig_obj[4] ;
13190 arg1 = (
PLINT)(val1);
13195 arg2 = (
PLINT)(val2);
13200 arg3 = (
PLFLT)(val3);
13205 arg4 = (
PLFLT)(val4);
13215 PyObject *resultobj = 0;
13217 char *arg2 = (
char *) 0 ;
13218 char *arg3 = (
char *) 0 ;
13232 char **arg17 = (
char **) (
char **)0 ;
13233 char *arg18 = (
char *) 0 ;
13234 char *arg19 = (
char *) 0 ;
13235 char *arg20 = (
char *) 0 ;
13266 PyArrayObject *tmp15 = NULL ;
13267 PyArrayObject *tmp16 = NULL ;
13268 char **tmp17 = NULL ;
13278 PyObject *swig_obj[19] ;
13287 arg2 = (
char *)(buf2);
13292 arg3 = (
char *)(buf3);
13297 arg4 = (
PLFLT)(val4);
13302 arg5 = (
PLFLT)(val5);
13307 arg6 = (
PLFLT)(val6);
13312 arg7 = (
PLFLT)(val7);
13317 arg8 = (
PLFLT)(val8);
13322 arg9 = (
PLFLT)(val9);
13327 arg10 = (
PLFLT)(val10);
13332 arg11 = (
PLBOOL)(val11);
13337 arg12 = (
PLBOOL)(val12);
13342 arg13 = (
PLINT)(val13);
13347 arg14 = (
PLINT)(val14);
13350 if ( tmp15 == NULL )
13352 Alen = PyArray_DIMS( tmp15 )[0];
13353 arg15 = (
PLINT *) PyArray_DATA( tmp15 );
13357 if ( tmp16 == NULL )
13359 if ( PyArray_DIMS( tmp16 )[0] !=
Alen )
13361 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13364 arg16 = (
PLINT *) PyArray_DATA( tmp16 );
13368 PyObject *elt, *unicode_string;
13370 if ( !PySequence_Check( swig_obj[15] ) ||
PySequence_Size( swig_obj[15] ) != 4 )
13372 PyErr_SetString( PyExc_ValueError,
"Requires a sequence of 4 strings." );
13377 PyErr_SetString( PyExc_ValueError,
"colline and styline args must be length 4." );
13380 tmp17 = (
char **) malloc(
sizeof (
char* ) * 4 );
13381 if ( tmp17 == NULL )
13384 for ( i = 0; i < 4; i++ )
13388 if ( PyString_Check( elt ) )
13390 arg17[i] = PyString_AsString( elt );
13392 else if ( PyUnicode_Check( elt ) )
13394 unicode_string = PyUnicode_AsEncodedString( elt,
"utf-8",
"Error ~" );
13395 arg17[i] = PyBytes_AS_STRING( unicode_string );
13397 if ( arg17[i] == NULL )
13408 arg18 = (
char *)(buf18);
13413 arg19 = (
char *)(buf19);
13418 arg20 = (
char *)(buf20);
13419 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);
13462 PyObject *resultobj = 0;
13466 PyObject *swig_obj[1] ;
13470 swig_obj[0] = args;
13475 arg1 = (
PLINT)(val1);
13485 PyObject *resultobj = 0;
13489 PyArrayObject *tmp1 = NULL ;
13490 PyArrayObject *tmp3 = NULL ;
13491 PyObject *swig_obj[2] ;
13497 if ( tmp1 == NULL )
13499 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13500 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
13504 if ( tmp3 == NULL )
13506 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13508 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13511 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
13513 plstyl(arg1,(
int const *)arg2,(
int const *)arg3);
13534 PyObject *resultobj = 0;
13539 PyArrayObject *tmp1 = NULL ;
13540 PyArrayObject *tmp2 = NULL ;
13543 PyObject *swig_obj[3] ;
13548 if ( swig_obj[0] != Py_None )
13551 if ( tmp1 == NULL )
13553 Alen = PyArray_DIMS( tmp1 )[0];
13554 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
13563 if ( swig_obj[1] != Py_None )
13566 if ( tmp2 == NULL )
13568 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
13570 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13573 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
13574 arg3 = PyArray_DIMS( tmp2 )[0];
13587 plsvect((
double const *)arg1,(
double const *)arg2,arg3,arg4);
13608 PyObject *resultobj = 0;
13621 PyObject *swig_obj[4] ;
13629 arg1 = (
PLFLT)(val1);
13634 arg2 = (
PLFLT)(val2);
13639 arg3 = (
PLFLT)(val3);
13644 arg4 = (
PLFLT)(val4);
13645 plsvpa(arg1,arg2,arg3,arg4);
13654 PyObject *resultobj = 0;
13661 PyObject *swig_obj[2] ;
13669 arg1 = (
PLINT)(val1);
13674 arg2 = (
PLINT)(val2);
13684 PyObject *resultobj = 0;
13691 PyObject *swig_obj[2] ;
13699 arg1 = (
PLINT)(val1);
13704 arg2 = (
PLINT)(val2);
13714 PyObject *resultobj = 0;
13719 PyArrayObject *tmp1 = NULL ;
13720 PyArrayObject *tmp3 = NULL ;
13723 PyObject *swig_obj[3] ;
13729 if ( tmp1 == NULL )
13731 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13732 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13736 if ( tmp3 == NULL )
13738 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13740 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13743 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13749 arg4 = (
PLINT)(val4);
13750 plsym(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
13771 PyObject *resultobj = 0;
13778 PyObject *swig_obj[2] ;
13786 arg1 = (
PLINT)(val1);
13791 arg2 = (
PLINT)(val2);
13801 PyObject *resultobj = 0;
13814 PyObject *resultobj = 0;
13815 char *arg1 = (
char *) 0 ;
13819 PyObject *swig_obj[1] ;
13823 swig_obj[0] = args;
13828 arg1 = (
char *)(buf1);
13840 PyObject *resultobj = 0;
13844 PyObject *swig_obj[1] ;
13848 swig_obj[0] = args;
13853 arg1 = (
PLFLT)(val1);
13863 PyObject *resultobj = 0;
13871 PyArrayObject *tmp1 = NULL ;
13872 PyArrayObject *tmp2 = NULL ;
13875 PyObject *swig_obj[5] ;
13889 if ( tmp1 == NULL )
13891 Xlen = PyArray_DIMS( tmp1 )[0];
13892 Ylen = PyArray_DIMS( tmp1 )[1];
13895 for ( i = 0; i <
Xlen; i++ )
13896 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
13901 if ( tmp2 == NULL )
13903 if (
Xlen != PyArray_DIMS( tmp2 )[0] ||
Ylen != PyArray_DIMS( tmp2 )[1] )
13905 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
13908 arg3 = PyArray_DIMS( tmp2 )[0];
13909 arg4 = PyArray_DIMS( tmp2 )[1];
13911 arg2 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg3 );
13912 for ( i = 0; i < arg3; i++ )
13913 arg2[i] = ( (
PLFLT *) PyArray_DATA( tmp2 ) + i * size );
13919 arg5 = (
PLFLT)(val5);
13923 if ( swig_obj[3] == Py_None )
13929 if ( !PyCallable_Check( (PyObject *) swig_obj[3] ) )
13931 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
13940 if ( swig_obj[4] == Py_None )
13948 plvect((
double const **)arg1,(
double const **)arg2,arg3,arg4,arg5,arg6,arg7);
13985 PyObject *resultobj = 0;
14001 PyObject *swig_obj[5] ;
14009 arg1 = (
PLFLT)(val1);
14014 arg2 = (
PLFLT)(val2);
14019 arg3 = (
PLFLT)(val3);
14024 arg4 = (
PLFLT)(val4);
14029 arg5 = (
PLFLT)(val5);
14030 plvpas(arg1,arg2,arg3,arg4,arg5);
14039 PyObject *resultobj = 0;
14052 PyObject *swig_obj[4] ;
14060 arg1 = (
PLFLT)(val1);
14065 arg2 = (
PLFLT)(val2);
14070 arg3 = (
PLFLT)(val3);
14075 arg4 = (
PLFLT)(val4);
14076 plvpor(arg1,arg2,arg3,arg4);
14085 PyObject *resultobj = 0;
14098 PyObject *resultobj = 0;
14132 PyObject *swig_obj[11] ;
14140 arg1 = (
PLFLT)(val1);
14145 arg2 = (
PLFLT)(val2);
14150 arg3 = (
PLFLT)(val3);
14155 arg4 = (
PLFLT)(val4);
14160 arg5 = (
PLFLT)(val5);
14165 arg6 = (
PLFLT)(val6);
14170 arg7 = (
PLFLT)(val7);
14175 arg8 = (
PLFLT)(val8);
14180 arg9 = (
PLFLT)(val9);
14185 arg10 = (
PLFLT)(val10);
14190 arg11 = (
PLFLT)(val11);
14191 plw3d(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
14200 PyObject *resultobj = 0;
14204 PyObject *swig_obj[1] ;
14208 swig_obj[0] = args;
14213 arg1 = (
PLFLT)(val1);
14223 PyObject *resultobj = 0;
14236 PyObject *swig_obj[4] ;
14244 arg1 = (
PLFLT)(val1);
14249 arg2 = (
PLFLT)(val2);
14254 arg3 = (
PLFLT)(val3);
14259 arg4 = (
PLFLT)(val4);
14260 plwind(arg1,arg2,arg3,arg4);
14269 PyObject *resultobj = 0;
14276 PyObject *swig_obj[1] ;
14281 swig_obj[0] = args;
14302 PyObject *resultobj = 0;
14304 char *arg2 = (
char *) 0 ;
14320 PyObject *swig_obj[6] ;
14326 if ( swig_obj[0] == Py_None )
14332 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14334 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14344 arg2 = (
char *)(buf2);
14349 arg3 = (
PLFLT)(val3);
14354 arg4 = (
PLFLT)(val4);
14359 arg5 = (
PLFLT)(val5);
14364 arg6 = (
PLFLT)(val6);
14365 plmap(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6);
14382 PyObject *resultobj = 0;
14384 char *arg2 = (
char *) 0 ;
14402 PyArrayObject *tmp7 = NULL ;
14403 PyObject *swig_obj[7] ;
14409 if ( swig_obj[0] == Py_None )
14415 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14417 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14427 arg2 = (
char *)(buf2);
14432 arg3 = (
PLFLT)(val3);
14437 arg4 = (
PLFLT)(val4);
14442 arg5 = (
PLFLT)(val5);
14447 arg6 = (
PLFLT)(val6);
14449 if ( swig_obj[6] != Py_None )
14452 if ( tmp7 == NULL )
14454 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14455 arg8 = PyArray_DIMS( tmp7 )[0];
14463 plmapline(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14486 PyObject *resultobj = 0;
14488 char *arg2 = (
char *) 0 ;
14489 char *arg3 = (
char *) 0 ;
14510 PyArrayObject *tmp8 = NULL ;
14511 PyObject *swig_obj[8] ;
14517 if ( swig_obj[0] == Py_None )
14523 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14525 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14535 arg2 = (
char *)(buf2);
14540 arg3 = (
char *)(buf3);
14545 arg4 = (
PLFLT)(val4);
14550 arg5 = (
PLFLT)(val5);
14555 arg6 = (
PLFLT)(val6);
14560 arg7 = (
PLFLT)(val7);
14562 if ( swig_obj[7] != Py_None )
14565 if ( tmp8 == NULL )
14567 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
14568 arg9 = PyArray_DIMS( tmp8 )[0];
14576 plmapstring(arg1,(
char const *)arg2,(
char const *)arg3,arg4,arg5,arg6,arg7,(
int const *)arg8,arg9);
14601 PyObject *resultobj = 0;
14603 char *arg2 = (
char *) 0 ;
14607 char *arg6 = (
char *) 0 ;
14635 PyObject *swig_obj[11] ;
14641 if ( swig_obj[0] == Py_None )
14647 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14649 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14659 arg2 = (
char *)(buf2);
14664 arg3 = (
PLFLT)(val3);
14669 arg4 = (
PLFLT)(val4);
14674 arg5 = (
PLFLT)(val5);
14679 arg6 = (
char *)(buf6);
14684 arg7 = (
PLFLT)(val7);
14689 arg8 = (
PLFLT)(val8);
14694 arg9 = (
PLFLT)(val9);
14699 arg10 = (
PLFLT)(val10);
14704 arg11 = (
PLINT)(val11);
14705 plmaptex(arg1,(
char const *)arg2,arg3,arg4,arg5,(
char const *)arg6,arg7,arg8,arg9,arg10,arg11);
14724 PyObject *resultobj = 0;
14726 char *arg2 = (
char *) 0 ;
14744 PyArrayObject *tmp7 = NULL ;
14745 PyObject *swig_obj[7] ;
14751 if ( swig_obj[0] == Py_None )
14757 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14759 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14769 arg2 = (
char *)(buf2);
14774 arg3 = (
PLFLT)(val3);
14779 arg4 = (
PLFLT)(val4);
14784 arg5 = (
PLFLT)(val5);
14789 arg6 = (
PLFLT)(val6);
14791 if ( swig_obj[6] != Py_None )
14794 if ( tmp7 == NULL )
14796 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14797 arg8 = PyArray_DIMS( tmp7 )[0];
14805 plmapfill(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14828 PyObject *resultobj = 0;
14848 PyObject *swig_obj[7] ;
14854 if ( swig_obj[0] == Py_None )
14860 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14862 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14872 arg2 = (
PLFLT)(val2);
14877 arg3 = (
PLFLT)(val3);
14882 arg4 = (
PLFLT)(val4);
14887 arg5 = (
PLFLT)(val5);
14892 arg6 = (
PLFLT)(val6);
14897 arg7 = (
PLFLT)(val7);
14913 PyObject *resultobj = 0;
14927 PyArrayObject *tmp1 = NULL ;
14948 PyObject *swig_obj[11] ;
14955 if ( tmp1 == NULL )
14957 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
14958 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
14960 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
14961 for ( i = 0; i < arg2; i++ )
14962 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
14968 arg4 = (
PLFLT)(val4);
14973 arg5 = (
PLFLT)(val5);
14978 arg6 = (
PLFLT)(val6);
14983 arg7 = (
PLFLT)(val7);
14988 arg8 = (
PLFLT)(val8);
14993 arg9 = (
PLFLT)(val9);
14998 arg10 = (
PLFLT)(val10);
15003 arg11 = (
PLFLT)(val11);
15008 arg12 = (
PLFLT)(val12);
15013 arg13 = (
PLFLT)(val13);
15014 plimage((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15031 PyObject *resultobj = 0;
15045 PyArrayObject *tmp1 = NULL ;
15062 PyObject *swig_obj[11] ;
15076 if ( tmp1 == NULL )
15078 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15079 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15081 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15082 for ( i = 0; i < arg2; i++ )
15083 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15089 arg4 = (
PLFLT)(val4);
15094 arg5 = (
PLFLT)(val5);
15099 arg6 = (
PLFLT)(val6);
15104 arg7 = (
PLFLT)(val7);
15109 arg8 = (
PLFLT)(val8);
15114 arg9 = (
PLFLT)(val9);
15119 arg10 = (
PLFLT)(val10);
15124 arg11 = (
PLFLT)(val11);
15128 if ( swig_obj[9] == Py_None )
15134 if ( !PyCallable_Check( (PyObject *) swig_obj[9] ) )
15136 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
15143 if (swig_obj[10]) {
15145 if ( swig_obj[10] == Py_None )
15153 plimagefr((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15182 PyObject *resultobj = 0;
15195 PyObject *resultobj = 0;
15208 PyObject *resultobj = 0;
15209 char *arg1 = (
char *) 0 ;
15210 char *arg2 = (
char *) 0 ;
15217 PyObject *swig_obj[2] ;
15225 arg1 = (
char *)(buf1);
15230 arg2 = (
char *)(buf2);
15231 plSetUsage((
char const *)arg1,(
char const *)arg2);
15244 PyObject *resultobj = 0;
15257 PyObject *resultobj = 0;
15263 PyArrayObject *tmp1 = NULL ;
15268 PyObject *swig_obj[1] ;
15274 swig_obj[0] = args;
15278 if ( tmp1 == NULL )
15280 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15281 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15283 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15284 for ( i = 0; i < arg2; i++ )
15285 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15316 PyObject *resultobj = 0;
15320 PyObject *swig_obj[1] ;
15325 swig_obj[0] = args;
15373 "Set format of numerical label for contours\n"
15377 " Set format of numerical label for contours.\n"
15379 " Redacted form: pl_setcontlabelformat(lexp, sigdig)\n"
15381 " This function is used example 9.\n"
15387 "pl_setcontlabelformat(lexp, sigdig)\n"
15391 " lexp (PLINT, input) : If the contour numerical label is greater\n"
15392 " than 10^(lexp) or less than 10^(-lexp), then the exponential\n"
15393 " format is used. Default value of lexp is 4.\n"
15395 " sigdig (PLINT, input) : Number of significant digits. Default\n"
15400 "Set parameters of contour labelling other than format of numerical label\n"
15404 " Set parameters of contour labelling other than those handled by\n"
15405 " pl_setcontlabelformat.\n"
15407 " Redacted form: pl_setcontlabelparam(offset, size, spacing, active)\n"
15409 " This function is used in example 9.\n"
15415 "pl_setcontlabelparam(offset, size, spacing, active)\n"
15419 " offset (PLFLT, input) : Offset of label from contour line (if set\n"
15420 " to 0.0, labels are printed on the lines). Default value is 0.006.\n"
15422 " size (PLFLT, input) : Font height for contour labels (normalized).\n"
15423 " Default value is 0.3.\n"
15425 " spacing (PLFLT, input) : Spacing parameter for contour labels.\n"
15426 " Default value is 0.1.\n"
15428 " active (PLINT, input) : Activate labels. Set to 1 if you want\n"
15429 " contour labels on. Default is off (0).\n"
15433 "Advance the (sub-)page\n"
15437 " Advances to the next subpage if sub=0, performing a page advance if\n"
15438 " there are no remaining subpages on the current page. If subpages\n"
15439 " aren't being used, pladv(0) will always advance the page. If page>0,\n"
15440 " PLplot switches to the specified subpage. Note that this allows you\n"
15441 " to overwrite a plot on the specified subpage; if this is not what you\n"
15442 " intended, use pleop followed by plbop to first advance the page. This\n"
15443 " routine is called automatically (with page=0) by plenv, but if plenv\n"
15444 " is not used, pladv must be called after initializing PLplot but before\n"
15445 " defining the viewport.\n"
15447 " Redacted form: pladv(page)\n"
15449 " This function is used in examples 1, 2, 4, 6-12, 14-18, 20, 21, 23-27,\n"
15460 " page (PLINT, input) : Specifies the subpage number (starting from 1\n"
15461 " in the top left corner and increasing along the rows) to which to\n"
15462 " advance. Set to zero to advance to the next subpage (or to the\n"
15463 " next page if subpages are not being used).\n"
15467 "Draw a circular or elliptical arc\n"
15471 " Draw a possibly filled arc centered at x, y with semimajor axis a and\n"
15472 " semiminor axis b, starting at angle1 and ending at angle2.\n"
15474 " Redacted form: General: plarc(x, y, a, b, angle1, angle2, rotate,\n"
15478 " This function is used in examples 3 and 27.\n"
15484 "plarc(x, y, a, b, angle1, angle2, rotate, fill)\n"
15488 " x (PLFLT, input) : X coordinate of arc center.\n"
15490 " y (PLFLT, input) : Y coordinate of arc center.\n"
15492 " a (PLFLT, input) : Length of the semimajor axis of the arc.\n"
15494 " b (PLFLT, input) : Length of the semiminor axis of the arc.\n"
15496 " angle1 (PLFLT, input) : Starting angle of the arc relative to the\n"
15497 " semimajor axis.\n"
15499 " angle2 (PLFLT, input) : Ending angle of the arc relative to the\n"
15500 " semimajor axis.\n"
15502 " rotate (PLFLT, input) : Angle of the semimajor axis relative to the\n"
15505 " fill (PLBOOL, input) : Draw a filled arc.\n"
15509 "Draw a box with axes, etc. with arbitrary origin\n"
15513 " Draws a box around the currently defined viewport with arbitrary\n"
15514 " world-coordinate origin specified by x0 and y0 and labels it with\n"
15515 " world coordinate values appropriate to the window. Thus plaxes should\n"
15516 " only be called after defining both viewport and window. The ascii\n"
15517 " character strings xopt and yopt specify how the box should be drawn as\n"
15518 " described below. If ticks and/or subticks are to be drawn for a\n"
15519 " particular axis, the tick intervals and number of subintervals may be\n"
15520 " specified explicitly, or they may be defaulted by setting the\n"
15521 " appropriate arguments to zero.\n"
15523 " Redacted form: General: plaxes(x0, y0, xopt, xtick, nxsub, yopt,\n"
15527 " This function is not used in any examples.\n"
15533 "plaxes(x0, y0, xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15537 " x0 (PLFLT, input) : World X coordinate of origin.\n"
15539 " y0 (PLFLT, input) : World Y coordinate of origin.\n"
15541 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15542 " options for the x axis. The string can include any combination of\n"
15543 " the following letters (upper or lower case) in any order: a: Draws\n"
15544 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15546 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15547 " c: Draws top (X) or right (Y) edge of frame.\n"
15548 " d: Plot labels as date / time. Values are assumed to be\n"
15549 " seconds since the epoch (as used by gmtime).\n"
15550 " f: Always use fixed point numeric labels.\n"
15551 " g: Draws a grid at the major tick interval.\n"
15552 " h: Draws a grid at the minor tick interval.\n"
15553 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15555 " l: Labels axis logarithmically. This only affects the labels,\n"
15556 " not the data, and so it is necessary to compute the logarithms\n"
15557 " of data points before passing them to any of the drawing\n"
15559 " m: Writes numeric labels at major tick intervals in the\n"
15560 " unconventional location (above box for X, right of box for Y).\n"
15561 " n: Writes numeric labels at major tick intervals in the\n"
15562 " conventional location (below box for X, left of box for Y).\n"
15563 " o: Use custom labelling function to generate axis label text.\n"
15564 " The custom labelling function can be defined with the\n"
15565 " plslabelfunc command.\n"
15566 " s: Enables subticks between major ticks, only valid if t is\n"
15567 " also specified.\n"
15568 " t: Draws major ticks.\n"
15569 " u: Exactly like \"b\" except don't draw edge line.\n"
15570 " w: Exactly like \"c\" except don't draw edge line.\n"
15571 " x: Exactly like \"t\" (including the side effect of the\n"
15572 " numerical labels for the major ticks) except exclude drawing\n"
15573 " the major and minor tick marks.\n"
15576 " xtick (PLFLT, input) : World coordinate interval between major\n"
15577 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15578 " generates a suitable tick interval.\n"
15580 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15581 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15582 " generates a suitable minor tick interval.\n"
15584 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15585 " options for the y axis. The string can include any combination of\n"
15586 " the letters defined above for xopt, and in addition may contain:\n"
15587 " v: Write numeric labels for the y axis parallel to the base of the\n"
15588 " graph, rather than parallel to the axis.\n"
15591 " ytick (PLFLT, input) : World coordinate interval between major\n"
15592 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15593 " generates a suitable tick interval.\n"
15595 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15596 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15597 " generates a suitable minor tick interval.\n"
15601 "Plot a histogram from binned data\n"
15605 " Plots a histogram consisting of nbin bins. The value associated with\n"
15606 " the i'th bin is placed in x[i], and the number of points in the bin is\n"
15607 " placed in y[i]. For proper operation, the values in x[i] must form a\n"
15608 " strictly increasing sequence. By default, x[i] is the left-hand edge\n"
15609 " of the i'th bin. If opt=PL_BIN_CENTRED is used, the bin boundaries are\n"
15610 " placed midway between the values in the x vector. Also see plhist for\n"
15611 " drawing histograms from unbinned data.\n"
15613 " Redacted form: General: plbin(x, y, opt)\n"
15614 " Python: plbin(nbin, x, y, opt)\n"
15617 " This function is not used in any examples.\n"
15623 "plbin(nbin, x, y, opt)\n"
15627 " nbin (PLINT, input) : Number of bins (i.e., number of values in x\n"
15628 " and y vectors.)\n"
15630 " x (PLFLT_VECTOR, input) : A vector containing values associated\n"
15631 " with bins. These must form a strictly increasing sequence.\n"
15633 " y (PLFLT_VECTOR, input) : A vector containing a number which is\n"
15634 " proportional to the number of points in each bin. This is a PLFLT\n"
15635 " (instead of PLINT) vector so as to allow histograms of\n"
15636 " probabilities, etc.\n"
15638 " opt (PLINT, input) : Is a combination of several flags:\n"
15639 " opt=PL_BIN_DEFAULT: The x represent the lower bin boundaries, the\n"
15640 " outer bins are expanded to fill up the entire x-axis and bins of\n"
15641 " zero height are simply drawn.\n"
15642 " opt=PL_BIN_CENTRED|...: The bin boundaries are to be midway\n"
15643 " between the x values. If the values in x are equally spaced,\n"
15644 " the values are the center values of the bins.\n"
15645 " opt=PL_BIN_NOEXPAND|...: The outer bins are drawn with equal\n"
15646 " size as the ones inside.\n"
15647 " opt=PL_BIN_NOEMPTY|...: Bins with zero height are not drawn\n"
15648 " (there is a gap for such bins).\n"
15652 "Calculate broken-down time from continuous time for the current stream\n"
15656 " Calculate broken-down time; year, month, day, hour, min, sec; from\n"
15657 " continuous time, ctime for the current stream. This function is the\n"
15658 " inverse of plctime.\n"
15660 " The PLplot definition of broken-down time is a calendar time that\n"
15661 " completely ignores all time zone offsets, i.e., it is the user's\n"
15662 " responsibility to apply those offsets (if so desired) before using the\n"
15663 " PLplot time API. By default broken-down time is defined using the\n"
15664 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
15665 " continuous time is defined as the number of seconds since the Unix\n"
15666 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
15667 " broken-down and continuous time are possible, see plconfigtime.\n"
15669 " Redacted form: General: plbtime(year, month, day, hour, min, sec,\n"
15673 " This function is used in example 29.\n"
15679 "plbtime(year, month, day, hour, min, sec, ctime)\n"
15683 " year (PLINT_NC_SCALAR, output) : Returned value of years with\n"
15684 " positive values corresponding to CE (i.e., 1 = 1 CE, etc.) and\n"
15685 " non-negative values corresponding to BCE (e.g., 0 = 1 BCE, -1 = 2\n"
15688 " month (PLINT_NC_SCALAR, output) : Returned value of month within\n"
15689 " the year in the range from 0 (January) to 11 (December).\n"
15691 " day (PLINT_NC_SCALAR, output) : Returned value of day within the\n"
15692 " month in the range from 1 to 31.\n"
15694 " hour (PLINT_NC_SCALAR, output) : Returned value of hour within the\n"
15695 " day in the range from 0 to 23.\n"
15697 " min (PLINT_NC_SCALAR, output) : Returned value of minute within the\n"
15698 " hour in the range from 0 to 59\n"
15700 " sec (PLFLT_NC_SCALAR, output) : Returned value of second within the\n"
15701 " minute in range from 0. to 60.\n"
15703 " ctime (PLFLT, input) : Continuous time from which the broken-down\n"
15704 " time is calculated.\n"
15708 "Begin a new page\n"
15712 " Begins a new page. For a file driver, the output file is opened if\n"
15713 " necessary. Advancing the page via pleop and plbop is useful when a\n"
15714 " page break is desired at a particular point when plotting to subpages.\n"
15715 " Another use for pleop and plbop is when plotting pages to different\n"
15716 " files, since you can manually set the file name by calling plsfnam\n"
15717 " after the call to pleop. (In fact some drivers may only support a\n"
15718 " single page per file, making this a necessity.) One way to handle\n"
15719 " this case automatically is to page advance via pladv, but enable\n"
15720 " familying (see plsfam) with a small limit on the file size so that a\n"
15721 " new family member file will be created on each page break.\n"
15723 " Redacted form: plbop()\n"
15725 " This function is used in examples 2 and 20.\n"
15735 "Draw a box with axes, etc\n"
15739 " Draws a box around the currently defined viewport, and labels it with\n"
15740 " world coordinate values appropriate to the window. Thus plbox should\n"
15741 " only be called after defining both viewport and window. The ascii\n"
15742 " character strings xopt and yopt specify how the box should be drawn as\n"
15743 " described below. If ticks and/or subticks are to be drawn for a\n"
15744 " particular axis, the tick intervals and number of subintervals may be\n"
15745 " specified explicitly, or they may be defaulted by setting the\n"
15746 " appropriate arguments to zero.\n"
15748 " Redacted form: General: plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15751 " This function is used in examples 1, 2, 4, 6, 6-12, 14-18, 21, 23-26,\n"
15758 "plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15762 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15763 " options for the x axis. The string can include any combination of\n"
15764 " the following letters (upper or lower case) in any order: a: Draws\n"
15765 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15767 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15768 " c: Draws top (X) or right (Y) edge of frame.\n"
15769 " d: Plot labels as date / time. Values are assumed to be\n"
15770 " seconds since the epoch (as used by gmtime).\n"
15771 " f: Always use fixed point numeric labels.\n"
15772 " g: Draws a grid at the major tick interval.\n"
15773 " h: Draws a grid at the minor tick interval.\n"
15774 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15776 " l: Labels axis logarithmically. This only affects the labels,\n"
15777 " not the data, and so it is necessary to compute the logarithms\n"
15778 " of data points before passing them to any of the drawing\n"
15780 " m: Writes numeric labels at major tick intervals in the\n"
15781 " unconventional location (above box for X, right of box for Y).\n"
15782 " n: Writes numeric labels at major tick intervals in the\n"
15783 " conventional location (below box for X, left of box for Y).\n"
15784 " o: Use custom labelling function to generate axis label text.\n"
15785 " The custom labelling function can be defined with the\n"
15786 " plslabelfunc command.\n"
15787 " s: Enables subticks between major ticks, only valid if t is\n"
15788 " also specified.\n"
15789 " t: Draws major ticks.\n"
15790 " u: Exactly like \"b\" except don't draw edge line.\n"
15791 " w: Exactly like \"c\" except don't draw edge line.\n"
15792 " x: Exactly like \"t\" (including the side effect of the\n"
15793 " numerical labels for the major ticks) except exclude drawing\n"
15794 " the major and minor tick marks.\n"
15797 " xtick (PLFLT, input) : World coordinate interval between major\n"
15798 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15799 " generates a suitable tick interval.\n"
15801 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15802 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15803 " generates a suitable minor tick interval.\n"
15805 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15806 " options for the y axis. The string can include any combination of\n"
15807 " the letters defined above for xopt, and in addition may contain:\n"
15808 " v: Write numeric labels for the y axis parallel to the base of the\n"
15809 " graph, rather than parallel to the axis.\n"
15812 " ytick (PLFLT, input) : World coordinate interval between major\n"
15813 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15814 " generates a suitable tick interval.\n"
15816 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15817 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15818 " generates a suitable minor tick interval.\n"
15822 "Draw a box with axes, etc, in 3-d\n"
15826 " Draws axes, numeric and text labels for a three-dimensional surface\n"
15827 " plot. For a more complete description of three-dimensional plotting\n"
15828 " see the PLplot documentation.\n"
15830 " Redacted form: General: plbox3(xopt, xlabel, xtick, nxsub, yopt,\n"
15831 " ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15834 " This function is used in examples 8, 11, 18, and 21.\n"
15840 "plbox3(xopt, xlabel, xtick, nxsub, yopt, ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15844 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15845 " options for the x axis. The string can include any combination of\n"
15846 " the following letters (upper or lower case) in any order: b: Draws\n"
15847 " axis at base, at height z=\n"
15848 " zmin where zmin is defined by call to plw3d. This character must be\n"
15849 " specified in order to use any of the other options.\n"
15850 " d: Plot labels as date / time. Values are assumed to be\n"
15851 " seconds since the epoch (as used by gmtime).\n"
15852 " f: Always use fixed point numeric labels.\n"
15853 " i: Inverts tick marks, so they are drawn downwards, rather\n"
15855 " l: Labels axis logarithmically. This only affects the labels,\n"
15856 " not the data, and so it is necessary to compute the logarithms\n"
15857 " of data points before passing them to any of the drawing\n"
15859 " n: Writes numeric labels at major tick intervals.\n"
15860 " o: Use custom labelling function to generate axis label text.\n"
15861 " The custom labelling function can be defined with the\n"
15862 " plslabelfunc command.\n"
15863 " s: Enables subticks between major ticks, only valid if t is\n"
15864 " also specified.\n"
15865 " t: Draws major ticks.\n"
15866 " u: If this is specified, the text label for the axis is\n"
15867 " written under the axis.\n"
15870 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15871 " the text label for the x axis. It is only drawn if u is in the\n"
15874 " xtick (PLFLT, input) : World coordinate interval between major\n"
15875 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15876 " generates a suitable tick interval.\n"
15878 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15879 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15880 " generates a suitable minor tick interval.\n"
15882 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15883 " options for the y axis. The string is interpreted in the same way\n"
15886 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15887 " the text label for the y axis. It is only drawn if u is in the\n"
15890 " ytick (PLFLT, input) : World coordinate interval between major\n"
15891 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15892 " generates a suitable tick interval.\n"
15894 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15895 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15896 " generates a suitable minor tick interval.\n"
15898 " zopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15899 " options for the z axis. The string can include any combination of\n"
15900 " the following letters (upper or lower case) in any order: b: Draws\n"
15901 " z axis to the left of the surface plot.\n"
15902 " c: Draws z axis to the right of the surface plot.\n"
15903 " d: Draws grid lines parallel to the x-y plane behind the\n"
15904 " figure. These lines are not drawn until after plot3d or\n"
15905 " plmesh are called because of the need for hidden line removal.\n"
15906 " e: Plot labels as date / time. Values are assumed to be\n"
15907 " seconds since the epoch (as used by gmtime). Note this\n"
15908 " suboption is interpreted the same as the d suboption for xopt\n"
15909 " and yopt, but it has to be identified as e for zopt since d\n"
15910 " has already been used for the different purpose above.\n"
15911 " f: Always use fixed point numeric labels.\n"
15912 " i: Inverts tick marks, so they are drawn away from the center.\n"
15913 " l: Labels axis logarithmically. This only affects the labels,\n"
15914 " not the data, and so it is necessary to compute the logarithms\n"
15915 " of data points before passing them to any of the drawing\n"
15917 " m: Writes numeric labels at major tick intervals on the\n"
15918 " right-hand z axis.\n"
15919 " n: Writes numeric labels at major tick intervals on the\n"
15920 " left-hand z axis.\n"
15921 " o: Use custom labelling function to generate axis label text.\n"
15922 " The custom labelling function can be defined with the\n"
15923 " plslabelfunc command.\n"
15924 " s: Enables subticks between major ticks, only valid if t is\n"
15925 " also specified.\n"
15926 " t: Draws major ticks.\n"
15927 " u: If this is specified, the text label is written beside the\n"
15928 " left-hand axis.\n"
15929 " v: If this is specified, the text label is written beside the\n"
15930 " right-hand axis.\n"
15933 " zlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15934 " the text label for the z axis. It is only drawn if u or v are in\n"
15935 " the zopt string.\n"
15937 " ztick (PLFLT, input) : World coordinate interval between major\n"
15938 " ticks on the z axis. If it is set to zero, PLplot automatically\n"
15939 " generates a suitable tick interval.\n"
15941 " nzsub (PLINT, input) : Number of subintervals between major z axis\n"
15942 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15943 " generates a suitable minor tick interval.\n"
15947 "Calculate world coordinates and corresponding window index from relative device coordinates\n"
15951 " Calculate world coordinates, wx and wy, and corresponding window index\n"
15952 " from relative device coordinates, rx and ry.\n"
15954 " Redacted form: General: plcalc_world(rx, ry, wx, wy, window)\n"
15957 " This function is used in example 31.\n"
15963 "plcalc_world(rx, ry, wx, wy, window)\n"
15967 " rx (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15968 " the x coordinate.\n"
15970 " ry (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15971 " the y coordinate.\n"
15973 " wx (PLFLT_NC_SCALAR, output) : Returned value of the x world\n"
15974 " coordinate corresponding to the relative device coordinates rx and\n"
15977 " wy (PLFLT_NC_SCALAR, output) : Returned value of the y world\n"
15978 " coordinate corresponding to the relative device coordinates rx and\n"
15981 " window (PLINT_NC_SCALAR, output) : Returned value of the last\n"
15982 " defined window index that corresponds to the input relative device\n"
15983 " coordinates (and the returned world coordinates). To give some\n"
15984 " background on the window index, for each page the initial window\n"
15985 " index is set to zero, and each time plwind is called within the\n"
15986 " page, world and device coordinates are stored for the window and\n"
15987 " the window index is incremented. Thus, for a simple page layout\n"
15988 " with non-overlapping viewports and one window per viewport, window\n"
15989 " corresponds to the viewport index (in the order which the\n"
15990 " viewport/windows were created) of the only viewport/window\n"
15991 " corresponding to rx and ry. However, for more complicated layouts\n"
15992 " with potentially overlapping viewports and possibly more than one\n"
15993 " window (set of world coordinates) per viewport, window and the\n"
15994 " corresponding output world coordinates corresponds to the last\n"
15995 " window created that fulfills the criterion that the relative\n"
15996 " device coordinates are inside it. Finally, in all cases where the\n"
15997 " input relative device coordinates are not inside any\n"
15998 " viewport/window, then the returned value of the last defined\n"
15999 " window index is set to -1.\n"
16003 "Clear current (sub)page\n"
16007 " Clears the current page, effectively erasing everything that have been\n"
16008 " drawn. This command only works with interactive drivers; if the\n"
16009 " driver does not support this, the page is filled with the background\n"
16010 " color in use. If the current page is divided into subpages, only the\n"
16011 " current subpage is erased. The nth subpage can be selected with\n"
16014 " Redacted form: General: plclear()\n"
16017 " This function is not used in any examples.\n"
16027 "Set color, cmap0\n"
16031 " Sets the color index for cmap0 (see the PLplot documentation).\n"
16033 " Redacted form: plcol0(icol0)\n"
16035 " This function is used in examples 1-9, 11-16, 18-27, and 29.\n"
16045 " icol0 (PLINT, input) : Integer representing the color. The\n"
16046 " defaults at present are (these may change):\n"
16047 " 0 black (default background)\n"
16048 " 1 red (default foreground)\n"
16064 " Use plscmap0 to change the entire cmap0 color palette and plscol0 to\n"
16065 " change an individual color in the cmap0 color palette.\n"
16069 "Set color, cmap1\n"
16073 " Sets the color for cmap1 (see the PLplot documentation).\n"
16075 " Redacted form: plcol1(col1)\n"
16077 " This function is used in examples 12 and 21.\n"
16087 " col1 (PLFLT, input) : This value must be in the range (0.0-1.0) and\n"
16088 " is mapped to color using the continuous cmap1 palette which by\n"
16089 " default ranges from blue to the background color to red. The\n"
16090 " cmap1 palette can also be straightforwardly changed by the user\n"
16091 " with plscmap1 or plscmap1l.\n"
16095 "Configure the transformation between continuous and broken-down time for the current stream\n"
16099 " Configure the transformation between continuous and broken-down time\n"
16100 " for the current stream. This transformation is used by both plbtime\n"
16103 " Redacted form: General: plconfigtime(scale, offset1, offset2,\n"
16104 " ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16107 " This function is used in example 29.\n"
16113 "plconfigtime(scale, offset1, offset2, ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16117 " scale (PLFLT, input) : The number of days per continuous time unit.\n"
16118 " As a special case, if\n"
16119 " scale is 0., then all other arguments are ignored, and the result (the\n"
16120 " default used by PLplot) is the equivalent of a call to\n"
16121 " plconfigtime(1./86400., 0., 0., 0x0, 1, 1970, 0, 1, 0, 0, 0.).\n"
16122 " That is, for this special case broken-down time is calculated with\n"
16123 " the proleptic Gregorian calendar with no leap seconds inserted,\n"
16124 " and the continuous time is defined as the number of seconds since\n"
16125 " the Unix epoch of 1970-01-01T00:00:00Z.\n"
16127 " offset1 (PLFLT, input) : If\n"
16128 " ifbtime_offset is true, the parameters\n"
16130 " offset2 are completely ignored. Otherwise, the sum of these parameters\n"
16131 " (with units in days) specify the epoch of the continuous time\n"
16132 " relative to the MJD epoch corresponding to the Gregorian calendar\n"
16133 " date of 1858-11-17T00:00:00Z or JD = 2400000.5. Two PLFLT numbers\n"
16134 " are used to specify the origin to allow users (by specifying\n"
16135 " offset1 as an integer that can be exactly represented by a\n"
16136 " floating-point variable and specifying\n"
16137 " offset2 as a number in the range from 0. to 1) the chance to minimize\n"
16138 " the numerical errors of the continuous time representation.\n"
16140 " offset2 (PLFLT, input) : See documentation of\n"
16143 " ccontrol (PLINT, input) : ccontrol contains bits controlling the\n"
16144 " transformation. If the 0x1 bit is set, then the proleptic Julian\n"
16145 " calendar is used for broken-down time rather than the proleptic\n"
16146 " Gregorian calendar. If the 0x2 bit is set, then leap seconds that\n"
16147 " have been historically used to define UTC are inserted into the\n"
16148 " broken-down time. Other possibilities for additional control bits\n"
16149 " for ccontrol exist such as making the historical time corrections\n"
16150 " in the broken-down time corresponding to ET (ephemeris time) or\n"
16151 " making the (slightly non-constant) corrections from international\n"
16152 " atomic time (TAI) to what astronomers define as terrestrial time\n"
16153 " (TT). But those additional possibilities have not been\n"
16154 " implemented yet in the qsastime library (one of the PLplot utility\n"
16157 " ifbtime_offset (PLBOOL, input) : ifbtime_offset controls how the\n"
16158 " epoch of the continuous time scale is specified by the user. If\n"
16159 " ifbtime_offset is false, then\n"
16161 " offset2 are used to specify the epoch, and the following broken-down\n"
16162 " time parameters are completely ignored. If\n"
16163 " ifbtime_offset is true, then\n"
16165 " offset2 are completely ignored, and the following broken-down time\n"
16166 " parameters are used to specify the epoch.\n"
16168 " year (PLINT, input) : Year of epoch.\n"
16170 " month (PLINT, input) : Month of epoch in range from 0 (January) to\n"
16171 " 11 (December).\n"
16173 " day (PLINT, input) : Day of epoch in range from 1 to 31.\n"
16175 " hour (PLINT, input) : Hour of epoch in range from 0 to 23\n"
16177 " min (PLINT, input) : Minute of epoch in range from 0 to 59.\n"
16179 " sec (PLFLT, input) : Second of epoch in range from 0. to 60.\n"
16187 " Draws a contour plot of the data in f[\n"
16189 " ny], using the nlevel contour levels specified by clevel. Only the\n"
16190 " region of the matrix from kx to lx and from ky to ly is plotted out\n"
16191 " where all these index ranges are interpreted as one-based for\n"
16192 " historical reasons. A transformation routine pointed to by pltr with\n"
16193 " a generic pointer pltr_data for additional data required by the\n"
16194 " transformation routine is used to map indices within the matrix to the\n"
16195 " world coordinates.\n"
16197 " Redacted form: plcont(f, kx, lx, ky, ly, clevel, pltr, pltr_data)\n"
16198 " where (see above discussion) the pltr, pltr_data callback arguments\n"
16199 " are sometimes replaced by a tr vector with 6 elements; xg and yg\n"
16200 " vectors; or xg and yg matrices.\n"
16202 " This function is used in examples 9, 14, 16, and 22.\n"
16208 "plcont(f, nx, ny, kx, lx, ky, ly, clevel, nlevel, pltr, pltr_data)\n"
16212 " f (PLFLT_MATRIX, input) : A matrix containing data to be contoured.\n"
16214 " nx, ny (PLINT, input) : The dimensions of the matrix f.\n"
16216 " kx, lx (PLINT, input) : Range of x indices to consider where 0 <=\n"
16217 " kx-1 < lx-1 < nx. Values of kx and lx are one-based rather than\n"
16218 " zero-based for historical backwards-compatibility reasons.\n"
16220 " ky, ly (PLINT, input) : Range of y indices to consider where 0 <=\n"
16221 " ky-1 < ly-1 < ny. Values of ky and ly are one-based rather than\n"
16222 " zero-based for historical backwards-compatibility reasons.\n"
16224 " clevel (PLFLT_VECTOR, input) : A vector specifying the levels at\n"
16225 " which to draw contours.\n"
16227 " nlevel (PLINT, input) : Number of contour levels to draw.\n"
16229 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
16230 " defines the transformation between the zero-based indices of the\n"
16231 " matrix f and the world coordinates.For the C case, transformation\n"
16232 " functions are provided in the PLplot library: pltr0 for the\n"
16233 " identity mapping, and pltr1 and pltr2 for arbitrary mappings\n"
16234 " respectively defined by vectors and matrices. In addition, C\n"
16235 " callback routines for the transformation can be supplied by the\n"
16236 " user such as the mypltr function in examples/c/x09c.c which\n"
16237 " provides a general linear transformation between index coordinates\n"
16238 " and world coordinates.For languages other than C you should\n"
16239 " consult the PLplot documentation for the details concerning how\n"
16240 " PLTRANSFORM_callback arguments are interfaced. However, in\n"
16241 " general, a particular pattern of callback-associated arguments\n"
16242 " such as a tr vector with 6 elements; xg and yg vectors; or xg and\n"
16243 " yg matrices are respectively interfaced to a linear-transformation\n"
16244 " routine similar to the above mypltr function; pltr1; and pltr2.\n"
16245 " Furthermore, some of our more sophisticated bindings (see, e.g.,\n"
16246 " the PLplot documentation) support native language callbacks for\n"
16247 " handling index to world-coordinate transformations. Examples of\n"
16248 " these various approaches are given in examples/<language>x09*,\n"
16249 " examples/<language>x16*, examples/<language>x20*,\n"
16250 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
16251 " supported languages.\n"
16253 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
16254 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
16255 " that is externally supplied.\n"
16259 "Calculate continuous time from broken-down time for the current stream\n"
16263 " Calculate continuous time, ctime, from broken-down time for the\n"
16264 " current stream. The broken-down\n"
16265 " time is specified by the following parameters: year, month, day, hour,\n"
16266 " min, and sec. This function is the inverse of plbtime.\n"
16268 " The PLplot definition of broken-down time is a calendar time that\n"
16269 " completely ignores all time zone offsets, i.e., it is the user's\n"
16270 " responsibility to apply those offsets (if so desired) before using the\n"
16271 " PLplot time API. By default broken-down time is defined using the\n"
16272 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
16273 " continuous time is defined as the number of seconds since the Unix\n"
16274 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
16275 " broken-down and continuous time are possible, see plconfigtime which\n"
16276 " specifies that transformation for the current stream.\n"
16278 " Redacted form: General: plctime(year, month, day, hour, min, sec,\n"
16282 " This function is used in example 29.\n"
16288 "plctime(year, month, day, hour, min, sec, ctime)\n"
16292 " year (PLINT, input) : Input year.\n"
16294 " month (PLINT, input) : Input month in range from 0 (January) to 11\n"
16297 " day (PLINT, input) : Input day in range from 1 to 31.\n"
16299 " hour (PLINT, input) : Input hour in range from 0 to 23\n"
16301 " min (PLINT, input) : Input minute in range from 0 to 59.\n"
16303 " sec (PLFLT, input) : Input second in range from 0. to 60.\n"
16305 " ctime (PLFLT_NC_SCALAR, output) : Returned value of the continuous\n"
16306 " time calculated from the broken-down time specified by the\n"
16307 " previous parameters.\n"
16311 "Copy state parameters from the reference stream to the current stream\n"
16315 " Copies state parameters from the reference stream to the current\n"
16316 " stream. Tell driver interface to map device coordinates unless flags\n"
16319 " This function is used for making save files of selected plots (e.g.\n"
16320 " from the TK driver). After initializing, you can get a copy of the\n"
16321 " current plot to the specified device by switching to this stream and\n"
16322 " issuing a plcpstrm and a plreplot, with calls to plbop and pleop as\n"
16323 " appropriate. The plot buffer must have previously been enabled (done\n"
16324 " automatically by some display drivers, such as X).\n"
16326 " Redacted form: plcpstrm(iplsr, flags)\n"
16328 " This function is used in example 1,20.\n"
16334 "plcpstrm(iplsr, flags)\n"
16338 " iplsr (PLINT, input) : Number of reference stream.\n"
16340 " flags (PLBOOL, input) : If flags is set to true the device\n"
16341 " coordinates are not copied from the reference to current stream.\n"
16345 "End plotting session\n"
16349 " Ends a plotting session, tidies up all the output files, switches\n"
16350 " interactive devices back into text mode and frees up any memory that\n"
16351 " was allocated. Must be called before end of program.\n"
16353 " By default, PLplot's interactive devices (Xwin, TK, etc.) go into a\n"
16354 " wait state after a call to plend or other functions which trigger the\n"
16355 " end of a plot page. To avoid this, use the plspause function.\n"
16357 " Redacted form: plend()\n"
16359 " This function is used in all of the examples.\n"
16369 "End plotting session for current stream\n"
16373 " Ends a plotting session for the current output stream only. See\n"
16374 " plsstrm for more info.\n"
16376 " Redacted form: plend1()\n"
16378 " This function is used in examples 1 and 20.\n"
16388 "Set up standard window and draw box\n"
16392 " Sets up plotter environment for simple graphs by calling pladv and\n"
16393 " setting up viewport and window to sensible default values. plenv\n"
16394 " leaves a standard margin (left-hand margin of eight character heights,\n"
16395 " and a margin around the other three sides of five character heights)\n"
16396 " around most graphs for axis labels and a title. When these defaults\n"
16397 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16398 " plvasp for setting up the viewport, plwind for defining the window,\n"
16399 " and plbox for drawing the box.\n"
16401 " Redacted form: plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16403 " This function is used in example 1,3,9,13,14,19-22,29.\n"
16409 "plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16413 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16414 " world coordinates).\n"
16416 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16417 " world coordinates).\n"
16419 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16422 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16425 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16426 " scales will not be set, the user must set up the scale before\n"
16427 " calling plenv using plsvpa, plvasp or other.\n"
16428 " 0: the x and y axes are scaled independently to use as much of\n"
16429 " the screen as possible.\n"
16430 " 1: the scales of the x and y axes are made equal.\n"
16431 " 2: the axis of the x and y axes are made equal, and the plot\n"
16432 " box will be square.\n"
16435 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16436 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16437 " -1: draw box only.\n"
16438 " 0: draw box, ticks, and numeric tick labels.\n"
16439 " 1: also draw coordinate axes at x=0 and y=0.\n"
16440 " 2: also draw a grid at major tick positions in both\n"
16442 " 3: also draw a grid at minor tick positions in both\n"
16444 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16445 " have to be converted to logarithms separately.)\n"
16446 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16447 " have to be converted to logarithms separately.)\n"
16448 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16449 " have to be converted to logarithms separately.)\n"
16450 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16451 " have to be converted to logarithms separately.)\n"
16452 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16453 " have to be converted to logarithms separately.)\n"
16454 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16455 " have to be converted to logarithms separately.)\n"
16456 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16457 " have to be converted to logarithms separately.)\n"
16458 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16459 " have to be converted to logarithms separately.)\n"
16460 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16461 " and y data have to be converted to logarithms separately.)\n"
16462 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16463 " and y data have to be converted to logarithms separately.)\n"
16464 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16465 " and y data have to be converted to logarithms separately.)\n"
16466 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16467 " and y data have to be converted to logarithms separately.)\n"
16468 " 40: same as 0 except date / time x labels.\n"
16469 " 41: same as 1 except date / time x labels.\n"
16470 " 42: same as 2 except date / time x labels.\n"
16471 " 43: same as 3 except date / time x labels.\n"
16472 " 50: same as 0 except date / time y labels.\n"
16473 " 51: same as 1 except date / time y labels.\n"
16474 " 52: same as 2 except date / time y labels.\n"
16475 " 53: same as 3 except date / time y labels.\n"
16476 " 60: same as 0 except date / time x and y labels.\n"
16477 " 61: same as 1 except date / time x and y labels.\n"
16478 " 62: same as 2 except date / time x and y labels.\n"
16479 " 63: same as 3 except date / time x and y labels.\n"
16480 " 70: same as 0 except custom x and y labels.\n"
16481 " 71: same as 1 except custom x and y labels.\n"
16482 " 72: same as 2 except custom x and y labels.\n"
16483 " 73: same as 3 except custom x and y labels.\n"
16487 "Same as plenv but if in multiplot mode does not advance the subpage, instead clears it\n"
16491 " Sets up plotter environment for simple graphs by calling pladv and\n"
16492 " setting up viewport and window to sensible default values. plenv0\n"
16493 " leaves a standard margin (left-hand margin of eight character heights,\n"
16494 " and a margin around the other three sides of five character heights)\n"
16495 " around most graphs for axis labels and a title. When these defaults\n"
16496 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16497 " plvasp for setting up the viewport, plwind for defining the window,\n"
16498 " and plbox for drawing the box.\n"
16500 " Redacted form: plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16502 " This function is used in example 21.\n"
16508 "plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16512 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16513 " world coordinates).\n"
16515 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16516 " world coordinates).\n"
16518 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16521 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16524 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16525 " scales will not be set, the user must set up the scale before\n"
16526 " calling plenv0 using plsvpa, plvasp or other.\n"
16527 " 0: the x and y axes are scaled independently to use as much of\n"
16528 " the screen as possible.\n"
16529 " 1: the scales of the x and y axes are made equal.\n"
16530 " 2: the axis of the x and y axes are made equal, and the plot\n"
16531 " box will be square.\n"
16534 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16535 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16536 " -1: draw box only.\n"
16537 " 0: draw box, ticks, and numeric tick labels.\n"
16538 " 1: also draw coordinate axes at x=0 and y=0.\n"
16539 " 2: also draw a grid at major tick positions in both\n"
16541 " 3: also draw a grid at minor tick positions in both\n"
16543 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16544 " have to be converted to logarithms separately.)\n"
16545 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16546 " have to be converted to logarithms separately.)\n"
16547 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16548 " have to be converted to logarithms separately.)\n"
16549 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16550 " have to be converted to logarithms separately.)\n"
16551 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16552 " have to be converted to logarithms separately.)\n"
16553 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16554 " have to be converted to logarithms separately.)\n"
16555 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16556 " have to be converted to logarithms separately.)\n"
16557 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16558 " have to be converted to logarithms separately.)\n"
16559 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16560 " and y data have to be converted to logarithms separately.)\n"
16561 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16562 " and y data have to be converted to logarithms separately.)\n"
16563 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16564 " and y data have to be converted to logarithms separately.)\n"
16565 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16566 " and y data have to be converted to logarithms separately.)\n"
16567 " 40: same as 0 except date / time x labels.\n"
16568 " 41: same as 1 except date / time x labels.\n"
16569 " 42: same as 2 except date / time x labels.\n"
16570 " 43: same as 3 except date / time x labels.\n"
16571 " 50: same as 0 except date / time y labels.\n"
16572 " 51: same as 1 except date / time y labels.\n"
16573 " 52: same as 2 except date / time y labels.\n"
16574 " 53: same as 3 except date / time y labels.\n"
16575 " 60: same as 0 except date / time x and y labels.\n"
16576 " 61: same as 1 except date / time x and y labels.\n"
16577 " 62: same as 2 except date / time x and y labels.\n"
16578 " 63: same as 3 except date / time x and y labels.\n"
16579 " 70: same as 0 except custom x and y labels.\n"
16580 " 71: same as 1 except custom x and y labels.\n"
16581 " 72: same as 2 except custom x and y labels.\n"
16582 " 73: same as 3 except custom x and y labels.\n"
16586 "Eject current page\n"
16590 " Clears the graphics screen of an interactive device, or ejects a page\n"
16591 " on a plotter. See plbop for more information.\n"
16593 " Redacted form: pleop()\n"
16595 " This function is used in example 2,14.\n"
16605 "Draw error bars in x direction\n"
16609 " Draws a set of n error bars in x direction, the i'th error bar\n"
16610 " extending from xmin[i] to xmax[i] at y coordinate y[i]. The terminals\n"
16611 " of the error bars are of length equal to the minor tick length\n"
16612 " (settable using plsmin).\n"
16614 " Redacted form: General: plerrx(xmin, ymax, y)\n"
16617 " This function is used in example 29.\n"
16623 "plerrx(n, xmin, xmax, y)\n"
16627 " n (PLINT, input) : Number of error bars to draw.\n"
16629 " xmin (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16630 " of the left-hand endpoints of the error bars.\n"
16632 " xmax (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16633 " of the right-hand endpoints of the error bars.\n"
16635 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16636 " the error bars.\n"
16640 "Draw error bars in the y direction\n"
16644 " Draws a set of n error bars in the y direction, the i'th error bar\n"
16645 " extending from ymin[i] to ymax[i] at x coordinate x[i]. The terminals\n"
16646 " of the error bars are of length equal to the minor tick length\n"
16647 " (settable using plsmin).\n"
16649 " Redacted form: General: plerry(x, ymin, ymax)\n"
16652 " This function is used in example 29.\n"
16658 "plerry(n, x, ymin, ymax)\n"
16662 " n (PLINT, input) : Number of error bars to draw.\n"
16664 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16665 " the error bars.\n"
16667 " ymin (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16668 " of the lower endpoints of the error bars.\n"
16670 " ymax (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16671 " of the upper endpoints of the error bars.\n"
16675 "Advance to the next family file on the next new page\n"
16679 " Advance to the next family file on the next new page.\n"
16681 " Redacted form: plfamadv()\n"
16683 " This function is not used in any examples.\n"
16693 "Draw filled polygon\n"
16697 " Fills the polygon defined by the n points (\n"
16699 " y[i]) using the pattern defined by plpsty or plpat. The default fill\n"
16700 " style is a solid fill. The routine will automatically close the\n"
16701 " polygon between the last and first vertices. If multiple closed\n"
16702 " polygons are passed in x and y then plfill will fill in between them.\n"
16704 " Redacted form: plfill(x,y)\n"
16706 " This function is used in examples 12, 13, 15, 16, 21, 24, and 25.\n"
16712 "plfill(n, x, y)\n"
16716 " n (PLINT, input) : Number of vertices in polygon.\n"
16718 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16721 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16726 "Draw filled polygon in 3D\n"
16730 " Fills the 3D polygon defined by the n points in the x, y, and z\n"
16731 " vectors using the pattern defined by plpsty or plpat. The routine\n"
16732 " will automatically close the polygon between the last and first\n"
16733 " vertices. If multiple closed polygons are passed in x, y, and z then\n"
16734 " plfill3 will fill in between them.\n"
16736 " Redacted form: General: plfill3(x, y, z)\n"
16739 " This function is used in example 15.\n"
16745 "plfill3(n, x, y, z)\n"
16749 " n (PLINT, input) : Number of vertices in polygon.\n"
16751 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16754 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16757 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
16762 "Draw linear gradient inside polygon\n"
16766 " Draw a linear gradient using cmap1 inside the polygon defined by the n\n"
16769 " y[i]). Interpretation of the polygon is the same as for plfill. The\n"
16770 " polygon coordinates and the gradient angle are all expressed in world\n"
16771 " coordinates. The angle from the x axis for both the rotated\n"
16772 " coordinate system and the gradient vector is specified by angle. The\n"
16773 " magnitude of the gradient vector is the difference between the maximum\n"
16774 " and minimum values of x for the vertices in the rotated coordinate\n"
16775 " system. The origin of the gradient vector can be interpreted as being\n"
16776 " anywhere on the line corresponding to the minimum x value for the\n"
16777 " vertices in the rotated coordinate system. The distance along the\n"
16778 " gradient vector is linearly transformed to the independent variable of\n"
16779 " color map 1 which ranges from 0. at the tail of the gradient vector to\n"
16780 " 1. at the head of the gradient vector. What is drawn is the RGBA\n"
16781 " color corresponding to the independent variable of cmap1. For more\n"
16782 " information about cmap1 (see the PLplot documentation).\n"
16784 " Redacted form: plgradient(x,y,angle)\n"
16786 " This function is used in examples 25 and 30.\n"
16792 "plgradient(n, x, y, angle)\n"
16796 " n (PLINT, input) : Number of vertices in polygon.\n"
16798 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16801 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16804 " angle (PLFLT, input) : Angle (degrees) of gradient vector from x\n"
16809 "Flushes the output stream\n"
16813 " Flushes the output stream. Use sparingly, if at all.\n"
16815 " Redacted form: plflush()\n"
16817 " This function is used in examples 1 and 14.\n"
16831 " Sets the font used for subsequent text and symbols. For devices that\n"
16832 " still use Hershey fonts this routine has no effect unless the Hershey\n"
16833 " fonts with extended character set are loaded (see plfontld). For\n"
16834 " unicode-aware devices that use system fonts instead of Hershey fonts,\n"
16835 " this routine calls the plsfci routine with argument set up\n"
16836 " appropriately for the various cases below. However, this method of\n"
16837 " specifying the font for unicode-aware devices is deprecated, and the\n"
16838 " much more flexible method of calling plsfont directly is recommended\n"
16839 " instead (where plsfont provides a user-friendly interface to plsfci),\n"
16841 " Redacted form: plfont(ifont)\n"
16843 " This function is used in examples 1, 2, 4, 7, 13, 24, and 26.\n"
16853 " ifont (PLINT, input) : Specifies the font: 1: Sans serif font\n"
16854 " (simplest and fastest)\n"
16856 " 3: Italic font\n"
16857 " 4: Script font\n"
16861 "Load Hershey fonts\n"
16865 " Loads the Hershey fonts used for text and symbols. This routine may\n"
16866 " be called before or after initializing PLplot. If not explicitly\n"
16867 " called before PLplot initialization, then by default that\n"
16868 " initialization loads Hershey fonts with the extended character set.\n"
16869 " This routine only has a practical effect for devices that still use\n"
16870 " Hershey fonts (as opposed to modern devices that use unicode-aware\n"
16871 " system fonts instead of Hershey fonts).\n"
16873 " Redacted form: plfontld(fnt)\n"
16875 " This function is used in examples 1 and 7.\n"
16885 " fnt (PLINT, input) : Specifies the type of Hershey fonts to load.\n"
16886 " A zero value specifies Hershey fonts with the standard character\n"
16887 " set and a non-zero value (the default assumed if plfontld is never\n"
16888 " called) specifies Hershey fonts with the extended character set.\n"
16892 "Get character default height and current (scaled) height\n"
16896 " Get character default height and current (scaled) height.\n"
16898 " Redacted form: plgchr(p_def, p_ht)\n"
16900 " This function is used in example 23.\n"
16906 "plgchr(p_def, p_ht)\n"
16910 " p_def (PLFLT_NC_SCALAR, output) : Returned value of the default\n"
16911 " character height (mm).\n"
16913 " p_ht (PLFLT_NC_SCALAR, output) : Returned value of the scaled\n"
16914 " character height (mm).\n"
16918 "Returns 8-bit RGB values for given color index from cmap0\n"
16922 " Returns 8-bit RGB values (0-255) for given color from cmap0 (see the\n"
16923 " PLplot documentation). Values are negative if an invalid color id is\n"
16926 " Redacted form: plgcol0(icol0, r, g, b)\n"
16928 " This function is used in example 2.\n"
16934 "plgcol0(icol0, r, g, b)\n"
16938 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16940 " r (PLINT_NC_SCALAR, output) : Returned value of the 8-bit red\n"
16943 " g (PLINT_NC_SCALAR, output) : Returned value of the 8-bit green\n"
16946 " b (PLINT_NC_SCALAR, output) : Returned value of the 8-bit blue\n"
16951 "Returns 8-bit RGB values and PLFLT alpha transparency value for given color index from cmap0\n"
16955 " Returns 8-bit RGB values (0-255) and PLFLT alpha transparency value\n"
16956 " (0.0-1.0) for given color from cmap0 (see the PLplot documentation).\n"
16957 " Values are negative if an invalid color id is given.\n"
16959 " Redacted form: plgcola(r, g, b)\n"
16961 " This function is used in example 30.\n"
16967 "plgcol0a(icol0, r, g, b, alpha)\n"
16971 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16973 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16974 " in the range from 0 to 255.\n"
16976 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16977 " in the range from 0 to 255.\n"
16979 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16980 " in the range from 0 to 255.\n"
16982 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
16983 " transparency in the range from (0.0-1.0).\n"
16987 "Returns the background color (cmap0[0]) by 8-bit RGB value\n"
16991 " Returns the background color (cmap0[0]) by 8-bit RGB value.\n"
16993 " Redacted form: plgcolbg(r, g, b)\n"
16995 " This function is used in example 31.\n"
17001 "plgcolbg(r, g, b)\n"
17005 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17006 " in the range from 0 to 255.\n"
17008 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17009 " in the range from 0 to 255.\n"
17011 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17012 " in the range from 0 to 255.\n"
17016 "Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT alpha transparency value\n"
17020 " Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT\n"
17021 " alpha transparency value.\n"
17023 " This function is used in example 31.\n"
17029 "plgcolbga(r, g, b, alpha)\n"
17033 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17034 " in the range from 0 to 255.\n"
17036 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17037 " in the range from 0 to 255.\n"
17039 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17040 " in the range from 0 to 255.\n"
17042 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
17043 " transparency in the range (0.0-1.0).\n"
17047 "Get the current device-compression setting\n"
17051 " Get the current device-compression setting. This parameter is only\n"
17052 " used for drivers that provide compression.\n"
17054 " Redacted form: plgcompression(compression)\n"
17056 " This function is used in example 31.\n"
17062 "plgcompression(compression)\n"
17066 " compression (PLINT_NC_SCALAR, output) : Returned value of the\n"
17067 " compression setting for the current device.\n"
17071 "Get the current device (keyword) name\n"
17075 " Get the current device (keyword) name. Note: you must have allocated\n"
17076 " space for this (80 characters is safe).\n"
17078 " Redacted form: plgdev(p_dev)\n"
17080 " This function is used in example 14.\n"
17090 " p_dev (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17091 " (with preallocated length of 80 characters or more) containing the\n"
17092 " device (keyword) name.\n"
17096 "Get parameters that define current device-space window\n"
17100 " Get relative margin width, aspect ratio, and relative justification\n"
17101 " that define current device-space window. If plsdidev has not been\n"
17102 " called the default values pointed to by p_mar, p_aspect, p_jx, and\n"
17103 " p_jy will all be 0.\n"
17105 " Redacted form: plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17107 " This function is used in example 31.\n"
17113 "plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17117 " p_mar (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17120 " p_aspect (PLFLT_NC_SCALAR, output) : Returned value of the aspect\n"
17123 " p_jx (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17124 " justification in x.\n"
17126 " p_jy (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17127 " justification in y.\n"
17131 "Get plot orientation\n"
17135 " Get plot orientation parameter which is multiplied by 90 degrees to\n"
17136 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
17137 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
17138 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
17139 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
17140 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori has\n"
17141 " not been called the default value pointed to by p_rot will be 0.\n"
17143 " Redacted form: plgdiori(p_rot)\n"
17145 " This function is not used in any examples.\n"
17151 "plgdiori(p_rot)\n"
17155 " p_rot (PLFLT_NC_SCALAR, output) : Returned value of the orientation\n"
17160 "Get parameters that define current plot-space window\n"
17164 " Get relative minima and maxima that define current plot-space window.\n"
17165 " If plsdiplt has not been called the default values pointed to by\n"
17166 " p_xmin, p_ymin, p_xmax, and p_ymax will be 0., 0., 1., and 1.\n"
17168 " Redacted form: plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17170 " This function is used in example 31.\n"
17176 "plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17180 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17183 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17186 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17189 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17194 "Get family file parameters\n"
17198 " Gets information about current family file, if familying is enabled.\n"
17199 " See the PLplot documentation for more information.\n"
17201 " Redacted form: plgfam(p_fam, p_num, p_bmax)\n"
17203 " This function is used in examples 14 and 31.\n"
17209 "plgfam(p_fam, p_num, p_bmax)\n"
17213 " p_fam (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17214 " family flag value. If nonzero, familying is enabled for the\n"
17215 " current device.\n"
17217 " p_num (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17218 " family file number.\n"
17220 " p_bmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17221 " file size (in bytes) for a family file.\n"
17225 "Get FCI (font characterization integer)\n"
17229 " Gets information about the current font using the FCI approach. See\n"
17230 " the PLplot documentation for more information.\n"
17232 " Redacted form: plgfci(p_fci)\n"
17234 " This function is used in example 23.\n"
17244 " p_fci (PLUNICODE_NC_SCALAR, output) : Returned value of the current\n"
17249 "Get output file name\n"
17253 " Gets the current output file name, if applicable.\n"
17255 " Redacted form: plgfnam(fnam)\n"
17257 " This function is used in example 31.\n"
17267 " fnam (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17268 " (with preallocated length of 80 characters or more) containing the\n"
17273 "Get family, style and weight of the current font\n"
17277 " Gets information about current font. See the PLplot documentation for\n"
17278 " more information on font selection.\n"
17280 " Redacted form: plgfont(p_family, p_style, p_weight)\n"
17282 " This function is used in example 23.\n"
17288 "plgfont(p_family, p_style, p_weight)\n"
17292 " p_family (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17293 " font family. The available values are given by the PL_FCI_*\n"
17294 " constants in plplot.h. Current options are PL_FCI_SANS,\n"
17295 " PL_FCI_SERIF, PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. If\n"
17296 " p_family is NULL then the font family is not returned.\n"
17298 " p_style (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17299 " font style. The available values are given by the PL_FCI_*\n"
17300 " constants in plplot.h. Current options are PL_FCI_UPRIGHT,\n"
17301 " PL_FCI_ITALIC and PL_FCI_OBLIQUE. If p_style is NULL then the font\n"
17302 " style is not returned.\n"
17304 " p_weight (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17305 " font weight. The available values are given by the PL_FCI_*\n"
17306 " constants in plplot.h. Current options are PL_FCI_MEDIUM and\n"
17307 " PL_FCI_BOLD. If p_weight is NULL then the font weight is not\n"
17312 "Get the (current) run level\n"
17316 " Get the (current) run level. Valid settings are: 0, uninitialized\n"
17317 " 1, initialized\n"
17318 " 2, viewport defined\n"
17319 " 3, world coordinates defined\n"
17322 " Redacted form: plglevel(p_level)\n"
17324 " This function is used in example 31.\n"
17330 "plglevel(p_level)\n"
17334 " p_level (PLINT_NC_SCALAR, output) : Returned value of the run\n"
17339 "Get page parameters\n"
17343 " Gets the current page configuration. The length and offset values are\n"
17344 " expressed in units that are specific to the current driver. For\n"
17345 " instance: screen drivers will usually interpret them as number of\n"
17346 " pixels, whereas printer drivers will usually use mm.\n"
17348 " Redacted form: plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17350 " This function is used in examples 14 and 31.\n"
17356 "plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17360 " p_xp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17361 " pixels/inch (DPI) in x.\n"
17363 " p_yp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17364 " pixels/inch (DPI) in y.\n"
17366 " p_xleng (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17369 " p_yleng (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17372 " p_xoff (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17375 " p_yoff (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17380 "Switch to graphics screen\n"
17384 " Sets an interactive device to graphics mode, used in conjunction with\n"
17385 " pltext to allow graphics and text to be interspersed. On a device\n"
17386 " which supports separate text and graphics windows, this command causes\n"
17387 " control to be switched to the graphics window. If already in graphics\n"
17388 " mode, this command is ignored. It is also ignored on devices which\n"
17389 " only support a single window or use a different method for shifting\n"
17390 " focus. See also pltext.\n"
17392 " Redacted form: plgra()\n"
17394 " This function is used in example 1.\n"
17404 "Grid data from irregularly sampled data\n"
17408 " Real world data is frequently irregularly sampled, but PLplot 3D plots\n"
17409 " require data organized as a grid, i.e., with x sample point values\n"
17410 " independent of y coordinate and vice versa. This function takes\n"
17411 " irregularly sampled data from the x[npts], y[npts], and z[npts]\n"
17412 " vectors; reads the desired grid location from the input vectors\n"
17413 " xg[nptsx] and yg[nptsy]; and returns the interpolated result on that\n"
17414 " grid using the output matrix zg[nptsx][nptsy]. The algorithm used to\n"
17415 " interpolate the data to the grid is specified with the argument type\n"
17416 " which can have one parameter specified in argument data.\n"
17418 " Redacted form: General: plgriddata(x, y, z, xg, yg, zg, type, data)\n"
17419 " Python: zg=plgriddata(x, y, z, xg, yg, type, data)\n"
17422 " This function is used in example 21.\n"
17428 "plgriddata(x, y, z, npts, xg, nptsx, yg, nptsy, zg, type, data)\n"
17432 " x (PLFLT_VECTOR, input) : The input x vector.\n"
17434 " y (PLFLT_VECTOR, input) : The input y vector.\n"
17436 " z (PLFLT_VECTOR, input) : The input z vector. Each triple x[i],\n"
17437 " y[i], z[i] represents one data sample coordinate.\n"
17439 " npts (PLINT, input) : The number of data samples in the x, y and z\n"
17442 " xg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17443 " in the x direction. Usually xg has nptsx equally spaced values\n"
17444 " from the minimum to the maximum values of the x input vector.\n"
17446 " nptsx (PLINT, input) : The number of points in the xg vector.\n"
17448 " yg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17449 " in the y direction. Similar to the xg parameter.\n"
17451 " nptsy (PLINT, input) : The number of points in the yg vector.\n"
17453 " zg (PLFLT_NC_MATRIX, output) : The matrix of interpolated results\n"
17454 " where data lies in the grid specified by xg and yg. Therefore the\n"
17455 " zg matrix must be dimensioned\n"
17459 " type (PLINT, input) : The type of grid interpolation algorithm to\n"
17460 " use, which can be: GRID_CSA: Bivariate Cubic Spline approximation\n"
17461 " GRID_DTLI: Delaunay Triangulation Linear Interpolation\n"
17462 " GRID_NNI: Natural Neighbors Interpolation\n"
17463 " GRID_NNIDW: Nearest Neighbors Inverse Distance Weighted\n"
17464 " GRID_NNLI: Nearest Neighbors Linear Interpolation\n"
17465 " GRID_NNAIDW: Nearest Neighbors Around Inverse Distance\n"
17467 " For details of the algorithms read the source file plgridd.c.\n"
17469 " data (PLFLT, input) : Some gridding algorithms require extra data,\n"
17470 " which can be specified through this argument. Currently, for\n"
17471 " algorithm: GRID_NNIDW, data specifies the number of neighbors to\n"
17472 " use, the lower the value, the noisier (more local) the\n"
17473 " approximation is.\n"
17474 " GRID_NNLI, data specifies what a thin triangle is, in the\n"
17475 " range [1. .. 2.]. High values enable the usage of very thin\n"
17476 " triangles for interpolation, possibly resulting in error in\n"
17477 " the approximation.\n"
17478 " GRID_NNI, only weights greater than data will be accepted. If\n"
17479 " 0, all weights will be accepted.\n"
17483 "Get current subpage parameters\n"
17487 " Gets the size of the current subpage in millimeters measured from the\n"
17488 " bottom left hand corner of the output device page or screen. Can be\n"
17489 " used in conjunction with plsvpa for setting the size of a viewport in\n"
17490 " absolute coordinates (millimeters).\n"
17492 " Redacted form: plgspa(xmin, xmax, ymin, ymax)\n"
17494 " This function is used in example 23.\n"
17500 "plgspa(xmin, xmax, ymin, ymax)\n"
17504 " xmin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17505 " the left hand edge of the subpage in millimeters.\n"
17507 " xmax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17508 " the right hand edge of the subpage in millimeters.\n"
17510 " ymin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17511 " the bottom edge of the subpage in millimeters.\n"
17513 " ymax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17514 " the top edge of the subpage in millimeters.\n"
17518 "Get current stream number\n"
17522 " Gets the number of the current output stream. See also plsstrm.\n"
17524 " Redacted form: plgstrm(p_strm)\n"
17526 " This function is used in example 1,20.\n"
17532 "plgstrm(p_strm)\n"
17536 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17541 "Get the current library version number\n"
17545 " Get the current library version number. Note: you must have allocated\n"
17546 " space for this (80 characters is safe).\n"
17548 " Redacted form: plgver(p_ver)\n"
17550 " This function is used in example 1.\n"
17560 " p_ver (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17561 " (with preallocated length of 80 characters or more) containing the\n"
17562 " PLplot version number.\n"
17566 "Get viewport limits in normalized device coordinates\n"
17570 " Get viewport limits in normalized device coordinates.\n"
17572 " Redacted form: General: plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17575 " This function is used in example 31.\n"
17581 "plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17585 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17586 " viewport limit of the normalized device coordinate in x.\n"
17588 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17589 " viewport limit of the normalized device coordinate in x.\n"
17591 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17592 " viewport limit of the normalized device coordinate in y.\n"
17594 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17595 " viewport limit of the normalized device coordinate in y.\n"
17599 "Get viewport limits in world coordinates\n"
17603 " Get viewport limits in world coordinates.\n"
17605 " Redacted form: General: plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17608 " This function is used in example 31.\n"
17614 "plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17618 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17619 " viewport limit of the world coordinate in x.\n"
17621 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17622 " viewport limit of the world coordinate in x.\n"
17624 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17625 " viewport limit of the world coordinate in y.\n"
17627 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17628 " viewport limit of the world coordinate in y.\n"
17632 "Get x axis parameters\n"
17636 " Returns current values of the p_digmax and p_digits flags for the x\n"
17637 " axis. p_digits is updated after the plot is drawn, so this routine\n"
17638 " should only be called after the call to plbox (or plbox3) is complete.\n"
17639 " See the PLplot documentation for more information.\n"
17641 " Redacted form: plgxax(p_digmax, p_digits)\n"
17643 " This function is used in example 31.\n"
17649 "plgxax(p_digmax, p_digits)\n"
17653 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17654 " number of digits for the x axis. If nonzero, the printed label\n"
17655 " has been switched to a floating-point representation when the\n"
17656 " number of digits exceeds this value.\n"
17658 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17659 " number of digits for the numeric labels (x axis) from the last\n"
17664 "Get y axis parameters\n"
17668 " Identical to plgxax, except that arguments are flags for y axis. See\n"
17669 " the description of plgxax for more detail.\n"
17671 " Redacted form: plgyax(p_digmax, p_digits)\n"
17673 " This function is used in example 31.\n"
17679 "plgyax(p_digmax, p_digits)\n"
17683 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17684 " number of digits for the y axis. If nonzero, the printed label\n"
17685 " has been switched to a floating-point representation when the\n"
17686 " number of digits exceeds this value.\n"
17688 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17689 " number of digits for the numeric labels (y axis) from the last\n"
17694 "Get z axis parameters\n"
17698 " Identical to plgxax, except that arguments are flags for z axis. See\n"
17699 " the description of plgxax for more detail.\n"
17701 " Redacted form: plgzax(p_digmax, p_digits)\n"
17703 " This function is used in example 31.\n"
17709 "plgzax(p_digmax, p_digits)\n"
17713 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17714 " number of digits for the z axis. If nonzero, the printed label\n"
17715 " has been switched to a floating-point representation when the\n"
17716 " number of digits exceeds this value.\n"
17718 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17719 " number of digits for the numeric labels (z axis) from the last\n"
17724 "Plot a histogram from unbinned data\n"
17728 " Plots a histogram from n data points stored in the data vector. This\n"
17729 " routine bins the data into nbin bins equally spaced between datmin and\n"
17730 " datmax, and calls plbin to draw the resulting histogram. Parameter\n"
17731 " opt allows, among other things, the histogram either to be plotted in\n"
17732 " an existing window or causes plhist to call plenv with suitable limits\n"
17733 " before plotting the histogram.\n"
17735 " Redacted form: plhist(data, datmin, datmax, nbin, opt)\n"
17737 " This function is used in example 5.\n"
17743 "plhist(n, data, datmin, datmax, nbin, opt)\n"
17747 " n (PLINT, input) : Number of data points.\n"
17749 " data (PLFLT_VECTOR, input) : A vector containing the values of the\n"
17750 " n data points.\n"
17752 " datmin (PLFLT, input) : Left-hand edge of lowest-valued bin.\n"
17754 " datmax (PLFLT, input) : Right-hand edge of highest-valued bin.\n"
17756 " nbin (PLINT, input) : Number of (equal-sized) bins into which to\n"
17757 " divide the interval xmin to xmax.\n"
17759 " opt (PLINT, input) : Is a combination of several flags:\n"
17760 " opt=PL_HIST_DEFAULT: The axes are automatically rescaled to fit\n"
17761 " the histogram data, the outer bins are expanded to fill up the\n"
17762 " entire x-axis, data outside the given extremes are assigned to the\n"
17763 " outer bins and bins of zero height are simply drawn.\n"
17764 " opt=PL_HIST_NOSCALING|...: The existing axes are not rescaled\n"
17765 " to fit the histogram data, without this flag, plenv is called\n"
17766 " to set the world coordinates.\n"
17767 " opt=PL_HIST_IGNORE_OUTLIERS|...: Data outside the given\n"
17768 " extremes are not taken into account. This option should\n"
17769 " probably be combined with opt=PL_HIST_NOEXPAND|..., so as to\n"
17770 " properly present the data.\n"
17771 " opt=PL_HIST_NOEXPAND|...: The outer bins are drawn with equal\n"
17772 " size as the ones inside.\n"
17773 " opt=PL_HIST_NOEMPTY|...: Bins with zero height are not drawn\n"
17774 " (there is a gap for such bins).\n"
17778 "Convert HLS color to RGB\n"
17782 " Convert HLS color coordinates to RGB.\n"
17784 " Redacted form: General: plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17787 " This function is used in example 2.\n"
17793 "plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17797 " h (PLFLT, input) : Hue in degrees (0.0-360.0) on the color\n"
17800 " l (PLFLT, input) : Lightness expressed as a fraction (0.0-1.0) of\n"
17801 " the axis of the color cylinder.\n"
17803 " s (PLFLT, input) : Saturation expressed as a fraction (0.0-1.0) of\n"
17804 " the radius of the color cylinder.\n"
17806 " p_r (PLFLT_NC_SCALAR, output) : Returned value of the red intensity\n"
17807 " (0.0-1.0) of the color.\n"
17809 " p_g (PLFLT_NC_SCALAR, output) : Returned value of the green\n"
17810 " intensity (0.0-1.0) of the color.\n"
17812 " p_b (PLFLT_NC_SCALAR, output) : Returned value of the blue\n"
17813 " intensity (0.0-1.0) of the color.\n"
17817 "Initialize PLplot\n"
17821 " Initializing the plotting package. The program prompts for the device\n"
17822 " keyword or number of the desired output device. Hitting a RETURN in\n"
17823 " response to the prompt is the same as selecting the first device.\n"
17824 " plinit will issue no prompt if either the device was specified\n"
17825 " previously (via command line flag, the plsetopt function, or the\n"
17826 " plsdev function), or if only one device is enabled when PLplot is\n"
17827 " installed. If subpages have been specified, the output device is\n"
17828 " divided into nx by ny subpages, each of which may be used\n"
17829 " independently. If plinit is called again during a program, the\n"
17830 " previously opened file will be closed. The subroutine pladv is used\n"
17831 " to advance from one subpage to the next.\n"
17833 " Redacted form: plinit()\n"
17835 " This function is used in all of the examples.\n"
17845 "Draw a line between two points\n"
17849 " Joins the point (\n"
17855 " Redacted form: pljoin(x1,y1,x2,y2)\n"
17857 " This function is used in examples 3 and 14.\n"
17863 "pljoin(x1, y1, x2, y2)\n"
17867 " x1 (PLFLT, input) : x coordinate of first point.\n"
17869 " y1 (PLFLT, input) : y coordinate of first point.\n"
17871 " x2 (PLFLT, input) : x coordinate of second point.\n"
17873 " y2 (PLFLT, input) : y coordinate of second point.\n"
17877 "Simple routine to write labels\n"
17881 " Routine for writing simple labels. Use plmtex for more complex labels.\n"
17883 " Redacted form: pllab(xlabel, ylabel, tlabel)\n"
17885 " This function is used in examples 1, 5, 9, 12, 14-16, 20-22, and 29.\n"
17891 "pllab(xlabel, ylabel, tlabel)\n"
17895 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17896 " the label for the x axis.\n"
17898 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17899 " the label for the y axis.\n"
17901 " tlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17902 " the title of the plot.\n"
17906 "Plot legend using discretely annotated filled boxes, lines, and/or lines of symbols\n"
17910 " Routine for creating a discrete plot legend with a plotted filled box,\n"
17911 " line, and/or line of symbols for each annotated legend entry. (See\n"
17912 " plcolorbar for similar functionality for creating continuous color\n"
17913 " bars.) The arguments of pllegend provide control over the location\n"
17914 " and size of the legend as well as the location and characteristics of\n"
17915 " the elements (most of which are optional) within that legend. The\n"
17916 " resulting legend is clipped at the boundaries of the current subpage.\n"
17917 " (N.B. the adopted coordinate system used for some of the parameters is\n"
17918 " defined in the documentation of the position parameter.)\n"
17920 " Redacted form: pllegend(p_legend_width, p_legend_height, opt,\n"
17921 " position, x, y, plot_width, bg_color, bb_color, bb_style, nrow,\n"
17922 " ncolumn, opt_array, text_offset, text_scale, text_spacing,\n"
17923 " test_justification, text_colors, text, box_colors, box_patterns,\n"
17924 " box_scales, box_line_widths, line_colors, line_styles, line_widths,\n"
17925 " symbol_colors, symbol_scales, symbol_numbers, symbols)\n"
17927 " This function is used in examples 4, 26, and 33.\n"
17933 "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"
17937 " p_legend_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17938 " legend width in adopted coordinates. This quantity is calculated\n"
17939 " from plot_width, text_offset, ncolumn (possibly modified inside\n"
17940 " the routine depending on nlegend and nrow), and the length\n"
17941 " (calculated internally) of the longest text string.\n"
17943 " p_legend_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17944 " legend height in adopted coordinates. This quantity is calculated\n"
17945 " from text_scale, text_spacing, and nrow (possibly modified inside\n"
17946 " the routine depending on nlegend and nrow).\n"
17948 " opt (PLINT, input) : opt contains bits controlling the overall\n"
17949 " legend. If the PL_LEGEND_TEXT_LEFT bit is set, put the text area\n"
17950 " on the left of the legend and the plotted area on the right.\n"
17951 " Otherwise, put the text area on the right of the legend and the\n"
17952 " plotted area on the left. If the PL_LEGEND_BACKGROUND bit is set,\n"
17953 " plot a (semitransparent) background for the legend. If the\n"
17954 " PL_LEGEND_BOUNDING_BOX bit is set, plot a bounding box for the\n"
17955 " legend. If the PL_LEGEND_ROW_MAJOR bit is set and (both of the\n"
17956 " possibly internally transformed) nrow > 1 and ncolumn > 1, then\n"
17957 " plot the resulting array of legend entries in row-major order.\n"
17958 " Otherwise, plot the legend entries in column-major order.\n"
17960 " position (PLINT, input) : position contains bits which control the\n"
17961 " overall position of the legend and the definition of the adopted\n"
17962 " coordinates used for positions just like what is done for the\n"
17963 " position argument for plcolorbar. However, note that the defaults\n"
17964 " for the position bits (see below) are different than the\n"
17965 " plcolorbar case. The combination of the PL_POSITION_LEFT,\n"
17966 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
17967 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
17968 " the 16 possible standard positions (the 4 corners and centers of\n"
17969 " the 4 sides for both the inside and outside cases) of the legend\n"
17970 " relative to the adopted coordinate system. The corner positions\n"
17971 " are specified by the appropriate combination of two of the\n"
17972 " PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
17973 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
17974 " value of one of those bits. The adopted coordinates are\n"
17975 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
17976 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
17977 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
17978 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
17979 " then use the combination of PL_POSITION_RIGHT and PL_POSITION_TOP.\n"
17980 " If neither of PL_POSITION_INSIDE or PL_POSITION_OUTSIDE is set,\n"
17981 " use PL_POSITION_INSIDE. If neither of PL_POSITION_VIEWPORT or\n"
17982 " PL_POSITION_SUBPAGE is set, use PL_POSITION_VIEWPORT.\n"
17984 " x (PLFLT, input) : X offset of the legend position in adopted\n"
17985 " coordinates from the specified standard position of the legend.\n"
17986 " For positive x, the direction of motion away from the standard\n"
17987 " position is inward/outward from the standard corner positions or\n"
17988 " standard left or right positions if the\n"
17989 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
17990 " For the standard top or bottom positions, the direction of motion\n"
17991 " is toward positive X.\n"
17993 " y (PLFLT, input) : Y offset of the legend position in adopted\n"
17994 " coordinates from the specified standard position of the legend.\n"
17995 " For positive y, the direction of motion away from the standard\n"
17996 " position is inward/outward from the standard corner positions or\n"
17997 " standard top or bottom positions if the\n"
17998 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position. For\n"
17999 " the standard left or right positions, the direction of motion is\n"
18000 " toward positive Y.\n"
18002 " plot_width (PLFLT, input) : Horizontal width in adopted coordinates\n"
18003 " of the plot area (where the colored boxes, lines, and/or lines of\n"
18004 " symbols are drawn) of the legend.\n"
18006 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18007 " legend (PL_LEGEND_BACKGROUND).\n"
18009 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18010 " for the legend (PL_LEGEND_BOUNDING_BOX).\n"
18012 " bb_style (PLINT, input) : The pllsty style number for the\n"
18013 " bounding-box line for the legend (PL_LEGEND_BACKGROUND).\n"
18015 " nrow (PLINT, input) : The number of rows in the matrix used to\n"
18017 " nlegend legend entries. For internal transformations of\n"
18018 " nrow, see further remarks under\n"
18021 " ncolumn (PLINT, input) : The number of columns in the matrix used\n"
18023 " nlegend legend entries. For internal transformations of\n"
18024 " ncolumn, see further remarks under\n"
18027 " nlegend (PLINT, input) : Number of legend entries. The above\n"
18029 " ncolumn values are transformed internally to be consistent with\n"
18030 " nlegend. If either\n"
18032 " ncolumn is non-positive it is replaced by 1. If the resulting product\n"
18035 " ncolumn is less than\n"
18036 " nlegend, the smaller of the two (or\n"
18039 " ncolumn) is increased so the product is >=\n"
18040 " nlegend. Thus, for example, the common\n"
18042 " ncolumn = 0 case is transformed internally to\n"
18045 " ncolumn = 1; i.e., the usual case of a legend rendered as a single\n"
18048 " opt_array (PLINT_VECTOR, input) : A vector of\n"
18049 " nlegend values of options to control each individual plotted area\n"
18050 " corresponding to a legend entry. If the\n"
18051 " PL_LEGEND_NONE bit is set, then nothing is plotted in the plotted\n"
18053 " PL_LEGEND_COLOR_BOX,\n"
18054 " PL_LEGEND_LINE, and/or\n"
18055 " PL_LEGEND_SYMBOL bits are set, the area corresponding to a legend\n"
18056 " entry is plotted with a colored box; a line; and/or a line of\n"
18059 " text_offset (PLFLT, input) : Offset of the text area from the plot\n"
18060 " area in units of character width.\n"
18062 " text_scale (PLFLT, input) : Character height scale for text\n"
18065 " text_spacing (PLFLT, input) : Vertical spacing in units of the\n"
18066 " character height from one legend entry to the next.\n"
18068 " text_justification (PLFLT, input) : Justification parameter used\n"
18069 " for text justification. The most common values of\n"
18070 " text_justification are 0., 0.5, or 1. corresponding to a text that\n"
18071 " is left justified, centred, or right justified within the text\n"
18072 " area, but other values are allowed as well.\n"
18074 " text_colors (PLINT_VECTOR, input) : A vector containing\n"
18075 " nlegend cmap0 text colors.\n"
18077 " text (PLCHAR_MATRIX, input) : A vector of\n"
18078 " nlegend UTF-8 character strings containing the legend annotations.\n"
18080 " box_colors (PLINT_VECTOR, input) : A vector containing\n"
18081 " nlegend cmap0 colors for the discrete colored boxes (\n"
18082 " PL_LEGEND_COLOR_BOX).\n"
18084 " box_patterns (PLINT_VECTOR, input) : A vector containing\n"
18085 " nlegend patterns (plpsty indices) for the discrete colored boxes (\n"
18086 " PL_LEGEND_COLOR_BOX).\n"
18088 " box_scales (PLFLT_VECTOR, input) : A vector containing\n"
18089 " nlegend scales (units of fraction of character height) for the height\n"
18090 " of the discrete colored boxes (\n"
18091 " PL_LEGEND_COLOR_BOX).\n"
18093 " box_line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18094 " nlegend line widths for the patterns specified by box_patterns (\n"
18095 " PL_LEGEND_COLOR_BOX).\n"
18097 " line_colors (PLINT_VECTOR, input) : A vector containing\n"
18098 " nlegend cmap0 line colors (\n"
18099 " PL_LEGEND_LINE).\n"
18101 " line_styles (PLINT_VECTOR, input) : A vector containing\n"
18102 " nlegend line styles (plsty indices) (\n"
18103 " PL_LEGEND_LINE).\n"
18105 " line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18106 " nlegend line widths (\n"
18107 " PL_LEGEND_LINE).\n"
18109 " symbol_colors (PLINT_VECTOR, input) : A vector containing\n"
18110 " nlegend cmap0 symbol colors (\n"
18111 " PL_LEGEND_SYMBOL).\n"
18113 " symbol_scales (PLFLT_VECTOR, input) : A vector containing\n"
18114 " nlegend scale values for the symbol height (\n"
18115 " PL_LEGEND_SYMBOL).\n"
18117 " symbol_numbers (PLINT_VECTOR, input) : A vector containing\n"
18118 " nlegend numbers of symbols to be drawn across the width of the plotted\n"
18120 " PL_LEGEND_SYMBOL).\n"
18122 " symbols (PLCHAR_MATRIX, input) : A vector of\n"
18123 " nlegend UTF-8 character strings containing the legend symbols. (\n"
18124 " PL_LEGEND_SYMBOL).\n"
18128 "Plot color bar for image, shade or gradient plots\n"
18132 " Routine for creating a continuous color bar for image, shade, or\n"
18133 " gradient plots. (See pllegend for similar functionality for creating\n"
18134 " legends with discrete elements). The arguments of plcolorbar provide\n"
18135 " control over the location and size of the color bar as well as the\n"
18136 " location and characteristics of the elements (most of which are\n"
18137 " optional) within that color bar. The resulting color bar is clipped\n"
18138 " at the boundaries of the current subpage. (N.B. the adopted coordinate\n"
18139 " system used for some of the parameters is defined in the documentation\n"
18140 " of the position parameter.)\n"
18142 " Redacted form: plcolorbar(p_colorbar_width, p_colorbar_height, opt,\n"
18143 " position, x, y, x_length, y_length, bg_color, bb_color, bb_style,\n"
18144 " low_cap_color, high_cap_color, cont_color, cont_width, label_opts,\n"
18145 " labels, axis_opts, ticks, sub_ticks, values)\n"
18147 " This function is used in examples 16 and 33.\n"
18153 "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"
18157 " p_colorbar_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18158 " labelled and decorated color bar width in adopted coordinates.\n"
18160 " p_colorbar_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18161 " labelled and decorated color bar height in adopted coordinates.\n"
18163 " opt (PLINT, input) : opt contains bits controlling the overall\n"
18164 " color bar. The orientation (direction of the maximum value) of\n"
18165 " the color bar is specified with PL_ORIENT_RIGHT, PL_ORIENT_TOP,\n"
18166 " PL_ORIENT_LEFT, or PL_ORIENT_BOTTOM. If none of these bits are\n"
18167 " specified, the default orientation is toward the top if the\n"
18168 " colorbar is placed on the left or right of the viewport or toward\n"
18169 " the right if the colorbar is placed on the top or bottom of the\n"
18170 " viewport. If the PL_COLORBAR_BACKGROUND bit is set, plot a\n"
18171 " (semitransparent) background for the color bar. If the\n"
18172 " PL_COLORBAR_BOUNDING_BOX bit is set, plot a bounding box for the\n"
18173 " color bar. The type of color bar must be specified with one of\n"
18174 " PL_COLORBAR_IMAGE, PL_COLORBAR_SHADE, or PL_COLORBAR_GRADIENT. If\n"
18175 " more than one of those bits is set only the first one in the above\n"
18176 " list is honored. The position of the (optional) label/title can be\n"
18177 " specified with PL_LABEL_RIGHT, PL_LABEL_TOP, PL_LABEL_LEFT, or\n"
18178 " PL_LABEL_BOTTOM. If no label position bit is set then no label\n"
18179 " will be drawn. If more than one of this list of bits is specified,\n"
18180 " only the first one on the list is honored. End-caps for the color\n"
18181 " bar can added with PL_COLORBAR_CAP_LOW and PL_COLORBAR_CAP_HIGH.\n"
18182 " If a particular color bar cap option is not specified then no cap\n"
18183 " will be drawn for that end. As a special case for\n"
18184 " PL_COLORBAR_SHADE, the option PL_COLORBAR_SHADE_LABEL can be\n"
18185 " specified. If this option is provided then any tick marks and tick\n"
18186 " labels will be placed at the breaks between shaded segments. TODO:\n"
18187 " This should be expanded to support custom placement of tick marks\n"
18188 " and tick labels at custom value locations for any color bar type.\n"
18190 " position (PLINT, input) : position contains bits which control the\n"
18191 " overall position of the color bar and the definition of the\n"
18192 " adopted coordinates used for positions just like what is done for\n"
18193 " the position argument for pllegend. However, note that the\n"
18194 " defaults for the position bits (see below) are different than the\n"
18195 " pllegend case. The combination of the PL_POSITION_LEFT,\n"
18196 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
18197 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
18198 " the 16 possible standard positions (the 4 corners and centers of\n"
18199 " the 4 sides for both the inside and outside cases) of the color\n"
18200 " bar relative to the adopted coordinate system. The corner\n"
18201 " positions are specified by the appropriate combination of two of\n"
18202 " the PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
18203 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
18204 " value of one of those bits. The adopted coordinates are\n"
18205 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
18206 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
18207 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
18208 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
18209 " then use PL_POSITION_RIGHT. If neither of PL_POSITION_INSIDE or\n"
18210 " PL_POSITION_OUTSIDE is set, use PL_POSITION_OUTSIDE. If neither of\n"
18211 " PL_POSITION_VIEWPORT or PL_POSITION_SUBPAGE is set, use\n"
18212 " PL_POSITION_VIEWPORT.\n"
18214 " x (PLFLT, input) : X offset of the color bar position in adopted\n"
18215 " coordinates from the specified standard position of the color bar.\n"
18216 " For positive x, the direction of motion away from the standard\n"
18217 " position is inward/outward from the standard corner positions or\n"
18218 " standard left or right positions if the\n"
18219 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18220 " For the standard top or bottom positions, the direction of motion\n"
18221 " is toward positive X.\n"
18223 " y (PLFLT, input) : Y offset of the color bar position in adopted\n"
18224 " coordinates from the specified standard position of the color bar.\n"
18225 " For positive y, the direction of motion away from the standard\n"
18226 " position is inward/outward from the standard corner positions or\n"
18227 " standard top or bottom positions if the\n"
18228 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18229 " For the standard left or right positions, the direction of motion\n"
18230 " is toward positive Y.\n"
18232 " x_length (PLFLT, input) : Length of the body of the color bar in\n"
18233 " the X direction in adopted coordinates.\n"
18235 " y_length (PLFLT, input) : Length of the body of the color bar in\n"
18236 " the Y direction in adopted coordinates.\n"
18238 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18239 " color bar (PL_COLORBAR_BACKGROUND).\n"
18241 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18242 " for the color bar (PL_COLORBAR_BOUNDING_BOX).\n"
18244 " bb_style (PLINT, input) : The pllsty style number for the\n"
18245 " bounding-box line for the color bar (PL_COLORBAR_BACKGROUND).\n"
18247 " low_cap_color (PLFLT, input) : The cmap1 color of the low-end color\n"
18248 " bar cap, if it is drawn (PL_COLORBAR_CAP_LOW).\n"
18250 " high_cap_color (PLFLT, input) : The cmap1 color of the high-end\n"
18251 " color bar cap, if it is drawn (PL_COLORBAR_CAP_HIGH).\n"
18253 " cont_color (PLINT, input) : The cmap0 contour color for\n"
18254 " PL_COLORBAR_SHADE plots. This is passed directly to plshades, so\n"
18255 " it will be interpreted according to the design of plshades.\n"
18257 " cont_width (PLFLT, input) : Contour width for PL_COLORBAR_SHADE\n"
18258 " plots. This is passed directly to plshades, so it will be\n"
18259 " interpreted according to the design of plshades.\n"
18261 " n_labels (PLINT, input) : Number of labels to place around the\n"
18264 " label_opts (PLINT_VECTOR, input) : A vector of options for each of\n"
18265 " n_labels labels.\n"
18267 " labels (PLCHAR_MATRIX, input) : A vector of\n"
18268 " n_labels UTF-8 character strings containing the labels for the color\n"
18269 " bar. Ignored if no label position is specified with one of the\n"
18270 " PL_COLORBAR_LABEL_RIGHT, PL_COLORBAR_LABEL_TOP,\n"
18271 " PL_COLORBAR_LABEL_LEFT, or PL_COLORBAR_LABEL_BOTTOM bits in the\n"
18272 " corresponding label_opts field.\n"
18274 " n_axes (PLINT, input) : Number of axis definitions provided. This\n"
18275 " value must be greater than 0. It is typically 1 (numerical axis\n"
18276 " labels are provided for one of the long edges of the color bar),\n"
18277 " but it can be larger if multiple numerical axis labels for the\n"
18278 " long edges of the color bar are desired.\n"
18280 " axis_opts (PLCHAR_MATRIX, input) : A vector of\n"
18281 " n_axes ascii character strings containing options (interpreted as for\n"
18282 " plbox) for the color bar's axis definitions.\n"
18284 " ticks (PLFLT_VECTOR, input) : A vector of n_axes values of the\n"
18285 " spacing of the major tick marks (interpreted as for plbox) for the\n"
18286 " color bar's axis definitions.\n"
18288 " sub_ticks (PLINT_VECTOR, input) : A vector of n_axes values of the\n"
18289 " number of subticks (interpreted as for plbox) for the color bar's\n"
18290 " axis definitions.\n"
18292 " n_values (PLINT_VECTOR, input) : A vector containing the number of\n"
18293 " elements in each of the n_axes rows of the values matrix.\n"
18295 " values (PLFLT_MATRIX, input) : A matrix containing the numeric\n"
18296 " values for the data range represented by the color bar. For a row\n"
18297 " index of i_axis (where 0 < i_axis < n_axes), the number of\n"
18298 " elements in the row is specified by n_values[i_axis]. For\n"
18299 " PL_COLORBAR_IMAGE and PL_COLORBAR_GRADIENT the number of elements\n"
18300 " is 2, and the corresponding row elements of the values matrix are\n"
18301 " the minimum and maximum value represented by the colorbar. For\n"
18302 " PL_COLORBAR_SHADE, the number and values of the elements of a row\n"
18303 " of the values matrix is interpreted the same as the nlevel and\n"
18304 " clevel arguments of plshades.\n"
18308 "Sets the 3D position of the light source\n"
18312 " Sets the 3D position of the light source for use with plsurf3d and\n"
18315 " Redacted form: pllightsource(x, y, z)\n"
18317 " This function is used in example 8.\n"
18323 "pllightsource(x, y, z)\n"
18327 " x (PLFLT, input) : X-coordinate of the light source.\n"
18329 " y (PLFLT, input) : Y-coordinate of the light source.\n"
18331 " z (PLFLT, input) : Z-coordinate of the light source.\n"
18339 " Draws line defined by n points in x and y.\n"
18341 " Redacted form: plline(x, y)\n"
18343 " This function is used in examples 1, 3, 4, 9, 12-14, 16, 18, 20, 22,\n"
18344 " 25-27, and 29.\n"
18350 "plline(n, x, y)\n"
18354 " n (PLINT, input) : Number of points defining line.\n"
18356 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18359 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18364 "Draw a line in 3 space\n"
18368 " Draws line in 3 space defined by n points in x, y, and z. You must\n"
18369 " first set up the viewport, the 2d viewing window (in world\n"
18370 " coordinates), and the 3d normalized coordinate box. See x18c.c for\n"
18373 " Redacted form: plline3(x, y, z)\n"
18375 " This function is used in example 18.\n"
18381 "plline3(n, x, y, z)\n"
18385 " n (PLINT, input) : Number of points defining line.\n"
18387 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18390 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18393 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
18398 "Select line style\n"
18402 " This sets the line style according to one of eight predefined patterns\n"
18403 " (also see plstyl).\n"
18405 " Redacted form: pllsty(lin)\n"
18407 " This function is used in examples 9, 12, 22, and 25.\n"
18417 " lin (PLINT, input) : Integer value between 1 and 8. Line style 1 is\n"
18418 " a continuous line, line style 2 is a line with short dashes and\n"
18419 " gaps, line style 3 is a line with long dashes and gaps, line style\n"
18420 " 4 has long dashes and short gaps and so on.\n"
18424 "Plot surface mesh\n"
18428 " Plots a surface mesh within the environment set up by plw3d. The\n"
18429 " surface is defined by the matrix z[\n"
18431 " ny] , the point z[i][j] being the value of the function at (\n"
18433 " y[j]). Note that the points in vectors x and y do not need to be\n"
18434 " equally spaced, but must be stored in ascending order. The parameter\n"
18435 " opt controls the way in which the surface is displayed. For further\n"
18436 " details see the PLplot documentation.\n"
18438 " Redacted form: plmesh(x, y, z, opt)\n"
18440 " This function is used in example 11.\n"
18446 "plmesh(x, y, z, nx, ny, opt)\n"
18450 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18451 " which the function is evaluated.\n"
18453 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18454 " which the function is evaluated.\n"
18456 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18457 " plot. Should have dimensions of\n"
18461 " nx (PLINT, input) : Number of x values at which function has been\n"
18464 " ny (PLINT, input) : Number of y values at which function has been\n"
18467 " opt (PLINT, input) : Determines the way in which the surface is\n"
18468 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18469 " function of x for each value of y[j] .\n"
18470 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18471 " for each value of x[i] .\n"
18472 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18473 " at which function is defined.\n"
18477 "Magnitude colored plot surface mesh with contour\n"
18481 " A more powerful form of plmesh: the surface mesh can be colored\n"
18482 " accordingly to the current z value being plotted, a contour plot can\n"
18483 " be drawn at the base XY plane, and a curtain can be drawn between the\n"
18484 " plotted function border and the base XY plane.\n"
18486 " Redacted form: plmeshc(x, y, z, opt, clevel)\n"
18488 " This function is used in example 11.\n"
18494 "plmeshc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18498 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18499 " which the function is evaluated.\n"
18501 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18502 " which the function is evaluated.\n"
18504 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18505 " plot. Should have dimensions of\n"
18509 " nx (PLINT, input) : Number of x values at which function is\n"
18512 " ny (PLINT, input) : Number of y values at which function is\n"
18515 " opt (PLINT, input) : Determines the way in which the surface is\n"
18516 " represented. To specify more than one option just add the options,\n"
18517 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18518 " showing z as a function of x for each value of y[j] .\n"
18519 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18520 " for each value of x[i] .\n"
18521 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18522 " at which function is defined.\n"
18523 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18524 " the z value being plotted. The color is used from the current\n"
18526 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18527 " using parameters\n"
18530 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18531 " the borders of the plotted function.\n"
18534 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18537 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18541 "Creates a new stream and makes it the default\n"
18545 " Creates a new stream and makes it the default. Differs from using\n"
18546 " plsstrm, in that a free stream number is found, and returned.\n"
18547 " Unfortunately, I have to start at stream 1 and work upward, since\n"
18548 " stream 0 is preallocated. One of the big flaws in the PLplot API is\n"
18549 " that no initial, library-opening call is required. So stream 0 must\n"
18550 " be preallocated, and there is no simple way of determining whether it\n"
18551 " is already in use or not.\n"
18553 " Redacted form: plmkstrm(p_strm)\n"
18555 " This function is used in examples 1 and 20.\n"
18561 "plmkstrm(p_strm)\n"
18565 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the stream\n"
18566 " number of the created stream.\n"
18570 "Write text relative to viewport boundaries\n"
18574 " Writes text at a specified position relative to the viewport\n"
18575 " boundaries. Text may be written inside or outside the viewport, but\n"
18576 " is clipped at the subpage boundaries. The reference point of a string\n"
18577 " lies along a line passing through the string at half the height of a\n"
18578 " capital letter. The position of the reference point along this line\n"
18579 " is determined by just, and the position of the reference point\n"
18580 " relative to the viewport is set by disp and pos.\n"
18582 " Redacted form: General: plmtex(side, disp, pos, just, text)\n"
18585 " This function is used in examples 3, 4, 6-8, 11, 12, 14, 18, 23, and\n"
18592 "plmtex(side, disp, pos, just, text)\n"
18596 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18597 " the side of the viewport along which the text is to be written.\n"
18598 " The string must be one of: b: Bottom of viewport, text written\n"
18599 " parallel to edge.\n"
18600 " bv: Bottom of viewport, text written at right angles to edge.\n"
18601 " l: Left of viewport, text written parallel to edge.\n"
18602 " lv: Left of viewport, text written at right angles to edge.\n"
18603 " r: Right of viewport, text written parallel to edge.\n"
18604 " rv: Right of viewport, text written at right angles to edge.\n"
18605 " t: Top of viewport, text written parallel to edge.\n"
18606 " tv: Top of viewport, text written at right angles to edge.\n"
18609 " disp (PLFLT, input) : Position of the reference point of string,\n"
18610 " measured outwards from the specified viewport edge in units of the\n"
18611 " current character height. Use negative disp to write within the\n"
18614 " pos (PLFLT, input) : Position of the reference point of string\n"
18615 " along the specified edge, expressed as a fraction of the length of\n"
18618 " just (PLFLT, input) : Specifies the position of the string relative\n"
18619 " to its reference point. If just=0. , the reference point is at\n"
18620 " the left and if just=1. , it is at the right of the string. Other\n"
18621 " values of just give intermediate justifications.\n"
18623 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18628 "Write text relative to viewport boundaries in 3D plots\n"
18632 " Writes text at a specified position relative to the viewport\n"
18633 " boundaries. Text may be written inside or outside the viewport, but\n"
18634 " is clipped at the subpage boundaries. The reference point of a string\n"
18635 " lies along a line passing through the string at half the height of a\n"
18636 " capital letter. The position of the reference point along this line\n"
18637 " is determined by just, and the position of the reference point\n"
18638 " relative to the viewport is set by disp and pos.\n"
18640 " Redacted form: plmtex3(side, disp, pos, just, text)\n"
18642 " This function is used in example 28.\n"
18648 "plmtex3(side, disp, pos, just, text)\n"
18652 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18653 " the side of the viewport along which the text is to be written.\n"
18654 " The string should contain one or more of the following characters:\n"
18655 " [xyz][ps][v]. Only one label is drawn at a time, i.e. xyp will\n"
18656 " only label the X axis, not both the X and Y axes. x: Label the X\n"
18658 " y: Label the Y axis.\n"
18659 " z: Label the Z axis.\n"
18660 " p: Label the primary axis. For Z this is the leftmost Z axis.\n"
18661 " For X it is the axis that starts at y-min. For Y it is the\n"
18662 " axis that starts at x-min.\n"
18663 " s: Label the secondary axis.\n"
18664 " v: Draw the text perpendicular to the axis.\n"
18667 " disp (PLFLT, input) : Position of the reference point of string,\n"
18668 " measured outwards from the specified viewport edge in units of the\n"
18669 " current character height. Use negative disp to write within the\n"
18672 " pos (PLFLT, input) : Position of the reference point of string\n"
18673 " along the specified edge, expressed as a fraction of the length of\n"
18676 " just (PLFLT, input) : Specifies the position of the string relative\n"
18677 " to its reference point. If just=0. , the reference point is at\n"
18678 " the left and if just=1. , it is at the right of the string. Other\n"
18679 " values of just give intermediate justifications.\n"
18681 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18686 "Plot 3-d surface plot\n"
18690 " Plots a three-dimensional surface plot within the environment set up\n"
18691 " by plw3d. The surface is defined by the matrix z[\n"
18693 " ny] , the point z[i][j] being the value of the function at (\n"
18695 " y[j]). Note that the points in vectors x and y do not need to be\n"
18696 " equally spaced, but must be stored in ascending order. The parameter\n"
18697 " opt controls the way in which the surface is displayed. For further\n"
18698 " details see the PLplot documentation. The only difference between\n"
18699 " plmesh and plot3d is that plmesh draws the bottom side of the surface,\n"
18700 " while plot3d only draws the surface as viewed from the top.\n"
18702 " Redacted form: plot3d(x, y, z, opt, side)\n"
18704 " This function is used in examples 11 and 21.\n"
18710 "plot3d(x, y, z, nx, ny, opt, side)\n"
18714 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18715 " which the function is evaluated.\n"
18717 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18718 " which the function is evaluated.\n"
18720 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18721 " plot. Should have dimensions of\n"
18725 " nx (PLINT, input) : Number of x values at which function is\n"
18728 " ny (PLINT, input) : Number of y values at which function is\n"
18731 " opt (PLINT, input) : Determines the way in which the surface is\n"
18732 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18733 " function of x for each value of y[j] .\n"
18734 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18735 " for each value of x[i] .\n"
18736 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18737 " at which function is defined.\n"
18740 " side (PLBOOL, input) : Flag to indicate whether or not ``sides''\n"
18741 " should be draw on the figure. If side is true sides are drawn,\n"
18742 " otherwise no sides are drawn.\n"
18746 "Magnitude colored plot surface with contour\n"
18750 " Aside from dropping the\n"
18751 " side functionality this is a more powerful form of plot3d: the surface\n"
18752 " mesh can be colored accordingly to the current z value being plotted,\n"
18753 " a contour plot can be drawn at the base XY plane, and a curtain can be\n"
18754 " drawn between the plotted function border and the base XY plane. The\n"
18755 " arguments are identical to those of plmeshc. The only difference\n"
18756 " between plmeshc and plot3dc is that plmeshc draws the bottom side of\n"
18757 " the surface, while plot3dc only draws the surface as viewed from the\n"
18760 " Redacted form: General: plot3dc(x, y, z, opt, clevel)\n"
18763 " This function is used in example 21.\n"
18769 "plot3dc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18773 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18774 " which the function is evaluated.\n"
18776 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18777 " which the function is evaluated.\n"
18779 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18780 " plot. Should have dimensions of\n"
18784 " nx (PLINT, input) : Number of x values at which function is\n"
18787 " ny (PLINT, input) : Number of y values at which function is\n"
18790 " opt (PLINT, input) : Determines the way in which the surface is\n"
18791 " represented. To specify more than one option just add the options,\n"
18792 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18793 " showing z as a function of x for each value of y[j] .\n"
18794 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18795 " for each value of x[i] .\n"
18796 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18797 " at which function is defined.\n"
18798 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18799 " the z value being plotted. The color is used from the current\n"
18801 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18802 " using parameters\n"
18805 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18806 " the borders of the plotted function.\n"
18809 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18812 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18816 "Magnitude colored plot surface with contour for z[x][y] with y index limits\n"
18820 " When the implementation is completed this variant of plot3dc (see that\n"
18821 " function's documentation for more details) should be suitable for the\n"
18822 " case where the area of the x, y coordinate grid where z is defined can\n"
18823 " be non-rectangular. The implementation is incomplete so the last 4\n"
18824 " parameters of plot3dcl; indexxmin, indexxmax, indexymin, and\n"
18825 " indexymax; are currently ignored and the functionality is otherwise\n"
18826 " identical to that of plot3dc.\n"
18828 " Redacted form: General: plot3dcl(x, y, z, opt, clevel, indexxmin,\n"
18829 " indexymin, indexymax)\n"
18832 " This function is not used in any example.\n"
18838 "plot3dcl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18842 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18843 " which the function is evaluated.\n"
18845 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18846 " which the function is evaluated.\n"
18848 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18849 " plot. Should have dimensions of\n"
18853 " nx (PLINT, input) : Number of x values at which the function is\n"
18856 " ny (PLINT, input) : Number of y values at which the function is\n"
18859 " opt (PLINT, input) : Determines the way in which the surface is\n"
18860 " represented. To specify more than one option just add the options,\n"
18861 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18862 " showing z as a function of x for each value of y[j] .\n"
18863 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18864 " for each value of x[i] .\n"
18865 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18866 " at which function is defined.\n"
18867 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18868 " the z value being plotted. The color is used from the current\n"
18870 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18871 " using parameters\n"
18874 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18875 " the borders of the plotted function.\n"
18878 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18881 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18883 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
18884 " corresponds to the first x index where z is defined.\n"
18886 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
18887 " which corresponds (by convention) to one more than the last x\n"
18888 " index value where z is defined.\n"
18890 " indexymin (PLINT_VECTOR, input) : A vector containing y index\n"
18891 " values which all must be ≥ 0. These values are the first y index\n"
18892 " where z is defined for a particular x index in the range from\n"
18893 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
18896 " indexymax (PLINT_VECTOR, input) : A vector containing y index\n"
18897 " values which all must be ≤ ny. These values correspond (by\n"
18898 " convention) to one more than the last y index where z is defined\n"
18899 " for a particular x index in the range from indexxmin to indexxmax\n"
18900 " - 1. The dimension of indexymax is indexxmax.\n"
18904 "Plot shaded 3-d surface plot\n"
18908 " Plots a three-dimensional shaded surface plot within the environment\n"
18909 " set up by plw3d. The surface is defined by the two-dimensional matrix\n"
18912 " ny], the point z[i][j] being the value of the function at (\n"
18914 " y[j]). Note that the points in vectors x and y do not need to be\n"
18915 " equally spaced, but must be stored in ascending order. For further\n"
18916 " details see the PLplot documentation.\n"
18918 " Redacted form: plsurf3d(x, y, z, opt, clevel)\n"
18920 " This function is not used in any examples.\n"
18926 "plsurf3d(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18930 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18931 " which the function is evaluated.\n"
18933 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18934 " which the function is evaluated.\n"
18936 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18937 " plot. Should have dimensions of\n"
18941 " nx (PLINT, input) : Number of x values at which function is\n"
18944 " ny (PLINT, input) : Number of y values at which function is\n"
18947 " opt (PLINT, input) : Determines the way in which the surface is\n"
18948 " represented. To specify more than one option just add the options,\n"
18949 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
18950 " connecting points at which function is defined.\n"
18951 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18952 " using parameters\n"
18955 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
18956 " using parameters\n"
18959 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18960 " the borders of the plotted function.\n"
18961 " opt=MAG_COLOR : the surface is colored according to the value\n"
18962 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
18963 " according to the intensity of the reflected light in the\n"
18964 " surface from a light source whose position is set using\n"
18965 " pllightsource.\n"
18968 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18971 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18975 "Plot shaded 3-d surface plot for z[x][y] with y index limits\n"
18979 " This variant of plsurf3d (see that function's documentation for more\n"
18980 " details) should be suitable for the case where the area of the x, y\n"
18981 " coordinate grid where z is defined can be non-rectangular. The limits\n"
18982 " of that grid are provided by the parameters indexxmin, indexxmax,\n"
18983 " indexymin, and indexymax.\n"
18985 " Redacted form: plsurf3dl(x, y, z, opt, clevel, indexxmin, indexymin,\n"
18988 " This function is used in example 8.\n"
18994 "plsurf3dl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18998 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18999 " which the function is evaluated.\n"
19001 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
19002 " which the function is evaluated.\n"
19004 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
19005 " plot. Should have dimensions of\n"
19009 " nx (PLINT, input) : Number of x values at which function is\n"
19012 " ny (PLINT, input) : Number of y values at which function is\n"
19015 " opt (PLINT, input) : Determines the way in which the surface is\n"
19016 " represented. To specify more than one option just add the options,\n"
19017 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
19018 " connecting points at which function is defined.\n"
19019 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
19020 " using parameters\n"
19023 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
19024 " using parameters\n"
19027 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
19028 " the borders of the plotted function.\n"
19029 " opt=MAG_COLOR : the surface is colored according to the value\n"
19030 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
19031 " according to the intensity of the reflected light in the\n"
19032 " surface from a light source whose position is set using\n"
19033 " pllightsource.\n"
19036 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
19039 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
19041 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
19042 " corresponds to the first x index where z is defined.\n"
19044 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
19045 " which corresponds (by convention) to one more than the last x\n"
19046 " index value where z is defined.\n"
19048 " indexymin (PLINT_VECTOR, input) : A vector containing the y index\n"
19049 " values which all must be ≥ 0. These values are the first y index\n"
19050 " where z is defined for a particular x index in the range from\n"
19051 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
19054 " indexymax (PLINT_VECTOR, input) : A vector containing the y index\n"
19055 " values which all must be ≤ ny. These values correspond (by\n"
19056 " convention) to one more than the last y index where z is defined\n"
19057 " for a particular x index in the range from indexxmin to indexxmax\n"
19058 " - 1. The dimension of indexymax is indexxmax.\n"
19062 "Parse command-line arguments\n"
19066 " Parse command-line arguments.\n"
19068 " plparseopts removes all recognized flags (decreasing argc\n"
19069 " accordingly), so that invalid input may be readily detected. It can\n"
19070 " also be used to process user command line flags. The user can merge\n"
19071 " an option table of type PLOptionTable into the internal option table\n"
19072 " info structure using plMergeOpts. Or, the user can specify that ONLY\n"
19073 " the external table(s) be parsed by calling plClearOpts before\n"
19076 " The default action taken by plparseopts is as follows:\n"
19077 " Returns with an error if an unrecognized option or badly formed\n"
19078 " option-value pair are encountered.\n"
19079 " Returns immediately (return code 0) when the first non-option command\n"
19080 " line argument is found.\n"
19081 " Returns with the return code of the option handler, if one was called.\n"
19083 " Deletes command line arguments from argv list as they are found, and\n"
19084 " decrements argc accordingly.\n"
19085 " Does not show \"invisible\" options in usage or help messages.\n"
19086 " Assumes the program name is contained in argv[0].\n"
19088 " These behaviors may be controlled through the\n"
19089 " mode argument.\n"
19091 " Redacted form: General: plparseopts(argv, mode)\n"
19094 " This function is used in all of the examples.\n"
19100 "PLINT plparseopts(p_argc, argv, mode)\n"
19104 " p_argc (int *, input/output) : Number of arguments.\n"
19106 " argv (PLCHAR_NC_MATRIX, input/output) : A vector of character\n"
19107 " strings containing *p_argc command-line arguments.\n"
19109 " mode (PLINT, input) : Parsing mode with the following\n"
19110 " possibilities: PL_PARSE_FULL (1) -- Full parsing of command line\n"
19111 " and all error messages enabled, including program exit when an\n"
19112 " error occurs. Anything on the command line that isn't recognized\n"
19113 " as a valid option or option argument is flagged as an error.\n"
19114 " PL_PARSE_QUIET (2) -- Turns off all output except in the case\n"
19116 " PL_PARSE_NODELETE (4) -- Turns off deletion of processed\n"
19118 " PL_PARSE_SHOWALL (8) -- Show invisible options\n"
19119 " PL_PARSE_NOPROGRAM (32) -- Specified if argv[0] is NOT a\n"
19120 " pointer to the program name.\n"
19121 " PL_PARSE_NODASH (64) -- Set if leading dash is NOT required.\n"
19122 " PL_PARSE_SKIP (128) -- Set to quietly skip over any\n"
19123 " unrecognized arguments.\n"
19127 "Set area line fill pattern\n"
19131 " Sets the area line fill pattern to be used, e.g., for calls to plfill.\n"
19132 " The pattern consists of 1 or 2 sets of parallel lines with specified\n"
19133 " inclinations and spacings. The arguments to this routine are the\n"
19134 " number of sets to use (1 or 2) followed by two vectors (with 1 or 2\n"
19135 " elements) specifying the inclinations in tenths of a degree and the\n"
19136 " spacing in micrometers. (See also plpsty)\n"
19138 " Redacted form: General: plpat(inc, del)\n"
19141 " This function is used in example 15.\n"
19147 "plpat(nlin, inc, del)\n"
19151 " nlin (PLINT, input) : Number of sets of lines making up the\n"
19152 " pattern, either 1 or 2.\n"
19154 " inc (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19155 " inclination in tenths of a degree. (Should be between -900 and\n"
19158 " del (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19159 " spacing in micrometers between the lines making up the pattern.\n"
19163 "Draw a line between two points, accounting for coordinate transforms\n"
19167 " Joins the point (\n"
19171 " y2) . If a global coordinate transform is defined then the line is\n"
19172 " broken in to n segments to approximate the path. If no transform is\n"
19173 " defined then this simply acts like a call to pljoin.\n"
19175 " Redacted form: plpath(n,x1,y1,x2,y2)\n"
19177 " This function is used in example 22.\n"
19183 "plpath(n, x1, y1, x2, y2)\n"
19187 " n (PLINT, input) : number of points to use to approximate the path.\n"
19189 " x1 (PLFLT, input) : x coordinate of first point.\n"
19191 " y1 (PLFLT, input) : y coordinate of first point.\n"
19193 " x2 (PLFLT, input) : x coordinate of second point.\n"
19195 " y2 (PLFLT, input) : y coordinate of second point.\n"
19199 "Plot a glyph at the specified points\n"
19203 " Plot a glyph at the specified points. (This function is largely\n"
19204 " superseded by plstring which gives access to many[!] more glyphs.)\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: plpoin(x, y, code)\n"
19216 " This function is used in examples 1, 6, 14, and 29.\n"
19222 "plpoin(n, x, y, 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 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19235 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19236 " each of the n points.\n"
19240 "Plot a glyph at the specified 3D points\n"
19244 " Plot a glyph at the specified 3D points. (This function is largely\n"
19245 " superseded by plstring3 which gives access to many[!] more glyphs.)\n"
19246 " Set up the call to this function similar to what is done for plline3.\n"
19247 " code=-1 means try to just draw a point. Right now it's just a move\n"
19248 " and a draw at the same place. Not ideal, since a sufficiently\n"
19249 " intelligent output device may optimize it away, or there may be faster\n"
19250 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19251 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19252 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19253 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19254 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19256 " Redacted form: plpoin3(x, y, z, code)\n"
19258 " This function is not used in any example.\n"
19264 "plpoin3(n, x, y, z, code)\n"
19268 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19270 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19273 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19276 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
19279 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19280 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19281 " each of the n points.\n"
19285 "Draw a polygon in 3 space\n"
19289 " Draws a polygon in 3 space defined by n points in x, y, and z. Setup\n"
19290 " like plline3, but differs from that function in that plpoly3 attempts\n"
19291 " to determine if the polygon is viewable depending on the order of the\n"
19292 " points within the vector and the value of ifcc. If the back of\n"
19293 " polygon is facing the viewer, then it isn't drawn. If this isn't what\n"
19294 " you want, then use plline3 instead.\n"
19296 " The points are assumed to be in a plane, and the directionality of the\n"
19297 " plane is determined from the first three points. Additional points do\n"
19298 " not have to lie on the plane defined by the first three, but if they\n"
19299 " do not, then the determination of visibility obviously can't be 100%\n"
19300 " accurate... So if you're 3 space polygons are too far from planar,\n"
19301 " consider breaking them into smaller polygons. 3 points define a plane\n"
19304 " Bugs: If one of the first two segments is of zero length, or if they\n"
19305 " are co-linear, the calculation of visibility has a 50/50 chance of\n"
19306 " being correct. Avoid such situations :-). See x18c.c for an example\n"
19307 " of this problem. (Search for 20.1).\n"
19309 " Redacted form: plpoly3(x, y, z, code)\n"
19311 " This function is used in example 18.\n"
19317 "plpoly3(n, x, y, z, draw, ifcc)\n"
19321 " n (PLINT, input) : Number of points defining line.\n"
19323 " x (PLFLT_VECTOR, input) : A vector containing\n"
19324 " n x coordinates of points.\n"
19326 " y (PLFLT_VECTOR, input) : A vector containing\n"
19327 " n y coordinates of points.\n"
19329 " z (PLFLT_VECTOR, input) : A vector containing\n"
19330 " n z coordinates of points.\n"
19332 " draw (PLBOOL_VECTOR, input) : A vector containing\n"
19333 " n-1 Boolean values which control drawing the segments of the polygon.\n"
19334 " If draw[i] is true, then the polygon segment from index [i] to\n"
19335 " [i+1] is drawn, otherwise, not.\n"
19337 " ifcc (PLBOOL, input) : If ifcc is true the directionality of the\n"
19338 " polygon is determined by assuming the points are laid out in a\n"
19339 " counter-clockwise order. Otherwise, the directionality of the\n"
19340 " polygon is determined by assuming the points are laid out in a\n"
19341 " clockwise order.\n"
19345 "Set precision in numeric labels\n"
19349 " Sets the number of places after the decimal point in numeric labels.\n"
19351 " Redacted form: plprec(setp, prec)\n"
19353 " This function is used in example 29.\n"
19359 "plprec(setp, prec)\n"
19363 " setp (PLINT, input) : If setp is equal to 0 then PLplot\n"
19364 " automatically determines the number of places to use after the\n"
19365 " decimal point in numeric labels (like those used to label axes).\n"
19366 " If setp is 1 then prec sets the number of places.\n"
19368 " prec (PLINT, input) : The number of characters to draw after the\n"
19369 " decimal point in numeric labels.\n"
19373 "Select area fill pattern\n"
19378 " patt is zero or less use either a hardware solid fill if the drivers\n"
19379 " have that capability (virtually all do) or fall back to a software\n"
19380 " emulation of a solid fill using the eighth area line fill pattern. If\n"
19382 " patt <= 8, then select one of eight predefined area line fill patterns\n"
19383 " to use (see plpat if you desire other patterns).\n"
19385 " Redacted form: plpsty(patt)\n"
19387 " This function is used in examples 12, 13, 15, 16, and 25.\n"
19397 " patt (PLINT, input) : The desired pattern index. If\n"
19398 " patt is zero or less, then a solid fill is (normally, see qualifiers\n"
19399 " above) used. For\n"
19400 " patt in the range from 1 to 8 and assuming the driver has not supplied\n"
19401 " line fill capability itself (most deliberately do not so that line\n"
19402 " fill patterns look identical for those drivers), the patterns\n"
19403 " consist of (1) horizontal lines, (2) vertical lines, (3) lines at\n"
19404 " 45 degrees, (4) lines at -45 degrees, (5) lines at 30 degrees, (6)\n"
19405 " lines at -30 degrees, (7) both vertical and horizontal lines, and\n"
19406 " (8) lines at both 45 degrees and -45 degrees.\n"
19410 "Write text inside the viewport\n"
19414 " Writes text at a specified position and inclination within the\n"
19415 " viewport. Text is clipped at the viewport boundaries. The reference\n"
19416 " point of a string lies along a line passing through the string at half\n"
19417 " the height of a capital letter. The position of the reference point\n"
19418 " along this line is determined by just, the reference point is placed\n"
19419 " at world coordinates (\n"
19421 " y) within the viewport. The inclination of the string is specified\n"
19422 " in terms of differences of world coordinates making it easy to write\n"
19423 " text parallel to a line in a graph.\n"
19425 " Redacted form: plptex(x, y, dx, dy, just, text)\n"
19427 " This function is used in example 2-4,10,12-14,20,23,24,26.\n"
19433 "plptex(x, y, dx, dy, just, text)\n"
19437 " x (PLFLT, input) : x coordinate of reference point of string.\n"
19439 " y (PLFLT, input) : y coordinate of reference point of string.\n"
19441 " dx (PLFLT, input) : Together with dy, this specifies the\n"
19442 " inclination of the string. The baseline of the string is parallel\n"
19443 " to a line joining (\n"
19451 " dy (PLFLT, input) : Together with dx, this specifies the\n"
19452 " inclination of the string.\n"
19454 " just (PLFLT, input) : Specifies the position of the string relative\n"
19455 " to its reference point. If just=0. , the reference point is at\n"
19456 " the left and if just=1. , it is at the right of the string. Other\n"
19457 " values of just give intermediate justifications.\n"
19459 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19464 "Write text inside the viewport of a 3D plot\n"
19468 " Writes text at a specified position and inclination and with a\n"
19469 " specified shear within the viewport. Text is clipped at the viewport\n"
19470 " boundaries. The reference point of a string lies along a line passing\n"
19471 " through the string at half the height of a capital letter. The\n"
19472 " position of the reference point along this line is determined by just,\n"
19473 " and the reference point is placed at world coordinates (\n"
19476 " wz) within the viewport. The inclination and shear of the string is\n"
19477 " specified in terms of differences of world coordinates making it easy\n"
19478 " to write text parallel to a line in a graph.\n"
19480 " Redacted form: plptex3(x, y, z, dx, dy, dz, sx, sy, sz, just, text)\n"
19482 " This function is used in example 28.\n"
19488 "plptex3(wx, wy, wz, dx, dy, dz, sx, sy, sz, just, text)\n"
19492 " wx (PLFLT, input) : x world coordinate of reference point of\n"
19495 " wy (PLFLT, input) : y world coordinate of reference point of\n"
19498 " wz (PLFLT, input) : z world coordinate of reference point of\n"
19501 " dx (PLFLT, input) : Together with dy and\n"
19502 " dz , this specifies the inclination of the string. The baseline of\n"
19503 " the string is parallel to a line joining (\n"
19514 " dy (PLFLT, input) : Together with dx and\n"
19515 " dz, this specifies the inclination of the string.\n"
19517 " dz (PLFLT, input) : Together with dx and\n"
19518 " dy, this specifies the inclination of the string.\n"
19520 " sx (PLFLT, input) : Together with sy and\n"
19521 " sz , this specifies the shear of the string. The string is sheared so\n"
19522 " that the characters are vertically parallel to a line joining (\n"
19533 " sz = 0.) then the text is not sheared.\n"
19535 " sy (PLFLT, input) : Together with sx and\n"
19536 " sz, this specifies shear of the string.\n"
19538 " sz (PLFLT, input) : Together with sx and\n"
19539 " sy, this specifies shear of the string.\n"
19541 " just (PLFLT, input) : Specifies the position of the string relative\n"
19542 " to its reference point. If just=0. , the reference point is at\n"
19543 " the left and if just=1. , it is at the right of the string. Other\n"
19544 " values of just give intermediate justifications.\n"
19546 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19551 "Random number generator returning a real random number in the range [0,1]\n"
19555 " Random number generator returning a real random number in the range\n"
19556 " [0,1]. The generator is based on the Mersenne Twister. Most languages\n"
19557 " / compilers provide their own random number generator, and so this is\n"
19558 " provided purely for convenience and to give a consistent random number\n"
19559 " generator across all languages supported by PLplot. This is\n"
19560 " particularly useful for comparing results from the test suite of\n"
19563 " Redacted form: plrandd()\n"
19565 " This function is used in examples 17 and 21.\n"
19575 "Replays contents of plot buffer to current device/file\n"
19579 " Replays contents of plot buffer to current device/file.\n"
19581 " Redacted form: plreplot()\n"
19583 " This function is used in example 1,20.\n"
19593 "Convert RGB color to HLS\n"
19597 " Convert RGB color coordinates to HLS\n"
19599 " Redacted form: General: plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19602 " This function is used in example 2.\n"
19608 "plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19612 " r (PLFLT, input) : Red intensity (0.0-1.0) of the color.\n"
19614 " g (PLFLT, input) : Green intensity (0.0-1.0) of the color.\n"
19616 " b (PLFLT, input) : Blue intensity (0.0-1.0) of the color.\n"
19618 " p_h (PLFLT_NC_SCALAR, output) : Returned value of the hue in\n"
19619 " degrees (0.0-360.0) on the color cylinder.\n"
19621 " p_l (PLFLT_NC_SCALAR, output) : Returned value of the lightness\n"
19622 " expressed as a fraction (0.0-1.0) of the axis of the color\n"
19625 " p_s (PLFLT_NC_SCALAR, output) : Returned value of the saturation\n"
19626 " expressed as a fraction (0.0-1.0) of the radius of the color\n"
19631 "Set character size\n"
19635 " This sets up the size of all subsequent characters drawn. The actual\n"
19636 " height of a character is the product of the default character size and\n"
19637 " a scaling factor.\n"
19639 " Redacted form: plschr(def, scale)\n"
19641 " This function is used in examples 2, 13, 23, and 24.\n"
19647 "plschr(def, scale)\n"
19651 " def (PLFLT, input) : The default height of a character in\n"
19652 " millimeters, should be set to zero if the default height is to\n"
19653 " remain unchanged. For rasterized drivers the dx and dy values\n"
19654 " specified in plspage are used to convert from mm to pixels (note\n"
19655 " the different unit systems used). This dpi aware scaling is not\n"
19656 " implemented for all drivers yet.\n"
19658 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
19659 " actual character height.\n"
19663 "Set cmap0 colors by 8-bit RGB values\n"
19667 " Set cmap0 colors using 8-bit RGB values (see the PLplot\n"
19668 " documentation). This sets the entire color map -- only as many colors\n"
19669 " as specified will be allocated.\n"
19671 " Redacted form: plscmap0(r, g, b)\n"
19673 " This function is used in examples 2 and 24.\n"
19679 "plscmap0(r, g, b, ncol0)\n"
19683 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19684 " integers (0-255) representing the degree of red in the color.\n"
19686 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19687 " integers (0-255) representing the degree of green in the color.\n"
19689 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19690 " integers (0-255) representing the degree of blue in the color.\n"
19692 " ncol0 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19696 "Set cmap0 colors by 8-bit RGB values and PLFLT alpha transparency value\n"
19700 " Set cmap0 colors using 8-bit RGB values (see the PLplot documentation)\n"
19701 " and PLFLT alpha transparency value. This sets the entire color map --\n"
19702 " only as many colors as specified will be allocated.\n"
19704 " Redacted form: plscmap0a(r, g, b, alpha)\n"
19706 " This function is used in examples 30.\n"
19712 "plscmap0a(r, g, b, alpha, ncol0)\n"
19716 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19717 " integers (0-255) representing the degree of red in the color.\n"
19719 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19720 " integers (0-255) representing the degree of green in the color.\n"
19722 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19723 " integers (0-255) representing the degree of blue in the color.\n"
19725 " alpha (PLFLT_VECTOR, input) : A vector containing values (0.0-1.0)\n"
19726 " representing the alpha transparency of the color.\n"
19728 " ncol0 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19733 "Set number of colors in cmap0\n"
19737 " Set number of colors in cmap0 (see the PLplot documentation). Allocate\n"
19738 " (or reallocate) cmap0, and fill with default values for those colors\n"
19739 " not previously allocated. The first 16 default colors are given in\n"
19740 " the plcol0 documentation. For larger indices the default color is\n"
19743 " The drivers are not guaranteed to support more than 16 colors.\n"
19745 " Redacted form: plscmap0n(ncol0)\n"
19747 " This function is used in examples 15, 16, and 24.\n"
19753 "plscmap0n(ncol0)\n"
19757 " ncol0 (PLINT, input) : Number of colors that will be allocated in\n"
19758 " the cmap0 palette. If this number is zero or less, then the value\n"
19759 " from the previous call to plscmap0n is used and if there is no\n"
19760 " previous call, then a default value is used.\n"
19764 "Set opaque RGB cmap1 colors values\n"
19768 " Set opaque cmap1 colors (see the PLplot documentation) using RGB\n"
19769 " vector values. This function also sets the number of cmap1 colors.\n"
19770 " N.B. Continuous cmap1 colors are indexed with a floating-point index\n"
19771 " in the range from 0.0-1.0 which is linearly transformed (e.g., by\n"
19772 " plcol1) to an integer index of these RGB vectors in the range from 0\n"
19774 " ncol1-1. So in order for this continuous color model to work\n"
19775 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19776 " that these RGB vectors are continuous functions of their integer\n"
19779 " Redacted form: plscmap1(r, g, b)\n"
19781 " This function is used in example 31.\n"
19787 "plscmap1(r, g, b, ncol1)\n"
19791 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19792 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19793 " color as a continuous function of the integer index of the vector.\n"
19795 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19796 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19797 " color as a continuous function of the integer index of the vector.\n"
19799 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19800 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19801 " color as a continuous function of the integer index of the vector.\n"
19803 " ncol1 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19807 "Set semitransparent cmap1 RGBA colors.\n"
19811 " Set semitransparent cmap1 colors (see the PLplot documentation) using\n"
19812 " RGBA vector values. This function also sets the number of cmap1\n"
19813 " colors. N.B. Continuous cmap1 colors are indexed with a\n"
19814 " floating-point index in the range from 0.0-1.0 which is linearly\n"
19815 " transformed (e.g., by plcol1) to an integer index of these RGBA\n"
19816 " vectors in the range from 0 to\n"
19817 " ncol1-1. So in order for this continuous color model to work\n"
19818 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19819 " that these RGBA vectors are continuous functions of their integer\n"
19822 " Redacted form: plscmap1a(r, g, b, alpha)\n"
19824 " This function is used in example 31.\n"
19830 "plscmap1a(r, g, b, alpha, ncol1)\n"
19834 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19835 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19836 " color as a continuous function of the integer index of the vector.\n"
19838 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19839 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19840 " color as a continuous function of the integer index of the vector.\n"
19842 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19843 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19844 " color as a continuous function of the integer index of the vector.\n"
19846 " alpha (PLFLT_VECTOR, input) : A vector that represents (using PLFLT\n"
19847 " values in the range from 0.0-1.0 where 0.0 corresponds to\n"
19848 " completely transparent and 1.0 corresponds to completely opaque)\n"
19849 " the alpha transparency of the color as a continuous function of\n"
19850 " the integer index of the vector.\n"
19852 " ncol1 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19857 "Set cmap1 colors using a piece-wise linear relationship\n"
19861 " Set cmap1 colors using a piece-wise linear relationship between the\n"
19862 " cmap1 intensity index (0.0-1.0) and position in HLS or RGB color space\n"
19863 " (see the PLplot documentation). May be called at any time.\n"
19865 " The idea here is to specify a number of control points that define the\n"
19866 " mapping between input cmap1 intensity indices and HLS or RGB. Between\n"
19867 " these points, linear interpolation is used which gives a smooth\n"
19868 " variation of color with intensity index. Any number of control points\n"
19869 " may be specified, located at arbitrary positions, although typically 2\n"
19870 " - 4 are enough. Another way of stating this is that we are traversing\n"
19871 " a given number of lines through HLS or RGB space as we move through\n"
19872 " cmap1 intensity indices. The control points at the minimum and\n"
19873 " maximum position (0 and 1) must always be specified. By adding more\n"
19874 " control points you can get more variation. One good technique for\n"
19875 " plotting functions that vary about some expected average is to use an\n"
19876 " additional 2 control points in the center (position ~= 0.5) that are\n"
19877 " the same lightness as the background (typically white for paper\n"
19878 " output, black for crt), and same hue as the boundary control points.\n"
19879 " This allows the highs and lows to be very easily distinguished.\n"
19881 " Each control point must specify the cmap1 intensity index and the\n"
19882 " associated three coordinates in HLS or RGB space. The first point\n"
19883 " must correspond to position = 0, and the last to position = 1.\n"
19885 " If RGB colors are provided then the interpolation takes place in RGB\n"
19886 " space and is trivial. However if HLS colors are provided then, because\n"
19887 " of the circular nature of the color wheel for the hue coordinate, the\n"
19888 " interpolation could be performed in either direction around the color\n"
19889 " wheel. The default behaviour is for the hue to be linearly\n"
19890 " interpolated ignoring this circular property of hue. So for example,\n"
19891 " the hues 0 (red) and 240 (blue) will get interpolated via yellow,\n"
19892 " green and cyan. If instead you wish to interpolate the other way\n"
19893 " around the color wheel you have two options. You may provide hues\n"
19894 " outside the range [0, 360), so by using a hue of -120 for blue or 360\n"
19895 " for red the interpolation will proceed via magenta. Alternatively you\n"
19896 " can utilise the alt_hue_path variable to reverse the direction of\n"
19897 " interpolation if you need to provide hues within the [0-360) range.\n"
19899 " Examples of interpolation Huealt_hue_pathcolor scheme[120\n"
19900 " 240]falsegreen-cyan-blue[240 120]falseblue-cyan-green[120\n"
19901 " -120]falsegreen-yellow-red-magenta-blue[240\n"
19902 " 480]falseblue-magenta-red-yellow-green[120\n"
19903 " 240]truegreen-yellow-red-magenta-blue[240\n"
19904 " 120]trueblue-magenta-red-yellow-green\n"
19906 " Bounds on coordinatesRGBR[0, 1]magnitudeRGBG[0, 1]magnitudeRGBB[0,\n"
19907 " 1]magnitudeHLShue[0, 360]degreesHLSlightness[0,\n"
19908 " 1]magnitudeHLSsaturation[0, 1]magnitude\n"
19910 " Redacted form: plscmap1l(itype, intensity, coord1, coord2, coord3,\n"
19913 " This function is used in examples 8, 11, 12, 15, 20, and 21.\n"
19919 "plscmap1l(itype, npts, intensity, coord1, coord2, coord3, alt_hue_path)\n"
19923 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19925 " npts (PLINT, input) : number of control points\n"
19927 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19928 " intensity index (0.0-1.0) in ascending order for each control\n"
19931 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19932 " coordinate (H or R) for each control point.\n"
19934 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19935 " coordinate (L or G) for each control point.\n"
19937 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19938 " coordinate (S or B) for each control point.\n"
19940 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19941 " npts - 1 elements), each containing either true to use the reversed\n"
19942 " HLS interpolation or false to use the regular HLS interpolation.\n"
19943 " (alt_hue_path[i] refers to the interpolation interval between the\n"
19944 " i and i + 1 control points). This parameter is not used for RGB\n"
19946 " itype = true).\n"
19950 "Set cmap1 colors and alpha transparency using a piece-wise linear relationship\n"
19954 " This is a variant of plscmap1l that supports alpha channel\n"
19955 " transparency. It sets cmap1 colors using a piece-wise linear\n"
19956 " relationship between cmap1 intensity index (0.0-1.0) and position in\n"
19957 " HLS or RGB color space (see the PLplot documentation) with alpha\n"
19958 " transparency value (0.0-1.0). It may be called at any time.\n"
19960 " Redacted form: plscmap1la(itype, intensity, coord1, coord2, coord3,\n"
19961 " alpha, alt_hue_path)\n"
19963 " This function is used in example 30.\n"
19969 "plscmap1la(itype, npts, intensity, coord1, coord2, coord3, alpha, alt_hue_path)\n"
19973 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19975 " npts (PLINT, input) : number of control points.\n"
19977 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19978 " intensity index (0.0-1.0) in ascending order for each control\n"
19981 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19982 " coordinate (H or R) for each control point.\n"
19984 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19985 " coordinate (L or G) for each control point.\n"
19987 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19988 " coordinate (S or B) for each control point.\n"
19990 " alpha (PLFLT_VECTOR, input) : A vector containing the alpha\n"
19991 " transparency value (0.0-1.0) for each control point.\n"
19993 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19994 " npts - 1 elements) containing the alternative interpolation method\n"
19995 " Boolean value for each control point interval. (alt_hue_path[i]\n"
19996 " refers to the interpolation interval between the i and i + 1\n"
19997 " control points).\n"
20001 "Set number of colors in cmap1\n"
20005 " Set number of colors in cmap1, (re-)allocate cmap1, and set default\n"
20006 " values if this is the first allocation (see the PLplot documentation).\n"
20008 " Redacted form: plscmap1n(ncol1)\n"
20010 " This function is used in examples 8, 11, 20, and 21.\n"
20016 "plscmap1n(ncol1)\n"
20020 " ncol1 (PLINT, input) : Number of colors that will be allocated in\n"
20021 " the cmap1 palette. If this number is zero or less, then the value\n"
20022 " from the previous call to plscmap1n is used and if there is no\n"
20023 " previous call, then a default value is used.\n"
20027 "Set the cmap1 argument range for continuous color plots\n"
20031 " Set the cmap1 argument range for continuous color plots that\n"
20032 " corresponds to the range of data values. The maximum range\n"
20033 " corresponding to the entire cmap1 palette is 0.0-1.0, and the smaller\n"
20034 " the cmap1 argument range that is specified with this routine, the\n"
20035 " smaller the subset of the cmap1 color palette that is used to\n"
20036 " represent the continuous data being plotted. If\n"
20037 " min_color is greater than\n"
20039 " max_color is greater than 1.0 or\n"
20040 " min_color is less than 0.0 then no change is made to the cmap1\n"
20041 " argument range. (Use plgcmap1_range to get the cmap1 argument range.)\n"
20043 " Redacted form: plscmap1_range(min_color, max_color)\n"
20045 " This function is currently used in example 33.\n"
20051 "plscmap1_range(min_color, max_color)\n"
20055 " min_color (PLFLT, input) : The minimum cmap1 argument. If less\n"
20056 " than 0.0, then 0.0 is used instead.\n"
20058 " max_color (PLFLT, input) : The maximum cmap1 argument. If greater\n"
20059 " than 1.0, then 1.0 is used instead.\n"
20063 "Get the cmap1 argument range for continuous color plots\n"
20067 " Get the cmap1 argument range for continuous color plots. (Use\n"
20068 " plscmap1_range to set the cmap1 argument range.)\n"
20070 " Redacted form: plgcmap1_range(min_color, max_color)\n"
20072 " This function is currently not used in any example.\n"
20078 "plgcmap1_range(min_color, max_color)\n"
20082 " min_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20083 " minimum cmap1 argument.\n"
20085 " max_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20086 " maximum cmap1 argument.\n"
20090 "Set 8-bit RGB values for given cmap0 color index\n"
20094 " Set 8-bit RGB values for given cmap0 (see the PLplot documentation)\n"
20095 " index. Overwrites the previous color value for the given index and,\n"
20096 " thus, does not result in any additional allocation of space for\n"
20099 " Redacted form: plscol0(icol0, r, g, b)\n"
20101 " This function is used in any example 31.\n"
20107 "plscol0(icol0, r, g, b)\n"
20111 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20112 " number of colors (which is set by default, by plscmap0n, or even\n"
20115 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20116 " degree of red in the color.\n"
20118 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20119 " degree of green in the color.\n"
20121 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20122 " degree of blue in the color.\n"
20126 "Set 8-bit RGB values and PLFLT alpha transparency value for given cmap0 color index\n"
20130 " Set 8-bit RGB value and PLFLT alpha transparency value for given cmap0\n"
20131 " (see the PLplot documentation) index. Overwrites the previous color\n"
20132 " value for the given index and, thus, does not result in any additional\n"
20133 " allocation of space for colors.\n"
20135 " This function is used in example 30.\n"
20141 "plscol0a(icol0, r, g, b, alpha)\n"
20145 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20146 " number of colors (which is set by default, by plscmap0n, or even\n"
20149 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20150 " degree of red in the color.\n"
20152 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20153 " degree of green in the color.\n"
20155 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20156 " degree of blue in the color.\n"
20158 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20163 "Set the background color by 8-bit RGB value\n"
20167 " Set the background color (color 0 in cmap0) by 8-bit RGB value (see\n"
20168 " the PLplot documentation).\n"
20170 " Redacted form: plscolbg(r, g, b)\n"
20172 " This function is used in examples 15 and 31.\n"
20178 "plscolbg(r, g, b)\n"
20182 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20183 " degree of red in the color.\n"
20185 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20186 " degree of green in the color.\n"
20188 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20189 " degree of blue in the color.\n"
20193 "Set the background color by 8-bit RGB value and PLFLT alpha transparency value.\n"
20197 " Set the background color (color 0 in cmap0) by 8-bit RGB value and\n"
20198 " PLFLT alpha transparency value (see the PLplot documentation).\n"
20200 " This function is used in example 31.\n"
20206 "plscolbga(r, g, b, alpha)\n"
20210 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20211 " degree of red in the color.\n"
20213 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20214 " degree of green in the color.\n"
20216 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20217 " degree of blue in the color.\n"
20219 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20224 "Used to globally turn color output on/off\n"
20228 " Used to globally turn color output on/off for those drivers/devices\n"
20229 " that support it.\n"
20231 " Redacted form: plscolor(color)\n"
20233 " This function is used in example 31.\n"
20239 "plscolor(color)\n"
20243 " color (PLINT, input) : Color flag (Boolean). If zero, color is\n"
20244 " turned off. If non-zero, color is turned on.\n"
20248 "Set device-compression level\n"
20252 " Set device-compression level. Only used for drivers that provide\n"
20253 " compression. This function, if used, should be invoked before a call\n"
20256 " Redacted form: plscompression(compression)\n"
20258 " This function is used in example 31.\n"
20264 "plscompression(compression)\n"
20268 " compression (PLINT, input) : The desired compression level. This is\n"
20269 " a device-dependent value. Currently only the jpeg and png devices\n"
20270 " use these values. For jpeg value is the jpeg quality which should\n"
20271 " normally be in the range 0-95. Higher values denote higher quality\n"
20272 " and hence larger image sizes. For png values are in the range -1\n"
20273 " to 99. Values of 0-9 are taken as the compression level for zlib.\n"
20274 " A value of -1 denotes the default zlib compression level. Values\n"
20275 " in the range 10-99 are divided by 10 and then used as the zlib\n"
20276 " compression level. Higher compression levels correspond to greater\n"
20277 " compression and small file sizes at the expense of more\n"
20282 "Set the device (keyword) name\n"
20286 " Set the device (keyword) name.\n"
20288 " Redacted form: plsdev(devname)\n"
20290 " This function is used in examples 1, 14, and 20.\n"
20296 "plsdev(devname)\n"
20300 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
20301 " containing the device name keyword of the required output device.\n"
20303 " devname is NULL or if the first character of the string is a ``?'',\n"
20304 " the normal (prompted) start up is used.\n"
20308 "Set parameters that define current device-space window\n"
20312 " Set relative margin width, aspect ratio, and relative justification\n"
20313 " that define current device-space window. If you want to just use the\n"
20314 " previous value for any of these, just pass in the magic value\n"
20315 " PL_NOTSET. It is unlikely that one should ever need to change the\n"
20316 " aspect ratio but it's in there for completeness. If plsdidev is not\n"
20317 " called the default values of mar, jx, and jy are all 0. aspect is set\n"
20318 " to a device-specific value.\n"
20320 " Redacted form: plsdidev(mar, aspect, jx, jy)\n"
20322 " This function is used in example 31.\n"
20328 "plsdidev(mar, aspect, jx, jy)\n"
20332 " mar (PLFLT, input) : Relative margin width.\n"
20334 " aspect (PLFLT, input) : Aspect ratio.\n"
20336 " jx (PLFLT, input) : Relative justification in x. Value must lie in\n"
20337 " the range -0.5 to 0.5.\n"
20339 " jy (PLFLT, input) : Relative justification in y. Value must lie in\n"
20340 " the range -0.5 to 0.5.\n"
20344 "Set up transformation from metafile coordinates\n"
20348 " Set up transformation from metafile coordinates. The size of the plot\n"
20349 " is scaled so as to preserve aspect ratio. This isn't intended to be a\n"
20350 " general-purpose facility just yet (not sure why the user would need\n"
20353 " Redacted form: plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm,\n"
20356 " This function is not used in any examples.\n"
20362 "plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm, dimypmm)\n"
20366 " dimxmin (PLINT, input) : NEEDS DOCUMENTATION\n"
20368 " dimxmax (PLINT, input) : NEEDS DOCUMENTATION\n"
20370 " dimymin (PLINT, input) : NEEDS DOCUMENTATION\n"
20372 " dimymax (PLINT, input) : NEEDS DOCUMENTATION\n"
20374 " dimxpmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20376 " dimypmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20380 "Set plot orientation\n"
20384 " Set plot orientation parameter which is multiplied by 90 degrees to\n"
20385 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
20386 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
20387 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
20388 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
20389 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori is\n"
20390 " not called the default value of rot is 0.\n"
20392 " N.B. aspect ratio is unaffected by calls to plsdiori. So you will\n"
20393 " probably want to change the aspect ratio to a value suitable for the\n"
20394 " plot orientation using a call to plsdidev or the command-line options\n"
20395 " -a or -freeaspect. For more documentation of those options see the\n"
20396 " PLplot documentation. Such command-line options can be set internally\n"
20397 " using plsetopt or set directly using the command line and parsed using\n"
20398 " a call to plparseopts.\n"
20400 " Redacted form: plsdiori(rot)\n"
20402 " This function is not used in any examples.\n"
20412 " rot (PLFLT, input) : Plot orientation parameter.\n"
20416 "Set parameters that define current plot-space window\n"
20420 " Set relative minima and maxima that define the current plot-space\n"
20421 " window. If plsdiplt is not called the default values of xmin, ymin,\n"
20422 " xmax, and ymax are 0., 0., 1., and 1.\n"
20424 " Redacted form: plsdiplt(xmin, ymin, xmax, ymax)\n"
20426 " This function is used in example 31.\n"
20432 "plsdiplt(xmin, ymin, xmax, ymax)\n"
20436 " xmin (PLFLT, input) : Relative minimum in x.\n"
20438 " ymin (PLFLT, input) : Relative minimum in y.\n"
20440 " xmax (PLFLT, input) : Relative maximum in x.\n"
20442 " ymax (PLFLT, input) : Relative maximum in y.\n"
20446 "Set parameters incrementally (zoom mode) that define current plot-space window\n"
20450 " Set relative minima and maxima incrementally (zoom mode) that define\n"
20451 " the current plot-space window. This function has the same effect as\n"
20452 " plsdiplt if that function has not been previously called. Otherwise,\n"
20453 " this function implements zoom mode using the transformation min_used =\n"
20454 " old_min + old_length*min and max_used = old_min + old_length*max for\n"
20455 " each axis. For example, if min = 0.05 and max = 0.95 for each axis,\n"
20456 " repeated calls to plsdiplz will zoom in by 10 per cent for each call.\n"
20458 " Redacted form: plsdiplz(xmin, ymin, xmax, ymax)\n"
20460 " This function is used in example 31.\n"
20466 "plsdiplz(xmin, ymin, xmax, ymax)\n"
20470 " xmin (PLFLT, input) : Relative (incremental) minimum in x.\n"
20472 " ymin (PLFLT, input) : Relative (incremental) minimum in y.\n"
20474 " xmax (PLFLT, input) : Relative (incremental) maximum in x.\n"
20476 " ymax (PLFLT, input) : Relative (incremental) maximum in y.\n"
20480 "Set seed for internal random number generator.\n"
20484 " Set the seed for the internal random number generator. See plrandd for\n"
20485 " further details.\n"
20487 " Redacted form: plseed(seed)\n"
20489 " This function is used in example 21.\n"
20499 " seed (unsigned int, input) : Seed for random number generator.\n"
20503 "Set the escape character for text strings\n"
20507 " Set the escape character for text strings. From C (in contrast to\n"
20508 " Fortran, see plsescfortran) you pass esc as a character. Only selected\n"
20509 " characters are allowed to prevent the user from shooting himself in\n"
20510 " the foot (For example, a \\ isn't allowed since it conflicts with C's\n"
20511 " use of backslash as a character escape). Here are the allowed escape\n"
20512 " characters and their corresponding decimal ASCII values: !, ASCII 33\n"
20523 " Redacted form: General: plsesc(esc)\n"
20526 " This function is used in example 29.\n"
20536 " esc (char, input) : Escape character.\n"
20540 "Set any command-line option\n"
20544 " Set any command-line option internally from a program before it\n"
20545 " invokes plinit. opt is the name of the command-line option and optarg\n"
20546 " is the corresponding command-line option argument.\n"
20548 " This function returns 0 on success.\n"
20550 " Redacted form: plsetopt(opt, optarg)\n"
20552 " This function is used in example 14.\n"
20558 "PLINT plsetopt(opt, optarg)\n"
20562 " opt (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20563 " the command-line option.\n"
20565 " optarg (PLCHAR_VECTOR, input) : An ascii character string\n"
20566 " containing the argument of the command-line option.\n"
20570 "Set family file parameters\n"
20574 " Sets variables dealing with output file familying. Does nothing if\n"
20575 " familying not supported by the driver. This routine, if used, must be\n"
20576 " called before initializing PLplot. See the PLplot documentation for\n"
20577 " more information.\n"
20579 " Redacted form: plsfam(fam, num, bmax)\n"
20581 " This function is used in examples 14 and 31.\n"
20587 "plsfam(fam, num, bmax)\n"
20591 " fam (PLINT, input) : Family flag (Boolean). If nonzero, familying\n"
20594 " num (PLINT, input) : Current family file number.\n"
20596 " bmax (PLINT, input) : Maximum file size (in bytes) for a family\n"
20601 "Set FCI (font characterization integer)\n"
20605 " Sets font characteristics to be used at the start of the next string\n"
20606 " using the FCI approach. See the PLplot documentation for more\n"
20607 " information. Note, plsfont (which calls plsfci internally) provides a\n"
20608 " more user-friendly API for setting the font characterisitics.\n"
20610 " Redacted form: General: plsfci(fci)\n"
20613 " This function is used in example 23.\n"
20623 " fci (PLUNICODE, input) : PLUNICODE (unsigned 32-bit integer) value\n"
20628 "Set output file name\n"
20632 " Sets the current output file name, if applicable. If the file name\n"
20633 " has not been specified and is required by the driver, the user will be\n"
20634 " prompted for it. If using the X-windows output driver, this sets the\n"
20635 " display name. This routine, if used, must be called before\n"
20636 " initializing PLplot.\n"
20638 " Redacted form: plsfnam(fnam)\n"
20640 " This function is used in examples 1 and 20.\n"
20650 " fnam (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20651 " the file name.\n"
20655 "Set family, style and weight of the current font\n"
20659 " Sets the current font. See the PLplot documentation for more\n"
20660 " information on font selection.\n"
20662 " Redacted form: plsfont(family, style, weight)\n"
20664 " This function is used in example 23.\n"
20670 "plsfont(family, style, weight)\n"
20674 " family (PLINT, input) : Font family to select for the current font.\n"
20675 " The available values are given by the PL_FCI_* constants in\n"
20676 " plplot.h. Current options are PL_FCI_SANS, PL_FCI_SERIF,\n"
20677 " PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. A negative value\n"
20678 " signifies that the font family should not be altered.\n"
20680 " style (PLINT, input) : Font style to select for the current font.\n"
20681 " The available values are given by the PL_FCI_* constants in\n"
20682 " plplot.h. Current options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and\n"
20683 " PL_FCI_OBLIQUE. A negative value signifies that the font style\n"
20684 " should not be altered.\n"
20686 " weight (PLINT, input) : Font weight to select for the current font.\n"
20687 " The available values are given by the PL_FCI_* constants in\n"
20688 " plplot.h. Current options are PL_FCI_MEDIUM and PL_FCI_BOLD. A\n"
20689 " negative value signifies that the font weight should not be\n"
20694 "Shade regions on the basis of value\n"
20698 " Shade regions on the basis of value. This is the high-level routine\n"
20699 " for making continuous color shaded plots with cmap1 while plshade\n"
20700 " should be used to plot individual shaded regions using either cmap0 or\n"
20701 " cmap1. examples/;<language>/x16* shows how to use plshades for each of\n"
20702 " our supported languages.\n"
20704 " Redacted form: General: plshades(a, defined, xmin, xmax, ymin, ymax,\n"
20705 " clevel, fill_width, cont_color, cont_width, fill, rectangular, pltr,\n"
20709 " This function is used in examples 16, 21, and 22.\n"
20715 "plshades(a, nx, ny, defined, xmin, xmax, ymin, ymax, clevel, nlevel, fill_width, cont_color, cont_width, fill, rectangular, pltr, pltr_data)\n"
20719 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20720 " plot. Should have dimensions of\n"
20724 " nx (PLINT, input) : First dimension of matrix \"a\".\n"
20726 " ny (PLINT, input) : Second dimension of matrix \"a\".\n"
20728 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20729 " the region that should be plotted in the shade plot. This\n"
20730 " function accepts x and y coordinates as input arguments and must\n"
20731 " return 1 if the point is to be included in the shade plot and 0\n"
20732 " otherwise. If you want to plot the entire shade plot (the usual\n"
20733 " case), this argument should be set to NULL.\n"
20735 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20736 " pltr below for how these arguments are used (only for the special case\n"
20737 " when the callback function\n"
20738 " pltr is not supplied).\n"
20740 " clevel (PLFLT_VECTOR, input) : A vector containing the data levels\n"
20741 " corresponding to the edges of each shaded region that will be\n"
20742 " plotted by this function. To work properly the levels should be\n"
20745 " nlevel (PLINT, input) : Number of shades plus 1 (i.e., the number\n"
20746 " of shade edge values in clevel).\n"
20748 " fill_width (PLFLT, input) : Defines the line width used by the fill\n"
20751 " cont_color (PLINT, input) : Defines cmap0 pen color used for\n"
20752 " contours defining edges of shaded regions. The pen color is only\n"
20753 " temporary set for the contour drawing. Set this value to zero or\n"
20754 " less if no shade edge contours are wanted.\n"
20756 " cont_width (PLFLT, input) : Defines line width used for contours\n"
20757 " defining edges of shaded regions. This value may not be honored\n"
20758 " by all drivers. The pen width is only temporary set for the\n"
20759 " contour drawing. Set this value to zero or less if no shade edge\n"
20760 " contours are wanted.\n"
20762 " fill (PLFILL_callback, input) : Callback routine used to fill the\n"
20763 " region. Use plfill for this purpose.\n"
20765 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20766 " map to rectangles after coordinate transformation with pltrl.\n"
20767 " Otherwise, set rectangular to false. If rectangular is set to\n"
20768 " true, plshade tries to save time by filling large rectangles.\n"
20769 " This optimization fails if the coordinate transformation distorts\n"
20770 " the shape of rectangles. For example a plot in polar coordinates\n"
20771 " has to have rectangular set to false.\n"
20773 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20774 " defines the transformation between the zero-based indices of the\n"
20775 " matrix a and world coordinates. If\n"
20776 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20777 " indices of a are mapped to the range\n"
20779 " xmax and the y indices of a are mapped to the range\n"
20781 " ymax.For the C case, transformation functions are provided in the\n"
20782 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20783 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20784 " matrices. In addition, C callback routines for the transformation\n"
20785 " can be supplied by the user such as the mypltr function in\n"
20786 " examples/c/x09c.c which provides a general linear transformation\n"
20787 " between index coordinates and world coordinates.For languages\n"
20788 " other than C you should consult the PLplot documentation for the\n"
20789 " details concerning how PLTRANSFORM_callback arguments are\n"
20790 " interfaced. However, in general, a particular pattern of\n"
20791 " callback-associated arguments such as a tr vector with 6 elements;\n"
20792 " xg and yg vectors; or xg and yg matrices are respectively\n"
20793 " interfaced to a linear-transformation routine similar to the above\n"
20794 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20795 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20796 " support native language callbacks for handling index to\n"
20797 " world-coordinate transformations. Examples of these various\n"
20798 " approaches are given in examples/<language>x09*,\n"
20799 " examples/<language>x16*, examples/<language>x20*,\n"
20800 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20801 " supported languages.\n"
20803 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20804 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20805 " externally supplied.\n"
20809 "Shade individual region on the basis of value\n"
20813 " Shade individual region on the basis of value. Use plshades if you\n"
20814 " want to shade a number of contiguous regions using continuous colors.\n"
20815 " In particular the edge contours are treated properly in plshades. If\n"
20816 " you attempt to do contiguous regions with plshade the contours at the\n"
20817 " edge of the shade are partially obliterated by subsequent plots of\n"
20818 " contiguous shaded regions.\n"
20820 " Redacted form: General: plshade(a, defined, xmin, xmax, ymin, ymax,\n"
20821 " shade_min, shade_max, sh_cmap, sh_color, sh_width, min_color,\n"
20822 " min_width, max_color, max_width, fill, rectangular, pltr, pltr_data)\n"
20825 " This function is used in example 15.\n"
20831 "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"
20835 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20836 " plot. Should have dimensions of\n"
20840 " nx (PLINT, input) : First dimension of the matrix \"a\".\n"
20842 " ny (PLINT, input) : Second dimension of the matrix \"a\".\n"
20844 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20845 " the region that should be plotted in the shade plot. This\n"
20846 " function accepts x and y coordinates as input arguments and must\n"
20847 " return 1 if the point is to be included in the shade plot and 0\n"
20848 " otherwise. If you want to plot the entire shade plot (the usual\n"
20849 " case), this argument should be set to NULL.\n"
20851 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20852 " pltr below for how these arguments are used (only for the special case\n"
20853 " when the callback function\n"
20854 " pltr is not supplied).\n"
20856 " shade_min (PLFLT, input) : Defines the lower end of the interval to\n"
20857 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20859 " shade_max (PLFLT, input) : Defines the upper end of the interval to\n"
20860 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20862 " sh_cmap (PLINT, input) : Defines color map. If sh_cmap=0, then\n"
20863 " sh_color is interpreted as a cmap0 (integer) index. If sh_cmap=1,\n"
20864 " then sh_color is interpreted as a cmap1 argument in the range\n"
20867 " sh_color (PLFLT, input) : Defines color map index with integer\n"
20868 " value if cmap0 or value in range (0.0-1.0) if cmap1.\n"
20870 " sh_width (PLFLT, input) : Defines width used by the fill pattern.\n"
20872 " min_color (PLINT, input) : Defines pen color, width used by the\n"
20873 " boundary of shaded region. The min values are used for the\n"
20874 " shade_min boundary, and the max values are used on the shade_max\n"
20875 " boundary. Set color and width to zero for no plotted boundaries.\n"
20877 " min_width (PLFLT, input) : Defines pen color, width used by the\n"
20878 " boundary of shaded region. The min values are used for the\n"
20879 " shade_min boundary, and the max values are used on the shade_max\n"
20880 " boundary. Set color and width to zero for no plotted boundaries.\n"
20882 " max_color (PLINT, input) : Defines pen color, width used by the\n"
20883 " boundary of shaded region. The min values are used for the\n"
20884 " shade_min boundary, and the max values are used on the shade_max\n"
20885 " boundary. Set color and width to zero for no plotted boundaries.\n"
20887 " max_width (PLFLT, input) : Defines pen color, width used by the\n"
20888 " boundary of shaded region. The min values are used for the\n"
20889 " shade_min boundary, and the max values are used on the shade_max\n"
20890 " boundary. Set color and width to zero for no plotted boundaries.\n"
20892 " fill (PLFILL_callback, input) : Routine used to fill the region.\n"
20893 " Use plfill. Future version of PLplot may have other fill\n"
20896 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20897 " map to rectangles after coordinate transformation with pltrl.\n"
20898 " Otherwise, set rectangular to false. If rectangular is set to\n"
20899 " true, plshade tries to save time by filling large rectangles.\n"
20900 " This optimization fails if the coordinate transformation distorts\n"
20901 " the shape of rectangles. For example a plot in polar coordinates\n"
20902 " has to have rectangular set to false.\n"
20904 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20905 " defines the transformation between the zero-based indices of the\n"
20906 " matrix a and world coordinates. If\n"
20907 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20908 " indices of a are mapped to the range\n"
20910 " xmax and the y indices of a are mapped to the range\n"
20912 " ymax.For the C case, transformation functions are provided in the\n"
20913 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20914 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20915 " matrices. In addition, C callback routines for the transformation\n"
20916 " can be supplied by the user such as the mypltr function in\n"
20917 " examples/c/x09c.c which provides a general linear transformation\n"
20918 " between index coordinates and world coordinates.For languages\n"
20919 " other than C you should consult the PLplot documentation for the\n"
20920 " details concerning how PLTRANSFORM_callback arguments are\n"
20921 " interfaced. However, in general, a particular pattern of\n"
20922 " callback-associated arguments such as a tr vector with 6 elements;\n"
20923 " xg and yg vectors; or xg and yg matrices are respectively\n"
20924 " interfaced to a linear-transformation routine similar to the above\n"
20925 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20926 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20927 " support native language callbacks for handling index to\n"
20928 " world-coordinate transformations. Examples of these various\n"
20929 " approaches are given in examples/<language>x09*,\n"
20930 " examples/<language>x16*, examples/<language>x20*,\n"
20931 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20932 " supported languages.\n"
20934 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20935 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20936 " externally supplied.\n"
20940 "Assign a function to use for generating custom axis labels\n"
20944 " This function allows a user to provide their own function to provide\n"
20945 " axis label text. The user function is given the numeric value for a\n"
20946 " point on an axis and returns a string label to correspond with that\n"
20947 " value. Custom axis labels can be enabled by passing appropriate\n"
20948 " arguments to plenv, plbox, plbox3 and similar functions.\n"
20950 " This function is used in example 19.\n"
20956 "plslabelfunc(label_func, label_data)\n"
20960 " label_func (PLLABEL_FUNC_callback, input) : This is the custom\n"
20961 " label function. In order to reset to the default labelling, set\n"
20962 " this to NULL. The labelling function parameters are, in order:\n"
20963 " axis: This indicates which axis a label is being requested for.\n"
20964 " The value will be one of PL_X_AXIS, PL_Y_AXIS or PL_Z_AXIS.\n"
20966 " value: This is the value along the axis which is being labelled.\n"
20968 " label_text: The string representation of the label value.\n"
20970 " length: The maximum length in characters allowed for label_text.\n"
20973 " label_data (PLPointer, input) : This parameter may be used to pass\n"
20974 " data to the label_func function.\n"
20978 "Set length of major ticks\n"
20982 " This sets up the length of the major ticks. The actual length is the\n"
20983 " product of the default length and a scaling factor as for character\n"
20986 " Redacted form: plsmaj(def, scale)\n"
20988 " This function is used in example 29.\n"
20994 "plsmaj(def, scale)\n"
20998 " def (PLFLT, input) : The default length of a major tick in\n"
20999 " millimeters, should be set to zero if the default length is to\n"
21000 " remain unchanged.\n"
21002 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21003 " actual tick length.\n"
21007 "Set the memory area to be plotted (RGB)\n"
21011 " Set the memory area to be plotted (with the mem or memcairo driver) as\n"
21012 " the dev member of the stream structure. Also set the number of pixels\n"
21013 " in the memory passed in\n"
21014 " plotmem, which is a block of memory\n"
21016 " maxx by 3 bytes long, say: 480 x 640 x 3 (Y, X, RGB)\n"
21018 " This memory will have to be freed by the user!\n"
21020 " Redacted form: plsmem(maxx, maxy, plotmem)\n"
21022 " This function is not used in any examples.\n"
21028 "plsmem(maxx, maxy, plotmem)\n"
21032 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21034 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21036 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21037 " user-supplied writeable memory area.\n"
21041 "Set the memory area to be plotted (RGBA)\n"
21045 " Set the memory area to be plotted (with the memcairo driver) as the\n"
21046 " dev member of the stream structure. Also set the number of pixels in\n"
21047 " the memory passed in\n"
21048 " plotmem, which is a block of memory\n"
21050 " maxx by 4 bytes long, say: 480 x 640 x 4 (Y, X, RGBA)\n"
21052 " This memory will have to be freed by the user!\n"
21054 " Redacted form: plsmema(maxx, maxy, plotmem)\n"
21056 " This function is not used in any examples.\n"
21062 "plsmema(maxx, maxy, plotmem)\n"
21066 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21068 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21070 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21071 " user-supplied writeable memory area.\n"
21075 "Set length of minor ticks\n"
21079 " This sets up the length of the minor ticks and the length of the\n"
21080 " terminals on error bars. The actual length is the product of the\n"
21081 " default length and a scaling factor as for character height.\n"
21083 " Redacted form: plsmin(def, scale)\n"
21085 " This function is used in example 29.\n"
21091 "plsmin(def, scale)\n"
21095 " def (PLFLT, input) : The default length of a minor tick in\n"
21096 " millimeters, should be set to zero if the default length is to\n"
21097 " remain unchanged.\n"
21099 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21100 " actual tick length.\n"
21104 "Set orientation\n"
21108 " Set integer plot orientation parameter. This function is identical to\n"
21109 " plsdiori except for the type of the argument, and should be used in\n"
21110 " the same way. See the documentation of plsdiori for details.\n"
21112 " Redacted form: plsori(ori)\n"
21114 " This function is used in example 3.\n"
21124 " ori (PLINT, input) : Orientation value (0 for landscape, 1 for\n"
21125 " portrait, etc.) The value is multiplied by 90 degrees to get the\n"
21130 "Set page parameters\n"
21134 " Sets the page configuration (optional). If an individual parameter is\n"
21135 " zero then that parameter value is not updated. Not all parameters are\n"
21136 " recognized by all drivers and the interpretation is device-dependent.\n"
21137 " The X-window driver uses the length and offset parameters to determine\n"
21138 " the window size and location. The length and offset values are\n"
21139 " expressed in units that are specific to the current driver. For\n"
21140 " instance: screen drivers will usually interpret them as number of\n"
21141 " pixels, whereas printer drivers will usually use mm.\n"
21143 " This routine, if used, must be called before initializing PLplot. It\n"
21144 " may be called at later times for interactive drivers to change only\n"
21145 " the dpi for subsequent redraws which you can force via a call to\n"
21146 " plreplot. If this function is not called then the page size defaults\n"
21147 " to landscape A4 for drivers which use real world page sizes and 744\n"
21148 " pixels wide by 538 pixels high for raster drivers. The default value\n"
21149 " for dx and dy is 90 pixels per inch for raster drivers.\n"
21153 " Redacted form: plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21155 " This function is used in examples 14 and 31.\n"
21161 "plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21165 " xp (PLFLT, input) : Number of pixels per inch (DPI), x. Used only\n"
21166 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21169 " yp (PLFLT, input) : Number of pixels per inch (DPI), y. Used only\n"
21170 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21173 " xleng (PLINT, input) : Page length, x.\n"
21175 " yleng (PLINT, input) : Page length, y.\n"
21177 " xoff (PLINT, input) : Page offset, x.\n"
21179 " yoff (PLINT, input) : Page offset, y.\n"
21183 "Set the cmap0 palette using the specified cmap0*.pal format file\n"
21187 " Set the cmap0 palette using the specified cmap0*.pal format file.\n"
21189 " Redacted form: plspal0(filename)\n"
21191 " This function is in example 16.\n"
21197 "plspal0(filename)\n"
21201 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21202 " containing the name of the cmap0*.pal file. If this string is\n"
21203 " empty, use the default cmap0*.pal file.\n"
21207 "Set the cmap1 palette using the specified cmap1*.pal format file\n"
21211 " Set the cmap1 palette using the specified cmap1*.pal format file.\n"
21213 " Redacted form: plspal1(filename, interpolate)\n"
21215 " This function is used in example 16.\n"
21221 "plspal1(filename, interpolate)\n"
21225 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21226 " containing the name of the cmap1*.pal file. If this string is\n"
21227 " empty, use the default cmap1*.pal file.\n"
21229 " interpolate (PLBOOL, input) : If this parameter is true, the\n"
21230 " columns containing the intensity index, r, g, b, alpha and\n"
21231 " alt_hue_path in the cmap1*.pal file are used to set the cmap1\n"
21232 " palette with a call to plscmap1la. (The cmap1*.pal header contains\n"
21233 " a flag which controls whether the r, g, b data sent to plscmap1la\n"
21234 " are interpreted as HLS or RGB.) If this parameter is false, the\n"
21235 " intensity index and alt_hue_path columns are ignored and the r, g,\n"
21236 " b (interpreted as RGB), and alpha columns of the cmap1*.pal file\n"
21237 " are used instead to set the cmap1 palette directly with a call to\n"
21242 "Set the pause (on end-of-page) status\n"
21246 " Set the pause (on end-of-page) status.\n"
21248 " Redacted form: plspause(pause)\n"
21250 " This function is in examples 14,20.\n"
21256 "plspause(pause)\n"
21260 " pause (PLBOOL, input) : If pause is true there will be a pause on\n"
21261 " end-of-page for those drivers which support this. Otherwise there\n"
21266 "Set current output stream\n"
21270 " Sets the number of the current output stream. The stream number\n"
21271 " defaults to 0 unless changed by this routine. The first use of this\n"
21272 " routine must be followed by a call initializing PLplot (e.g. plstar).\n"
21274 " Redacted form: plsstrm(strm)\n"
21276 " This function is examples 1,14,20.\n"
21286 " strm (PLINT, input) : The current stream number.\n"
21290 "Set the number of subpages in x and y\n"
21294 " Set the number of subpages in x and y.\n"
21296 " Redacted form: plssub(nx, ny)\n"
21298 " This function is examples 1,2,14,21,25,27.\n"
21308 " nx (PLINT, input) : Number of windows in x direction (i.e., number\n"
21309 " of window columns).\n"
21311 " ny (PLINT, input) : Number of windows in y direction (i.e., number\n"
21312 " of window rows).\n"
21316 "Set symbol size\n"
21320 " This sets up the size of all subsequent symbols drawn by plpoin and\n"
21321 " plsym. The actual height of a symbol is the product of the default\n"
21322 " symbol size and a scaling factor as for the character height.\n"
21324 " Redacted form: plssym(def, scale)\n"
21326 " This function is used in example 29.\n"
21332 "plssym(def, scale)\n"
21336 " def (PLFLT, input) : The default height of a symbol in millimeters,\n"
21337 " should be set to zero if the default height is to remain\n"
21340 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21341 " actual symbol height.\n"
21349 " Initializing the plotting package. The program prompts for the device\n"
21350 " keyword or number of the desired output device. Hitting a RETURN in\n"
21351 " response to the prompt is the same as selecting the first device. If\n"
21352 " only one device is enabled when PLplot is installed, plstar will issue\n"
21353 " no prompt. The output device is divided into nx by ny subpages, each\n"
21354 " of which may be used independently. The subroutine pladv is used to\n"
21355 " advance from one subpage to the next.\n"
21357 " Redacted form: plstar(nx, ny)\n"
21359 " This function is used in example 1.\n"
21369 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21372 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21381 " Alternative to plstar for initializing the plotting package. The\n"
21382 " device name keyword for the desired output device must be supplied as\n"
21383 " an argument. These keywords are the same as those printed out by\n"
21384 " plstar. If the requested device is not available, or if the input\n"
21385 " string is empty or begins with ``?'', the prompted start up of plstar\n"
21386 " is used. This routine also divides the output device page into nx by\n"
21387 " ny subpages, each of which may be used independently. The subroutine\n"
21388 " pladv is used to advance from one subpage to the next.\n"
21390 " Redacted form: General: plstart(devname, nx, ny)\n"
21393 " This function is not used in any examples.\n"
21399 "plstart(devname, nx, ny)\n"
21403 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
21404 " containing the device name keyword of the required output device.\n"
21406 " devname is NULL or if the first character of the string is a ``?'',\n"
21407 " the normal (prompted) start up is used.\n"
21409 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21412 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21417 "Set a global coordinate transform function\n"
21421 " This function can be used to define a coordinate transformation which\n"
21422 " affects all elements drawn within the current plot window. The\n"
21423 " coordinate_transform callback function is similar to that provided for\n"
21424 " the plmap and plmeridians functions. The coordinate_transform_data\n"
21425 " parameter may be used to pass extra data to coordinate_transform.\n"
21427 " Redacted form: General: plstransform(coordinate_transform,\n"
21428 " coordinate_transform_data)\n"
21431 " This function is used in examples 19 and 22.\n"
21437 "plstransform(coordinate_transform, coordinate_transform_data)\n"
21441 " coordinate_transform (PLTRANSFORM_callback, input) : A callback\n"
21442 " function that defines the transformation from the input (x, y)\n"
21443 " world coordinates to new PLplot world coordinates. If\n"
21444 " coordinate_transform is not supplied (e.g., is set to NULL in the C\n"
21445 " case), then no transform is applied.\n"
21447 " coordinate_transform_data (PLPointer, input) : Optional extra data\n"
21449 " coordinate_transform.\n"
21453 "Plot a glyph at the specified points\n"
21457 " Plot a glyph at the specified points. (Supersedes plpoin and plsym\n"
21458 " because many[!] more glyphs are accessible with plstring.) The glyph\n"
21459 " is specified with a PLplot user string. Note that the user string is\n"
21460 " not actually limited to one glyph so it is possible (but not normally\n"
21461 " useful) to plot more than one glyph at the specified points with this\n"
21462 " function. As with plmtex and plptex, the user string can contain FCI\n"
21463 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21464 " else PLplot escapes for Hershey or unicode text to determine the\n"
21467 " Redacted form: plstring(x, y, string)\n"
21469 " This function is used in examples 4, 21 and 26.\n"
21475 "plstring(n, x, y, string)\n"
21479 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21481 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21484 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21487 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21488 " the glyph(s) to be plotted at each of the n points.\n"
21492 "Plot a glyph at the specified 3D points\n"
21496 " Plot a glyph at the specified 3D points. (Supersedes plpoin3 because\n"
21497 " many[!] more glyphs are accessible with plstring3.) Set up the call to\n"
21498 " this function similar to what is done for plline3. The glyph is\n"
21499 " specified with a PLplot user string. Note that the user string is not\n"
21500 " actually limited to one glyph so it is possible (but not normally\n"
21501 " useful) to plot more than one glyph at the specified points with this\n"
21502 " function. As with plmtex and plptex, the user string can contain FCI\n"
21503 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21504 " else PLplot escapes for Hershey or unicode text to determine the\n"
21507 " Redacted form: plstring3(x, y, z, string)\n"
21509 " This function is used in example 18.\n"
21515 "plstring3(n, x, y, z, string)\n"
21519 " n (PLINT, input) : Number of points in the x, y, and z vectors.\n"
21521 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21524 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21527 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
21530 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21531 " the glyph(s) to be plotted at each of the n points. points.\n"
21535 "Add a point to a strip chart\n"
21539 " Add a point to a given pen of a given strip chart. There is no need\n"
21540 " for all pens to have the same number of points or to be equally\n"
21541 " sampled in the x coordinate. Allocates memory and rescales as\n"
21544 " Redacted form: plstripa(id, pen, x, y)\n"
21546 " This function is used in example 17.\n"
21552 "plstripa(id, pen, x, y)\n"
21556 " id (PLINT, input) : Identification number of the strip chart (set\n"
21557 " up in plstripc).\n"
21559 " pen (PLINT, input) : Pen number (ranges from 0 to 3).\n"
21561 " x (PLFLT, input) : X coordinate of point to plot.\n"
21563 " y (PLFLT, input) : Y coordinate of point to plot.\n"
21567 "Create a 4-pen strip chart\n"
21571 " Create a 4-pen strip chart, to be used afterwards by plstripa\n"
21573 " Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump,\n"
21574 " ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline,\n"
21575 " styline, legline, labx, laby, labz)\n"
21578 " This function is used in example 17.\n"
21584 "plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby, labtop)\n"
21588 " id (PLINT_NC_SCALAR, output) : Returned value of the identification\n"
21589 " number of the strip chart to use on plstripa and plstripd.\n"
21591 " xspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21592 " the x-axis specification as in plbox.\n"
21594 " yspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21595 " the y-axis specification as in plbox.\n"
21597 " xmin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21598 " change as data are added.\n"
21600 " xmax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21601 " change as data are added.\n"
21603 " xjump (PLFLT, input) : When x attains xmax, the length of the plot\n"
21604 " is multiplied by the factor (1 +\n"
21607 " ymin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21608 " change as data are added.\n"
21610 " ymax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21611 " change as data are added.\n"
21613 " xlpos (PLFLT, input) : X legend box position (range from 0 to 1).\n"
21615 " ylpos (PLFLT, input) : Y legend box position (range from 0 to 1).\n"
21617 " y_ascl (PLBOOL, input) : Autoscale y between x jumps if y_ascl is\n"
21618 " true, otherwise not.\n"
21620 " acc (PLBOOL, input) : Accumulate strip plot if acc is true,\n"
21621 " otherwise slide display.\n"
21623 " colbox (PLINT, input) : Plot box color index (cmap0).\n"
21625 " collab (PLINT, input) : Legend color index (cmap0).\n"
21627 " colline (PLINT_VECTOR, input) : A vector containing the cmap0 color\n"
21628 " indices for the 4 pens.\n"
21630 " styline (PLINT_VECTOR, input) : A vector containing the line style\n"
21631 " indices for the 4 pens.\n"
21633 " legline (PLCHAR_MATRIX, input) : A vector of UTF-8 character\n"
21634 " strings containing legends for the 4 pens.\n"
21636 " labx (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21637 " the label for the x axis.\n"
21639 " laby (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21640 " the label for the y axis.\n"
21642 " labtop (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21643 " the plot title.\n"
21647 "Deletes and releases memory used by a strip chart\n"
21651 " Deletes and releases memory used by a strip chart.\n"
21653 " Redacted form: plstripd(id)\n"
21655 " This function is used in example 17.\n"
21665 " id (PLINT, input) : Identification number of strip chart to delete.\n"
21673 " This sets up the line style for all lines subsequently drawn. A line\n"
21674 " consists of segments in which the pen is alternately down and up. The\n"
21675 " lengths of these segments are passed in the vectors mark and space\n"
21676 " respectively. The number of mark-space pairs is specified by nms. In\n"
21677 " order to return the line style to the default continuous line, plstyl\n"
21678 " should be called with nms =0 .(see also pllsty)\n"
21680 " Redacted form: plstyl(mark, space)\n"
21682 " This function is used in examples 1, 9, and 14.\n"
21688 "plstyl(nms, mark, space)\n"
21692 " nms (PLINT, input) : The number of mark and space elements in a\n"
21693 " line. Thus a simple broken line can be obtained by setting nms=1\n"
21694 " . A continuous line is specified by setting nms=0 .\n"
21696 " mark (PLINT_VECTOR, input) : A vector containing the lengths of the\n"
21697 " segments during which the pen is down, measured in micrometers.\n"
21699 " space (PLINT_VECTOR, input) : A vector containing the lengths of\n"
21700 " the segments during which the pen is up, measured in micrometers.\n"
21704 "Set arrow style for vector plots\n"
21708 " Set the style for the arrow used by plvect to plot vectors.\n"
21710 " Redacted form: plsvect(arrowx, arrowy, fill)\n"
21712 " This function is used in example 22.\n"
21718 "plsvect(arrowx, arrowy, npts, fill)\n"
21722 " arrowx, arrowy (PLFLT_VECTOR, input) : A pair of vectors containing\n"
21723 " the x and y points which make up the arrow. The arrow is plotted\n"
21724 " by joining these points to form a polygon. The scaling assumes\n"
21725 " that the x and y points in the arrow lie in the range -0.5 <= x,y\n"
21726 " <= 0.5. If both arrowx and arrowy are NULL then the arrow style\n"
21727 " will be reset to its default.\n"
21729 " npts (PLINT, input) : Number of points in the vectors arrowx and\n"
21732 " fill (PLBOOL, input) : If fill is true then the arrow is closed, if\n"
21733 " fill is false then the arrow is open.\n"
21737 "Specify viewport in absolute coordinates\n"
21741 " Alternate routine to plvpor for setting up the viewport. This routine\n"
21742 " should be used only if the viewport is required to have a definite\n"
21743 " size in millimeters. The routine plgspa is useful for finding out the\n"
21744 " size of the current subpage.\n"
21746 " Redacted form: plsvpa(xmin, xmax, ymin, ymax)\n"
21748 " This function is used in example 10.\n"
21754 "plsvpa(xmin, xmax, ymin, ymax)\n"
21758 " xmin (PLFLT, input) : The distance of the left-hand edge of the\n"
21759 " viewport from the left-hand edge of the subpage in millimeters.\n"
21761 " xmax (PLFLT, input) : The distance of the right-hand edge of the\n"
21762 " viewport from the left-hand edge of the subpage in millimeters.\n"
21764 " ymin (PLFLT, input) : The distance of the bottom edge of the\n"
21765 " viewport from the bottom edge of the subpage in millimeters.\n"
21767 " ymax (PLFLT, input) : The distance of the top edge of the viewport\n"
21768 " from the bottom edge of the subpage in millimeters.\n"
21772 "Set x axis parameters\n"
21776 " Sets values of the digmax and digits flags for the x axis. See the\n"
21777 " PLplot documentation for more information.\n"
21779 " Redacted form: plsxax(digmax, digits)\n"
21781 " This function is used in example 31.\n"
21787 "plsxax(digmax, digits)\n"
21791 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21792 " digits for the x axis. If nonzero, the printed label will be\n"
21793 " switched to a floating-point representation when the number of\n"
21794 " digits exceeds digmax.\n"
21796 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21797 " its value here has no effect since it is set only by plbox or\n"
21798 " plbox3. However, the user may obtain its value after a call to\n"
21799 " either of these functions by calling plgxax.\n"
21803 "Set y axis parameters\n"
21807 " Identical to plsxax, except that arguments are flags for y axis. See\n"
21808 " the description of plsxax for more detail.\n"
21810 " Redacted form: plsyax(digmax, digits)\n"
21812 " This function is used in examples 1, 14, and 31.\n"
21818 "plsyax(digmax, digits)\n"
21822 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21823 " digits for the y axis. If nonzero, the printed label will be\n"
21824 " switched to a floating-point representation when the number of\n"
21825 " digits exceeds digmax.\n"
21827 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21828 " its value here has no effect since it is set only by plbox or\n"
21829 " plbox3. However, the user may obtain its value after a call to\n"
21830 " either of these functions by calling plgyax.\n"
21834 "Plot a glyph at the specified points\n"
21838 " Plot a glyph at the specified points. (This function is largely\n"
21839 " superseded by plstring which gives access to many[!] more glyphs.)\n"
21841 " Redacted form: plsym(x, y, code)\n"
21843 " This function is used in example 7.\n"
21849 "plsym(n, x, y, code)\n"
21853 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21855 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21858 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21861 " code (PLINT, input) : Hershey symbol code corresponding to a glyph\n"
21862 " to be plotted at each of the n points.\n"
21866 "Set z axis parameters\n"
21870 " Identical to plsxax, except that arguments are flags for z axis. See\n"
21871 " the description of plsxax for more detail.\n"
21873 " Redacted form: plszax(digmax, digits)\n"
21875 " This function is used in example 31.\n"
21881 "plszax(digmax, digits)\n"
21885 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21886 " digits for the z axis. If nonzero, the printed label will be\n"
21887 " switched to a floating-point representation when the number of\n"
21888 " digits exceeds digmax.\n"
21890 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21891 " its value here has no effect since it is set only by plbox or\n"
21892 " plbox3. However, the user may obtain its value after a call to\n"
21893 " either of these functions by calling plgzax.\n"
21897 "Switch to text screen\n"
21901 " Sets an interactive device to text mode, used in conjunction with\n"
21902 " plgra to allow graphics and text to be interspersed. On a device\n"
21903 " which supports separate text and graphics windows, this command causes\n"
21904 " control to be switched to the text window. This can be useful for\n"
21905 " printing diagnostic messages or getting user input, which would\n"
21906 " otherwise interfere with the plots. The program must switch back to\n"
21907 " the graphics window before issuing plot commands, as the text (or\n"
21908 " console) device will probably become quite confused otherwise. If\n"
21909 " already in text mode, this command is ignored. It is also ignored on\n"
21910 " devices which only support a single window or use a different method\n"
21911 " for shifting focus (see also plgra).\n"
21913 " Redacted form: pltext()\n"
21915 " This function is used in example 1.\n"
21925 "Set format for date / time labels\n"
21929 " Sets the format for date / time labels. To enable date / time format\n"
21930 " labels see the options to plbox, plbox3, and plenv.\n"
21932 " Redacted form: pltimefmt(fmt)\n"
21934 " This function is used in example 29.\n"
21944 " fmt (PLCHAR_VECTOR, input) : An ascii character string which is\n"
21945 " interpreted similarly to the format specifier of typical system\n"
21946 " strftime routines except that PLplot ignores locale and also\n"
21947 " supplies some useful extensions in the context of plotting. All\n"
21948 " text in the string is printed as-is other than conversion\n"
21949 " specifications which take the form of a '%' character followed by\n"
21950 " further conversion specification character. The conversion\n"
21951 " specifications which are similar to those provided by system\n"
21952 " strftime routines are the following: %a: The abbreviated (English)\n"
21954 " %A: The full (English) weekday name.\n"
21955 " %b: The abbreviated (English) month name.\n"
21956 " %B: The full (English) month name.\n"
21957 " %c: Equivalent to %a %b %d %T %Y (non-ISO).\n"
21958 " %C: The century number (year/100) as a 2-digit integer.\n"
21959 " %d: The day of the month as a decimal number (range 01 to 31).\n"
21960 " %D: Equivalent to %m/%d/%y (non-ISO).\n"
21961 " %e: Like %d, but a leading zero is replaced by a space.\n"
21962 " %F: Equivalent to %Y-%m-%d (the ISO 8601 date format).\n"
21963 " %h: Equivalent to %b.\n"
21964 " %H: The hour as a decimal number using a 24-hour clock (range\n"
21966 " %I: The hour as a decimal number using a 12-hour clock (range\n"
21968 " %j: The day of the year as a decimal number (range 001 to\n"
21970 " %k: The hour (24-hour clock) as a decimal number (range 0 to\n"
21971 " 23); single digits are preceded by a blank. (See also %H.)\n"
21972 " %l: The hour (12-hour clock) as a decimal number (range 1 to\n"
21973 " 12); single digits are preceded by a blank. (See also %I.)\n"
21974 " %m: The month as a decimal number (range 01 to 12).\n"
21975 " %M: The minute as a decimal number (range 00 to 59).\n"
21976 " %n: A newline character.\n"
21977 " %p: Either \"AM\" or \"PM\" according to the given time value.\n"
21978 " Noon is treated as \"PM\" and midnight as \"AM\".\n"
21979 " %r: Equivalent to %I:%M:%S %p.\n"
21980 " %R: The time in 24-hour notation (%H:%M). For a version\n"
21981 " including the seconds, see %T below.\n"
21982 " %s: The number of seconds since the Epoch, 1970-01-01 00:00:00\n"
21984 " %S: The second as a decimal number (range 00 to 60). (The\n"
21985 " range is up to 60 to allow for occasional leap seconds.)\n"
21986 " %t: A tab character.\n"
21987 " %T: The time in 24-hour notation (%H:%M:%S).\n"
21988 " %u: The day of the week as a decimal, range 1 to 7, Monday\n"
21989 " being 1. See also %w.\n"
21990 " %U: The week number of the current year as a decimal number,\n"
21991 " range 00 to 53, starting with the first Sunday as the first\n"
21992 " day of week 01. See also %V and %W.\n"
21993 " %v: Equivalent to %e-%b-%Y.\n"
21994 " %V: The ISO 8601 week number of the current year as a decimal\n"
21995 " number, range 01 to 53, where week 1 is the first week that\n"
21996 " has at least 4 days in the new year. See also %U and %W.\n"
21997 " %w: The day of the week as a decimal, range 0 to 6, Sunday\n"
21998 " being 0. See also %u.\n"
21999 " %W: The week number of the current year as a decimal number,\n"
22000 " range 00 to 53, starting with the first Monday as the first\n"
22001 " day of week 01.\n"
22002 " %x: Equivalent to %a %b %d %Y.\n"
22003 " %X: Equivalent to %T.\n"
22004 " %y: The year as a decimal number without a century (range 00\n"
22006 " %Y: The year as a decimal number including a century.\n"
22007 " %z: The UTC time-zone string = \"+0000\".\n"
22008 " %Z: The UTC time-zone abbreviation = \"UTC\".\n"
22009 " %+: The UTC date and time in default format of the Unix date\n"
22010 " command which is equivalent to %a %b %d %T %Z %Y.\n"
22011 " %%: A literal \"%\" character.\n"
22012 " The conversion specifications which are extensions to those normally\n"
22013 " provided by system strftime routines are the following: %(0-9):\n"
22014 " The fractional part of the seconds field (including leading\n"
22015 " decimal point) to the specified accuracy. Thus %S%3 would give\n"
22016 " seconds to millisecond accuracy (00.000).\n"
22017 " %.: The fractional part of the seconds field (including\n"
22018 " leading decimal point) to the maximum available accuracy. Thus\n"
22019 " %S%. would give seconds with fractional part up to 9 decimal\n"
22020 " places if available.\n"
22024 "Specify viewport using aspect ratio only\n"
22028 " Selects the largest viewport with the given aspect ratio within the\n"
22029 " subpage that leaves a standard margin (left-hand margin of eight\n"
22030 " character heights, and a margin around the other three sides of five\n"
22031 " character heights).\n"
22033 " Redacted form: plvasp(aspect)\n"
22035 " This function is used in example 13.\n"
22045 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22046 " axis of resulting viewport.\n"
22054 " Draws a plot of vector data contained in the matrices (\n"
22060 " ny]) . The scaling factor for the vectors is given by scale. A\n"
22061 " transformation routine pointed to by pltr with a pointer pltr_data for\n"
22062 " additional data required by the transformation routine to map indices\n"
22063 " within the matrices to the world coordinates. The style of the vector\n"
22064 " arrow may be set using plsvect.\n"
22066 " Redacted form: plvect(u, v, scale, pltr, pltr_data) where (see above\n"
22067 " discussion) the pltr, pltr_data callback arguments are sometimes\n"
22068 " replaced by a tr vector with 6 elements, or xg and yg array arguments\n"
22069 " with either one or two dimensions.\n"
22071 " This function is used in example 22.\n"
22077 "plvect(u, v, nx, ny, scale, pltr, pltr_data)\n"
22081 " u, v (PLFLT_MATRIX, input) : A pair of matrices containing the x\n"
22082 " and y components of the vector data to be plotted.\n"
22084 " nx, ny (PLINT, input) : Dimensions of the matrices u and v.\n"
22086 " scale (PLFLT, input) : Parameter to control the scaling factor of\n"
22087 " the vectors for plotting. If scale = 0 then the scaling factor is\n"
22088 " automatically calculated for the data. If scale < 0 then the\n"
22089 " scaling factor is automatically calculated for the data and then\n"
22090 " multiplied by -\n"
22091 " scale. If scale > 0 then the scaling factor is set to scale.\n"
22093 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22094 " defines the transformation between the zero-based indices of the\n"
22095 " matrices u and v and world coordinates.For the C case,\n"
22096 " transformation functions are provided in the PLplot library: pltr0\n"
22097 " for the identity mapping, and pltr1 and pltr2 for arbitrary\n"
22098 " mappings respectively defined by vectors and matrices. In\n"
22099 " addition, C callback routines for the transformation can be\n"
22100 " supplied by the user such as the mypltr function in\n"
22101 " examples/c/x09c.c which provides a general linear transformation\n"
22102 " between index coordinates and world coordinates.For languages\n"
22103 " other than C you should consult the PLplot documentation for the\n"
22104 " details concerning how PLTRANSFORM_callback arguments are\n"
22105 " interfaced. However, in general, a particular pattern of\n"
22106 " callback-associated arguments such as a tr vector with 6 elements;\n"
22107 " xg and yg vectors; or xg and yg matrices are respectively\n"
22108 " interfaced to a linear-transformation routine similar to the above\n"
22109 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22110 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22111 " support native language callbacks for handling index to\n"
22112 " world-coordinate transformations. Examples of these various\n"
22113 " approaches are given in examples/<language>x09*,\n"
22114 " examples/<language>x16*, examples/<language>x20*,\n"
22115 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22116 " supported languages.\n"
22118 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22119 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
22120 " that is externally supplied.\n"
22124 "Specify viewport using coordinates and aspect ratio\n"
22128 " Device-independent routine for setting up the viewport. The viewport\n"
22129 " is chosen to be the largest with the given aspect ratio that fits\n"
22130 " within the specified region (in terms of normalized subpage\n"
22131 " coordinates). This routine is functionally equivalent to plvpor when\n"
22132 " a ``natural'' aspect ratio (0.0) is chosen. Unlike plvasp, this\n"
22133 " routine reserves no extra space at the edges for labels.\n"
22135 " Redacted form: plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22137 " This function is used in example 9.\n"
22143 "plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22147 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22148 " left-hand edge of the viewport.\n"
22150 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22151 " right-hand edge of the viewport.\n"
22153 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22154 " bottom edge of the viewport.\n"
22156 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22157 " edge of the viewport.\n"
22159 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22164 "Specify viewport using normalized subpage coordinates\n"
22168 " Device-independent routine for setting up the viewport. This defines\n"
22169 " the viewport in terms of normalized subpage coordinates which run from\n"
22170 " 0.0 to 1.0 (left to right and bottom to top) along each edge of the\n"
22171 " current subpage. Use the alternate routine plsvpa in order to create\n"
22172 " a viewport of a definite size.\n"
22174 " Redacted form: plvpor(xmin, xmax, ymin, ymax)\n"
22176 " This function is used in examples 2, 6-8, 10, 11, 15, 16, 18, 21, 23,\n"
22177 " 24, 26, 27, and 31.\n"
22183 "plvpor(xmin, xmax, ymin, ymax)\n"
22187 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22188 " left-hand edge of the viewport.\n"
22190 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22191 " right-hand edge of the viewport.\n"
22193 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22194 " bottom edge of the viewport.\n"
22196 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22197 " edge of the viewport.\n"
22201 "Select standard viewport\n"
22205 " Selects the largest viewport within the subpage that leaves a standard\n"
22206 " margin (left-hand margin of eight character heights, and a margin\n"
22207 " around the other three sides of five character heights).\n"
22209 " Redacted form: plvsta()\n"
22211 " This function is used in examples 1, 12, 14, 17, 25, and 29.\n"
22221 "Configure the transformations required for projecting a 3D surface on a 2D window\n"
22225 " Configure the transformations required for projecting a 3D surface on\n"
22226 " an existing 2D window. Those transformations (see the PLplot\n"
22227 " documentation) are done to a rectangular cuboid enclosing the 3D\n"
22228 " surface which has its limits expressed in 3D world coordinates and\n"
22229 " also normalized 3D coordinates (used for interpreting the altitude and\n"
22230 " azimuth of the viewing angle). The transformations consist of the\n"
22231 " linear transform from 3D world coordinates to normalized 3D\n"
22232 " coordinates, and the 3D rotation of normalized coordinates required to\n"
22233 " align the pole of the new 3D coordinate system with the viewing\n"
22234 " direction specified by altitude and azimuth so that x and y of the\n"
22235 " surface elements in that transformed coordinate system are the\n"
22236 " projection of the 3D surface with given viewing direction on the 2D\n"
22239 " The enclosing rectangular cuboid for the surface plot is defined by\n"
22240 " xmin, xmax, ymin, ymax, zmin and zmax in 3D world coordinates. It is\n"
22241 " mapped into the same rectangular cuboid with normalized 3D coordinate\n"
22242 " sizes of basex by basey by height so that xmin maps to -\n"
22243 " basex/2, xmax maps to basex/2, ymin maps to -\n"
22244 " basey/2, ymax maps to basey/2, zmin maps to 0 and zmax maps to height.\n"
22245 " The resulting rectangular cuboid in normalized coordinates is then\n"
22246 " viewed by an observer at altitude alt and azimuth az. This routine\n"
22247 " must be called before plbox3 or any of the 3D surface plotting\n"
22248 " routines; plmesh, plmeshc, plot3d, plot3dc, plot3dcl, plsurf3d,\n"
22249 " plsurf3dl or plfill3.\n"
22251 " Redacted form: plw3d(basex, basey, height, xmin, xmax, ymin, ymax,\n"
22252 " zmin, zmax, alt, az)\n"
22254 " This function is examples 8, 11, 18, and 21.\n"
22260 "plw3d(basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az)\n"
22264 " basex (PLFLT, input) : The normalized x coordinate size of the\n"
22265 " rectangular cuboid.\n"
22267 " basey (PLFLT, input) : The normalized y coordinate size of the\n"
22268 " rectangular cuboid.\n"
22270 " height (PLFLT, input) : The normalized z coordinate size of the\n"
22271 " rectangular cuboid.\n"
22273 " xmin (PLFLT, input) : The minimum x world coordinate of the\n"
22274 " rectangular cuboid.\n"
22276 " xmax (PLFLT, input) : The maximum x world coordinate of the\n"
22277 " rectangular cuboid.\n"
22279 " ymin (PLFLT, input) : The minimum y world coordinate of the\n"
22280 " rectangular cuboid.\n"
22282 " ymax (PLFLT, input) : The maximum y world coordinate of the\n"
22283 " rectangular cuboid.\n"
22285 " zmin (PLFLT, input) : The minimum z world coordinate of the\n"
22286 " rectangular cuboid.\n"
22288 " zmax (PLFLT, input) : The maximum z world coordinate of the\n"
22289 " rectangular cuboid.\n"
22291 " alt (PLFLT, input) : The viewing altitude in degrees above the xy\n"
22292 " plane of the rectangular cuboid in normalized coordinates.\n"
22294 " az (PLFLT, input) : The viewing azimuth in degrees of the\n"
22295 " rectangular cuboid in normalized coordinates. When az=0, the\n"
22296 " observer is looking face onto the zx plane of the rectangular\n"
22297 " cuboid in normalized coordinates, and as az is increased, the\n"
22298 " observer moves clockwise around that cuboid when viewed from above\n"
22307 " Sets the pen width.\n"
22309 " Redacted form: plwidth(width)\n"
22311 " This function is used in examples 1 and 2.\n"
22321 " width (PLFLT, input) : The desired pen width. If width is negative\n"
22322 " or the same as the previous value no action is taken. width = 0.\n"
22323 " should be interpreted as as the minimum valid pen width for the\n"
22324 " device. The interpretation of positive width values is also\n"
22325 " device dependent.\n"
22333 " Specify the window, i.e., the world coordinates of the edges of the\n"
22336 " Redacted form: plwind(xmin, xmax, ymin, ymax)\n"
22338 " This function is used in examples 1, 2, 4, 6-12, 14-16, 18, 21, 23-27,\n"
22345 "plwind(xmin, xmax, ymin, ymax)\n"
22349 " xmin (PLFLT, input) : The world x coordinate of the left-hand edge\n"
22350 " of the viewport.\n"
22352 " xmax (PLFLT, input) : The world x coordinate of the right-hand edge\n"
22353 " of the viewport.\n"
22355 " ymin (PLFLT, input) : The world y coordinate of the bottom edge of\n"
22358 " ymax (PLFLT, input) : The world y coordinate of the top edge of the\n"
22363 "Enter or leave xor mode\n"
22367 " Enter (when mode is true) or leave (when mode is false) xor mode for\n"
22368 " those drivers (e.g., the xwin driver) that support it. Enables\n"
22369 " erasing plots by drawing twice the same line, symbol, etc. If driver\n"
22370 " is not capable of xor operation it returns a status of false.\n"
22372 " Redacted form: plxormod(mode, status)\n"
22374 " This function is used in examples 1 and 20.\n"
22380 "plxormod(mode, status)\n"
22384 " mode (PLBOOL, input) : mode is true means enter xor mode and mode\n"
22385 " is false means leave xor mode.\n"
22387 " status (PLBOOL_NC_SCALAR, output) : Returned value of the status.\n"
22388 " modestatus of true (false) means driver is capable (incapable) of\n"
22393 "Plot continental outline or shapefile data in world coordinates\n"
22397 " Plots continental outlines or shapefile data in world coordinates. A\n"
22398 " demonstration of how to use this function to create different\n"
22399 " projections can be found in examples/c/x19c. PLplot is provided with\n"
22400 " basic coastal outlines and USA state borders. To use the map\n"
22401 " functionality PLplot must be compiled with the shapelib library.\n"
22402 " Shapefiles have become a popular standard for geographical data and\n"
22403 " data in this format can be easily found from a number of online\n"
22404 " sources. Shapefile data is actually provided as three or more files\n"
22405 " with the same filename, but different extensions. The .shp and .shx\n"
22406 " files are required for plotting Shapefile data with PLplot.\n"
22408 " PLplot currently supports the point, multipoint, polyline and polygon\n"
22409 " objects within shapefiles. However holes in polygons are not\n"
22410 " supported. When plmap is used the type of object is derived from the\n"
22411 " shapefile, if you wish to override the type then use one of the other\n"
22412 " plmap variants. The built in maps have line data only.\n"
22414 " Redacted form: plmap(mapform, name, minx, maxx, miny, maxy)\n"
22416 " This function is used in example 19.\n"
22422 "plmap(mapform, name, minx, maxx, miny, maxy)\n"
22426 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22427 " transform the original map data coordinates to a new coordinate\n"
22428 " system. The PLplot-supplied map data is provided as latitudes and\n"
22429 " longitudes; other Shapefile data may be provided in other\n"
22430 " coordinate systems as can be found in their .prj plain text files.\n"
22431 " For example, by using this transform we can change from a\n"
22432 " longitude, latitude coordinate to a polar stereographic\n"
22433 " projection. Initially, x[0]..[n-1] are the original x coordinates\n"
22434 " (longitudes for the PLplot-supplied data) and y[0]..y[n-1] are the\n"
22435 " corresponding y coordinates (latitudes for the PLplot supplied\n"
22436 " data). After the call to mapform(), x[] and y[] should be\n"
22437 " replaced by the corresponding plot coordinates. If no transform is\n"
22438 " desired, mapform can be replaced by NULL.\n"
22440 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22441 " the type of map plotted. This is either one of the PLplot built-in\n"
22442 " maps or the file name of a set of Shapefile files without the file\n"
22443 " extensions. For the PLplot built-in maps the possible values are:\n"
22444 " \"globe\" -- continental outlines\n"
22445 " \"usa\" -- USA and state boundaries\n"
22446 " \"cglobe\" -- continental outlines and countries\n"
22447 " \"usaglobe\" -- USA, state boundaries and continental outlines\n"
22450 " minx (PLFLT, input) : The minimum x value of map elements to be\n"
22451 " drawn. The units must match the shapefile (built in maps are\n"
22452 " degrees lat/lon). Objects in the file which do not encroach on the\n"
22453 " box defined by minx, maxx, miny, maxy will not be rendered. But\n"
22454 " note this is simply an optimisation, not a clipping so for objects\n"
22455 " with some points inside the box and some points outside the box\n"
22456 " all the points will be rendered. These parameters also define\n"
22457 " latitude and longitude wrapping for shapefiles using these units.\n"
22458 " Longitude points will be wrapped by integer multiples of 360\n"
22459 " degrees to place them in the box. This allows the same data to be\n"
22460 " used on plots from -180-180 or 0-360 longitude ranges. In fact if\n"
22461 " you plot from -180-540 you will get two cycles of data drawn. The\n"
22462 " value of minx must be less than the value of maxx. Passing in a\n"
22463 " nan, max/-max floating point number or +/-infinity will case the\n"
22464 " bounding box from the shapefile to be used.\n"
22466 " maxx (PLFLT, input) : The maximum x value of map elements to be\n"
22467 " drawn - see minx.\n"
22469 " miny (PLFLT, input) : The minimum y value of map elements to be\n"
22470 " drawn - see minx.\n"
22472 " maxy (PLFLT, input) : The maximum y value of map elements to be\n"
22473 " drawn - see minx.\n"
22477 "Plot all or a subset of Shapefile data using lines in world coordinates\n"
22481 " Plot all or a subset of Shapefile data using lines in world\n"
22482 " coordinates. Our 19th standard example demonstrates how to use this\n"
22483 " function. This function plots data from a Shapefile using lines as in\n"
22484 " plmap, however it also has the option of also only drawing specified\n"
22485 " elements from the Shapefile. The vector of indices of the required\n"
22486 " elements are passed as a function argument. The Shapefile data should\n"
22487 " include a metadata file (extension.dbf) listing all items within the\n"
22488 " Shapefile. This file can be opened by most popular spreadsheet\n"
22489 " programs and can be used to decide which indices to pass to this\n"
22492 " Redacted form: plmapline(mapform, name, minx, maxx, miny, maxy,\n"
22495 " This function is used in example 19.\n"
22501 "plmapline(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22505 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22506 " transform the coordinates given in the shapefile into a plot\n"
22507 " coordinate system. By using this transform, we can change from a\n"
22508 " longitude, latitude coordinate to a polar stereographic project,\n"
22509 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22510 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22511 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22512 " plot coordinates. If no transform is desired, mapform can be\n"
22513 " replaced by NULL.\n"
22515 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22516 " the file name of a set of Shapefile files without the file\n"
22519 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22520 " be in the same units as used by the Shapefile. You could use a\n"
22521 " very large negative number to plot everything, but you can improve\n"
22522 " performance by limiting the area drawn. The units must match those\n"
22523 " of the Shapefile projection, which may be for example longitude or\n"
22524 " distance. The value of minx must be less than the value of maxx.\n"
22526 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22527 " use a very large number to plot everything, but you can improve\n"
22528 " performance by limiting the area drawn.\n"
22530 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22531 " be in the same units as used by the Shapefile. You could use a\n"
22532 " very large negative number to plot everything, but you can improve\n"
22533 " performance by limiting the area drawn. The units must match those\n"
22534 " of the Shapefile projection, which may be for example latitude or\n"
22535 " distance. The value of miny must be less than the value of maxy.\n"
22537 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22538 " use a very large number to plot everything, but you can improve\n"
22539 " performance by limiting the area drawn.\n"
22541 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22542 " zero-based indices of the Shapefile elements which will be drawn.\n"
22544 " plotentries to NULL will plot all elements of the Shapefile.\n"
22546 " nplotentries (PLINT, input) : The number of items in\n"
22547 " plotentries. Ignored if\n"
22548 " plotentries is NULL.\n"
22552 "Plot all or a subset of Shapefile data using strings or points in world coordinates\n"
22556 " As per plmapline, however the items are plotted as strings or points\n"
22557 " in the same way as plstring.\n"
22559 " Redacted form: plmapstring(mapform, name, string, minx, maxx, miny,\n"
22560 " maxy, plotentries)\n"
22562 " This function is not used in any examples.\n"
22568 "plmapstring(mapform, name, string, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22572 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22573 " transform the coordinates given in the shapefile into a plot\n"
22574 " coordinate system. By using this transform, we can change from a\n"
22575 " longitude, latitude coordinate to a polar stereographic project,\n"
22576 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22577 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22578 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22579 " plot coordinates. If no transform is desired, mapform can be\n"
22580 " replaced by NULL.\n"
22582 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22583 " the file name of a set of Shapefile files without the file\n"
22586 " string (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
22589 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22590 " be in the same units as used by the Shapefile. You could use a\n"
22591 " very large negative number to plot everything, but you can improve\n"
22592 " performance by limiting the area drawn. The units must match those\n"
22593 " of the Shapefile projection, which may be for example longitude or\n"
22594 " distance. The value of minx must be less than the value of maxx.\n"
22596 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22597 " use a very large number to plot everything, but you can improve\n"
22598 " performance by limiting the area drawn.\n"
22600 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22601 " be in the same units as used by the Shapefile. You could use a\n"
22602 " very large negative number to plot everything, but you can improve\n"
22603 " performance by limiting the area drawn. The units must match those\n"
22604 " of the Shapefile projection, which may be for example latitude or\n"
22605 " distance. The value of miny must be less than the value of maxy.\n"
22607 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22608 " use a very large number to plot everything, but you can improve\n"
22609 " performance by limiting the area drawn.\n"
22611 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22612 " zero-based indices of the Shapefile elements which will be drawn.\n"
22614 " plotentries to NULL will plot all elements of the Shapefile.\n"
22616 " nplotentries (PLINT, input) : The number of items in\n"
22617 " plotentries. Ignored if\n"
22618 " plotentries is NULL.\n"
22622 "Draw text at points defined by Shapefile data in world coordinates\n"
22626 " As per plmapline, however the items are plotted as text in the same\n"
22627 " way as plptex.\n"
22629 " Redacted form: plmaptex(mapform, name, dx, dy, just, text, minx, maxx,\n"
22630 " miny, maxy, plotentry)\n"
22632 " This function is used in example 19.\n"
22638 "plmaptex(mapform, name, dx, dy, just, text, minx, maxx, miny, maxy, plotentry)\n"
22642 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22643 " transform the coordinates given in the shapefile into a plot\n"
22644 " coordinate system. By using this transform, we can change from a\n"
22645 " longitude, latitude coordinate to a polar stereographic project,\n"
22646 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22647 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22648 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22649 " plot coordinates. If no transform is desired, mapform can be\n"
22650 " replaced by NULL.\n"
22652 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22653 " the file name of a set of Shapefile files without the file\n"
22656 " dx (PLFLT, input) : Used to define the slope of the texts which is\n"
22659 " dy (PLFLT, input) : Used to define the slope of the texts which is\n"
22662 " just (PLFLT, input) : Set the justification of the text. The value\n"
22663 " given will be the fraction of the distance along the string that\n"
22664 " sits at the given point. 0.0 gives left aligned text, 0.5 gives\n"
22665 " centralized text and 1.0 gives right aligned text.\n"
22667 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be drawn.\n"
22669 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22670 " be in the same units as used by the Shapefile. You could use a\n"
22671 " very large negative number to plot everything, but you can improve\n"
22672 " performance by limiting the area drawn. The units must match those\n"
22673 " of the Shapefile projection, which may be for example longitude or\n"
22674 " distance. The value of minx must be less than the value of maxx.\n"
22676 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22677 " use a very large number to plot everything, but you can improve\n"
22678 " performance by limiting the area drawn.\n"
22680 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22681 " be in the same units as used by the Shapefile. You could use a\n"
22682 " very large negative number to plot everything, but you can improve\n"
22683 " performance by limiting the area drawn. The units must match those\n"
22684 " of the Shapefile projection, which may be for example latitude or\n"
22685 " distance. The value of miny must be less than the value of maxy.\n"
22687 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22688 " use a very large number to plot everything, but you can improve\n"
22689 " performance by limiting the area drawn.\n"
22691 " plotentry (PLINT, input) : An integer indicating which text string\n"
22692 " of the Shapefile (zero indexed) will be drawn.\n"
22696 "Plot all or a subset of Shapefile data, filling the polygons\n"
22700 " As per plmapline, however the items are filled in the same way as\n"
22703 " Redacted form: plmapfill(mapform, name, minx, maxx, miny, maxy,\n"
22706 " This function is used in example 19.\n"
22712 "plmapfill(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22716 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22717 " transform the coordinates given in the shapefile into a plot\n"
22718 " coordinate system. By using this transform, we can change from a\n"
22719 " longitude, latitude coordinate to a polar stereographic project,\n"
22720 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22721 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22722 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22723 " plot coordinates. If no transform is desired, mapform can be\n"
22724 " replaced by NULL.\n"
22726 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22727 " the file name of a set of Shapefile files without the file\n"
22730 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22731 " be in the same units as used by the Shapefile. You could use a\n"
22732 " very large negative number to plot everything, but you can improve\n"
22733 " performance by limiting the area drawn. The units must match those\n"
22734 " of the Shapefile projection, which may be for example longitude or\n"
22735 " distance. The value of minx must be less than the value of maxx.\n"
22737 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22738 " use a very large number to plot everything, but you can improve\n"
22739 " performance by limiting the area drawn.\n"
22741 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22742 " be in the same units as used by the Shapefile. You could use a\n"
22743 " very large negative number to plot everything, but you can improve\n"
22744 " performance by limiting the area drawn. The units must match those\n"
22745 " of the Shapefile projection, which may be for example latitude or\n"
22746 " distance. The value of miny must be less than the value of maxy.\n"
22748 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22749 " use a very large number to plot everything, but you can improve\n"
22750 " performance by limiting the area drawn.\n"
22752 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22753 " zero-based indices of the Shapefile elements which will be drawn.\n"
22755 " plotentries to NULL will plot all elements of the Shapefile.\n"
22757 " nplotentries (PLINT, input) : The number of items in\n"
22758 " plotentries. Ignored if\n"
22759 " plotentries is NULL.\n"
22763 "Plot latitude and longitude lines\n"
22767 " Displays latitude and longitude on the current plot. The lines are\n"
22768 " plotted in the current color and line style.\n"
22770 " Redacted form: plmeridians(mapform, dlong, dlat, minlong, maxlong,\n"
22771 " minlat, maxlat)\n"
22773 " This function is used in example 19.\n"
22779 "plmeridians(mapform, dlong, dlat, minlong, maxlong, minlat, maxlat)\n"
22783 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22784 " transform the coordinate longitudes and latitudes to a plot\n"
22785 " coordinate system. By using this transform, we can change from a\n"
22786 " longitude, latitude coordinate to a polar stereographic project,\n"
22787 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22788 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22789 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22790 " plot coordinates. If no transform is desired, mapform can be\n"
22791 " replaced by NULL.\n"
22793 " dlong (PLFLT, input) : The interval in degrees at which the\n"
22794 " longitude lines are to be plotted.\n"
22796 " dlat (PLFLT, input) : The interval in degrees at which the latitude\n"
22797 " lines are to be plotted.\n"
22799 " minlong (PLFLT, input) : The value of the longitude on the left\n"
22800 " side of the plot. The value of minlong must be less than the value\n"
22801 " of maxlong, and the quantity maxlong-minlong must be less than or\n"
22804 " maxlong (PLFLT, input) : The value of the longitude on the right\n"
22805 " side of the plot.\n"
22807 " minlat (PLFLT, input) : The minimum latitude to be plotted on the\n"
22808 " background. One can always use -90.0 as the boundary outside the\n"
22809 " plot window will be automatically eliminated. However, the\n"
22810 " program will be faster if one can reduce the size of the\n"
22811 " background plotted.\n"
22813 " maxlat (PLFLT, input) : The maximum latitudes to be plotted on the\n"
22814 " background. One can always use 90.0 as the boundary outside the\n"
22815 " plot window will be automatically eliminated.\n"
22819 "Plot a 2D matrix using cmap1 with automatic color adjustment\n"
22823 " Plot a 2D matrix using the cmap1 palette. The color scale is\n"
22824 " automatically adjusted to use the maximum and minimum values in idata\n"
22825 " as valuemin and valuemax in a call to plimagefr.\n"
22827 " Redacted form: General: plimage(idata, xmin, xmax, ymin, ymax, zmin,\n"
22828 " zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22831 " This function is used in example 20.\n"
22837 "plimage(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22841 " idata (PLFLT_MATRIX, input) : A matrix containing function values\n"
22842 " to plot. Should have dimensions of\n"
22846 " nx, ny (PLINT, input) : Dimensions of idata\n"
22848 " xmin, xmax, ymin, ymax (PLFLT, input) : The x and y index ranges\n"
22849 " are linearly transformed to these world coordinate ranges such\n"
22850 " that idata[0][0] corresponds to (xmin, ymin) and idata[nx - 1][ny\n"
22851 " - 1] corresponds to (xmax, ymax).\n"
22853 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22854 " (inclusive) will be plotted.\n"
22856 " Dxmin, Dxmax, Dymin, Dymax (PLFLT, input) : Plot only the window of\n"
22857 " points whose plot coordinates fall inside the window of (Dxmin,\n"
22858 " Dymin) to (Dxmax, Dymax).\n"
22862 "Plot a 2D matrix using cmap1\n"
22866 " Plot a 2D matrix using cmap1.\n"
22868 " Redacted form: General: plimagefr(idata, xmin, xmax, ymin, ymax, zmin,\n"
22869 " zmax, valuemin, valuemax, pltr, pltr_data)\n"
22872 " This function is used in example 20.\n"
22878 "plimagefr(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data)\n"
22882 " idata (PLFLT_MATRIX, input) : A matrix of values (intensities) to\n"
22883 " plot. Should have dimensions of\n"
22887 " nx, ny (PLINT, input) : Dimensions of idata\n"
22889 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
22890 " pltr below for how these arguments are used (only for the special case\n"
22891 " when the callback function\n"
22892 " pltr is not supplied).\n"
22894 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22895 " (inclusive) will be plotted.\n"
22897 " valuemin, valuemax (PLFLT, input) : The minimum and maximum data\n"
22898 " values to use for value to color mappings. A datum equal to or\n"
22899 " less than valuemin will be plotted with color 0.0, while a datum\n"
22900 " equal to or greater than valuemax will be plotted with color 1.0.\n"
22901 " Data between valuemin and valuemax map linearly to colors in the\n"
22902 " range (0.0-1.0).\n"
22904 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22905 " defines the transformation between the zero-based indices of the\n"
22906 " matrix idata and world coordinates. If\n"
22907 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
22908 " indices of idata are mapped to the range\n"
22910 " xmax and the y indices of idata are mapped to the range\n"
22912 " ymax.For the C case, transformation functions are provided in the\n"
22913 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
22914 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
22915 " matrices. In addition, C callback routines for the transformation\n"
22916 " can be supplied by the user such as the mypltr function in\n"
22917 " examples/c/x09c.c which provides a general linear transformation\n"
22918 " between index coordinates and world coordinates.For languages\n"
22919 " other than C you should consult the PLplot documentation for the\n"
22920 " details concerning how PLTRANSFORM_callback arguments are\n"
22921 " interfaced. However, in general, a particular pattern of\n"
22922 " callback-associated arguments such as a tr vector with 6 elements;\n"
22923 " xg and yg vectors; or xg and yg matrices are respectively\n"
22924 " interfaced to a linear-transformation routine similar to the above\n"
22925 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22926 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22927 " support native language callbacks for handling index to\n"
22928 " world-coordinate transformations. Examples of these various\n"
22929 " approaches are given in examples/<language>x09*,\n"
22930 " examples/<language>x16*, examples/<language>x20*,\n"
22931 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22932 " supported languages.\n"
22934 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22935 " information to pltr0, pltr1, pltr2, or whatever routine is\n"
22936 " externally supplied.\n"
22945 "Wait for graphics input event and translate to world coordinates.\n"
22949 " Wait for graphics input event and translate to world coordinates.\n"
22950 " Returns 0 if no translation to world coordinates is possible.\n"
22952 " This function returns 1 on success and 0 if no translation to world\n"
22953 " coordinates is possible.\n"
22955 " Redacted form: plGetCursor(gin)\n"
22957 " This function is used in examples 1 and 20.\n"
22963 "PLINT plGetCursor(gin)\n"
22967 " gin (PLGraphicsIn *, output) : Pointer to PLGraphicsIn structure\n"
22968 " which will contain the output. The structure is not allocated by\n"
22969 " the routine and must exist before the function is called.\n"
22972 { NULL, NULL, 0, NULL }
23046{0, 0, 0, 0.0, 0, 0}};
23100#define SWIGRUNTIME_DEBUG
23103#ifndef SWIG_INIT_CLIENT_DATA_TYPE
23104#define SWIG_INIT_CLIENT_DATA_TYPE void *
23126 if (!module_head) {
23139 }
while (iter!= module_head);
23150 if (init == 0)
return;
23153#ifdef SWIGRUNTIME_DEBUG
23154 printf(
"SWIG_InitializeModule: size %lu\n", (
unsigned long)
swig_module.
size);
23161#ifdef SWIGRUNTIME_DEBUG
23171#ifdef SWIGRUNTIME_DEBUG
23172 printf(
"SWIG_InitializeModule: found type %s\n", type->name);
23176#ifdef SWIGRUNTIME_DEBUG
23177 printf(
"SWIG_InitializeModule: found and overwrite type %s \n", type->name);
23186 while (cast->
type) {
23189#ifdef SWIGRUNTIME_DEBUG
23190 printf(
"SWIG_InitializeModule: look cast %s\n", cast->
type->
name);
23194#ifdef SWIGRUNTIME_DEBUG
23195 if (ret) printf(
"SWIG_InitializeModule: found cast %s\n", ret->
name);
23200#ifdef SWIGRUNTIME_DEBUG
23201 printf(
"SWIG_InitializeModule: skip old type %s\n", ret->
name);
23208#ifdef SWIGRUNTIME_DEBUG
23209 if (ocast) printf(
"SWIG_InitializeModule: skip old cast %s\n", ret->
name);
23211 if (!ocast) ret = 0;
23216#ifdef SWIGRUNTIME_DEBUG
23217 printf(
"SWIG_InitializeModule: adding cast %s\n", cast->
type->
name);
23220 type->cast->prev = cast;
23221 cast->
next = type->cast;
23232#ifdef SWIGRUNTIME_DEBUG
23233 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23238 while (cast->
type) {
23239 printf(
"SWIG_InitializeModule: cast type %s\n", cast->
type->
name);
23243 printf(
"---- Total casts: %d\n",j);
23245 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23258 static int init_run = 0;
23260 if (init_run)
return;
23271 equiv = equiv->
next;
23300 for (i = 0; constants[i].
type; ++i) {
23301 switch(constants[i].type) {
23306 obj =
SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
23313 PyDict_SetItemString(d, constants[i].
name, obj);
23326 for (i = 0; methods[i].ml_name; ++i) {
23327 const char *c = methods[i].ml_doc;
23329 c = strstr(c,
"swig_ptr: ");
23333 const char *
name = c + 10;
23334 for (j = 0; const_table[j].
type; ++j) {
23335 if (strncmp(const_table[j].
name,
name,
23336 strlen(const_table[j].
name)) == 0) {
23337 ci = &(const_table[j]);
23344 size_t shift = (ci->
ptype) - types;
23346 size_t ldoc = (c - methods[i].ml_doc);
23347 size_t lptr = strlen(ty->
name)+2*
sizeof(
void*)+2;
23348 char *ndoc = (
char*)malloc(ldoc + lptr + 10);
23351 memcpy(buff, methods[i].ml_doc, ldoc);
23353 memcpy(buff,
"swig_ptr: ", 10);
23356 methods[i].ml_doc = ndoc;
23380#if PY_VERSION_HEX >= 0x03000000
23386 PyObject *m, *d, *md, *globals;
23388#if PY_VERSION_HEX >= 0x03000000
23389 static struct PyModuleDef SWIG_module = {
23390 PyModuleDef_HEAD_INIT,
23402#if defined(SWIGPYTHON_BUILTIN)
23404 0, 0, 0, 0, 0, 0, 0
23406 static PyGetSetDef this_getset_def = {
23407 (
char *)
"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
23409 static SwigPyGetSet thisown_getset_closure = {
23413 static PyGetSetDef thisown_getset_def = {
23414 (
char *)
"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
23416 PyTypeObject *builtin_pytype;
23417 int builtin_base_count;
23420 PyGetSetDescrObject *static_getset;
23421 PyTypeObject *metatype;
23422 PyTypeObject *swigpyobject;
23424 PyObject *public_interface, *public_symbol;
23425 PyObject *this_descr;
23426 PyObject *thisown_descr;
23427 PyObject *self = 0;
23430 (void)builtin_pytype;
23431 (void)builtin_base_count;
23432 (void)builtin_basetype;
23434 (void)static_getset;
23438 metatype = SwigPyObjectType();
23448#ifndef SWIGPYTHON_BUILTIN
23455#if PY_VERSION_HEX >= 0x03000000
23456 m = PyModule_Create(&SWIG_module);
23461 md = d = PyModule_GetDict(m);
23466#ifdef SWIGPYTHON_BUILTIN
23470 assert(SwigPyObject_stype);
23473 SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
23474 SwigPyObject_clientdata.
pytype = swigpyobject;
23475 }
else if (swigpyobject->tp_basicsize != cd->
pytype->tp_basicsize) {
23476 PyErr_SetString(PyExc_RuntimeError,
"Import error: attempted to load two incompatible swig-generated modules.");
23477# if PY_VERSION_HEX >= 0x03000000
23490 (void)thisown_descr;
23492 public_interface = PyList_New(0);
23494 (void)public_symbol;
23496 PyDict_SetItemString(md,
"__all__", public_interface);
23499 SwigPyBuiltin_AddPublicSymbol(public_interface,
SwigMethods[i].ml_name);
23694#if PY_VERSION_HEX >= 0x03000000
void plSetUsage(PLCHAR_VECTOR program_string, PLCHAR_VECTOR usage_string)
void pltr2(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void pltr1(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void pltr0(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer PL_UNUSED(pltr_data))
void plsxwin(PLINT window_id)
static PLFLT value(double n1, double n2, double hue)
void plMinMax2dGrid(PLFLT_MATRIX f, PLINT nx, PLINT ny, PLFLT *fnmax, PLFLT *fnmin)
PLINT plGetCursor(PLGraphicsIn *plg)
#define pl_setcontlabelformat
#define pl_setcontlabelparam
SWIGINTERN PyObject * _wrap_plstransform(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata)
SWIGINTERN PyObject * _wrap_plgcol0a(PyObject *self, PyObject *args)
SWIGRUNTIME swig_module_info * SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata))
SWIGINTERN PyObject * _wrap_plsxwin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgchr(PyObject *self, PyObject *args)
SWIGINTERNINLINE PyObject * SWIG_From_int(int value)
SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plcolorbar(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstripc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_type_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plshade(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plhlsrgb(PyObject *self, PyObject *args)
static swig_cast_info * swig_cast_initial[]
SWIGINTERN int swig_varlink_setattr(PyObject *o, char *n, PyObject *p)
SWIGINTERN PyObject * _wrap_plgra(PyObject *self, PyObject *args)
static int interpreter_counter
SWIGINTERN PyObject * _wrap_plvpas(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiori(PyObject *self, PyObject *args)
#define SWIG_MangledTypeQuery(name)
SWIGINTERN PyObject * _wrap_plSetUsage(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plssub(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmaptex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiplt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscolbg(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dY_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plResetOpts(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plshades(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsdimap(PyObject *self, PyObject *args)
static PyObject * Swig_This_global
SWIGRUNTIME int SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
SWIGINTERN int SWIG_AsVal_double(PyObject *obj, double *val)
static swig_cast_info _swigc__p_PLcGrid2[]
SWIGINTERN PyObject * _wrap_plerrx(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plprec(PyObject *self, PyObject *args)
SWIGINTERN Py_ssize_t SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
static swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void
#define SWIG_TypeQuery(name)
PLFLT do_f2eval_callback(PLINT x, PLINT y, PLPointer data)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_keysym_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_string_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0n(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfill3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_subwindow_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsurf3d(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfont(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvsta(PyObject *self, PyObject *args)
#define SWIG_CheckState(r)
static swig_cast_info _swigc__p_f_double_double__int[]
void cleanup_mapform(void)
void cleanup_PLPointer(void)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pX_set(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_int[]
SWIGINTERN PyObject * _wrap_plschr(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_keysym_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstart(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgvpw(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_TypeEquiv(const char *nb, const char *tb)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dY_get(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_AddErrMesg(const char *mesg, int infront)
SWIGRUNTIME PyObject * SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
SWIGINTERN void SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[])
pltr_func marshal_pltr(PyObject *input)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_button_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_string_get(PyObject *self, PyObject *args)
#define myArray_ContiguousFromObject
SWIGRUNTIME PyObject * SwigPyObject_next(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgyax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plend(PyObject *self, PyObject *args)
#define SWIG_POINTER_IMPLICIT_CONV
static swig_cast_info _swigc__p_double[]
#define SWIGTYPE_p_PLGraphicsIn
SWIGINTERN PyObject * _wrap_plscmap1la(PyObject *self, PyObject *args)
void do_mapform_callback(PLINT n, PLFLT *x, PLFLT *y)
SWIGRUNTIME PyObject * SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plbin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcol1(PyObject *self, PyObject *args)
struct swig_cast_info swig_cast_info
SWIGINTERN PyObject * _wrap_plpoin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltext(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcalc_world(PyObject *self, PyObject *args)
void(* label_func)(PLINT, PLFLT, char *, PLINT, PLPointer)
SWIGRUNTIME int SWIG_TypeNameComp(const char *f1, const char *l1, const char *f2, const char *l2)
SWIGRUNTIME PyObject * SwigPyObject_hex(SwigPyObject *v)
#define SWIG_Python_ConvertPtr(obj, pptr, type, flags)
SWIGRUNTIME void SwigPyObject_dealloc(PyObject *v)
SWIGRUNTIME PyTypeObject * SwigPyPacked_TypeOnce(void)
#define SWIG_PYTHON_THREAD_END_BLOCK
SWIGINTERN PyObject * _wrap_plClearOpts(PyObject *self, PyObject *args)
SWIGINTERN size_t SWIG_strnlen(const char *s, size_t maxlen)
SWIGINTERN PyObject * _wrap_plgradient(PyObject *self, PyObject *args)
#define SWIG_RuntimeError
SWIGRUNTIME PyObject * SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
SWIGINTERN PyObject * _wrap_pladv(PyObject *self, PyObject *args)
void(* mapform_func)(PLINT, PLFLT *, PLFLT *)
SWIGRUNTIME PyObject * SwigPyObject_append(PyObject *v, PyObject *next)
SWIGINTERN PyObject * _wrap_plsdev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgxax(PyObject *self, PyObject *args)
#define SWIGPY_CAPSULE_ATTR_NAME
SWIGINTERN PyObject * _wrap_plsfont(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SWIG_Python_newvarlink(void)
SWIGINTERN PyObject * _wrap_plsdidev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsmema(PyObject *self, PyObject *args)
struct swig_varlinkobject swig_varlinkobject
SWIGINTERN PyObject * _wrap_pl_setcontlabelformat(PyObject *self, PyObject *args)
#define SWIG_NewClientData(obj)
SWIGINTERN PyObject * _wrap_plot3d(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plptex3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dX_set(PyObject *self, PyObject *args)
void(* pltr_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
SWIGINTERN PyObject * _wrap_plspal1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plwidth(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgpage(PyObject *self, PyObject *args)
mapform_func marshal_mapform(PyObject *input)
static swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void[]
SWIGINTERN PyObject * _wrap_plline(PyObject *self, PyObject *args)
SWIGINTERNINLINE int SWIG_CanCastAsInteger(double *d, double min, double max)
SWIGINTERN int SWIG_AsVal_unsigned_SS_long(PyObject *obj, unsigned long *val)
SWIGINTERN PyObject * _wrap_plscmap1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvasp(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0a(PyObject *self, PyObject *args)
#define SWIG_as_voidptrptr(a)
SWIGINTERN PyObject * _wrap_plsmaj(PyObject *self, PyObject *args)
#define SWIG_RUNTIME_VERSION
SWIGINTERN PyObject * _wrap_plscolor(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plrgbhls(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE const char * SwigPyObject_GetDesc(PyObject *self)
SWIGINTERN PyObject * _wrap_plssym(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_own(PyObject *v, PyObject *args)
SWIGINTERN PyObject * _wrap_plptex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstar(PyObject *self, PyObject *args)
#define SWIG_POINTER_NOSHADOW
SWIGINTERN PyObject * _wrap_plwind(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeClientData(swig_type_info *ti, void *clientdata)
SWIGINTERN PyObject * _wrap_plstyl(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name)
SWIGINTERN void SWIG_Python_addvarlink(PyObject *p, const char *name, PyObject *(*get_attr)(void), int(*set_attr)(PyObject *p))
SWIGINTERN PyObject * _wrap_plend1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_acquire(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgcompression(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsmin(PyObject *self, PyObject *args)
static PyMethodDef swigobject_methods[]
SWIGRUNTIME char * SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
SWIGINTERN PyObject * _wrap_plgcmap1_range(PyObject *self, PyObject *args)
void cleanup_PLcGrid1(void)
SWIGRUNTIME PyObject * SWIG_Python_TypeCache(void)
SWIGINTERN PyObject * _wrap_plgcol0(PyObject *self, PyObject *args)
#define SWIG_InternalNewPointerObj(ptr, type, flags)
SWIGINTERN PyObject * _wrap_plscmap1_range(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscol0a(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_long(SwigPyObject *v)
#define SWIG_exception_fail(code, msg)
SWIGINTERN PyObject * _wrap_plOptUsage(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plarc(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void(void)
SWIGINTERN PyObject * _wrap_plsfam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr2(PyObject *self, PyObject *args)
void do_label_callback(PLINT axis, PLFLT value, char *string, PLINT len, PLPointer data)
static swig_cast_info _swigc__p_f_int_p_double_p_double__void[]
SWIGINTERN PyObject * _wrap_plscmap1l(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_state_set(PyObject *self, PyObject *args)
#define SWIG_AttributeError
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pY_get(PyObject *self, PyObject *args)
SWIGRUNTIME const char * SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_state_get(PyObject *self, PyObject *args)
static swig_module_info swig_module
SWIGINTERN PyObject * _wrap_plsvpa(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgvpd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr1(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_double
SWIGINTERN PyObject * _wrap_plgdev(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_TypeErrorOccurred(PyObject *obj)
SWIGRUNTIME void SWIG_Python_DestroyModule(PyObject *obj)
#define SWIG_SetModule(clientdata, pointer)
SWIGINTERN PyObject * _wrap_plstripd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plw3d(PyObject *self, PyObject *args)
SWIGRUNTIME SwigPyClientData * SwigPyClientData_New(PyObject *obj)
SWIGINTERN PyObject * swig_varlink_str(PyObject *o)
SWIGINTERN PyTypeObject * swig_varlink_type(void)
SWIGINTERN PyObject * _wrap_pllab(PyObject *self, PyObject *args)
#define SWIG_INIT_CLIENT_DATA_TYPE
SWIGINTERN PyObject * _wrap_plcpstrm(PyObject *self, PyObject *args)
#define SWIGUNUSEDPARM(p)
SWIGINTERN PyObject * _wrap_plvpor(PyObject *self, PyObject *args)
PLPointer marshal_PLPointer(PyObject *input, int isimg)
#define SWIG_POINTER_RELEASE
SWIGINTERN PyObject * _wrap_plstring3(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr)
#define SWIG_as_voidptr(a)
SWIGINTERN swig_type_info * SWIG_pchar_descriptor(void)
static swig_const_info swig_const_table[]
SWIGINTERN PyObject * SwigPyObject_disown(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plscol0(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE int SwigPyPacked_Check(PyObject *op)
static swig_type_info _swigt__p_p_char
#define SWIG_Python_CallFunctor(functor, obj)
SWIGINTERN PyObject * _wrap_plmapline(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata)
static swig_type_info _swigt__p_p_double
SWIGINTERN PyObject * _wrap_plgfnam(PyObject *self, PyObject *args)
SWIGRUNTIME int SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
#define SWIG_POINTER_CLEAR
#define SWIG_ConvertPtr(obj, pptr, type, flags)
SWIGRUNTIME int SWIG_TypeCmp(const char *nb, const char *tb)
SWIGRUNTIME const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz)
struct swig_const_info swig_const_info
SWIGINTERN PyObject * _wrap_plpsty(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbox3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plimage(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_Python_CheckNoKeywords(PyObject *kwargs, const char *name)
SWIGINTERN PyObject * _wrap_plmesh(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plszax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plinit(PyObject *self, PyObject *args)
static PyObject * Swig_Globals_global
SWIGINTERN PyObject * _wrap_plpoly3(PyObject *self, PyObject *args)
void *(* swig_converter_func)(void *, int *)
SWIGINTERN PyObject * _wrap_plsvect(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmapfill(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyPacked_repr(SwigPyPacked *v)
SWIGINTERN PyObject * _wrap_plsetopt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0(PyObject *self, PyObject *args)
#define SWIG_newvarlink()
SWIGRUNTIME void SWIG_Python_RaiseOrModifyTypeError(const char *message)
SWIGRUNTIME swig_type_info * SWIG_Python_TypeQuery(const char *type)
PLFLT(* f2eval_func)(PLINT, PLINT, PLPointer)
SWIGINTERN const char * SWIG_PyUnicode_AsUTF8AndSize(PyObject *str, Py_ssize_t *psize, PyObject **pbytes)
SWIGINTERN PyObject * _wrap_plparseopts(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wX_get(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_char[]
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wY_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pljoin(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfill(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void
PLINT(* defined_func)(PLFLT, PLFLT)
SWIGINTERN PyObject * _wrap_plmtex3(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap1a(PyObject *self, PyObject *args)
void cleanup_PLcGrid2(void)
static PyObject * Swig_TypeCache_global
SWIGINTERN PyObject * _wrap_plglevel(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_p_double[]
SWIGRUNTIMEINLINE PyObject * SWIG_Python_ExceptionType(swig_type_info *desc)
SWIGINTERN PyObject * _wrap_plgriddata(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_AsVal_unsigned_SS_int(PyObject *obj, unsigned int *val)
SWIGRUNTIMEINLINE int SwigPyObject_Check(PyObject *op)
SWIGINTERN PyObject * _wrap_plpath(PyObject *self, PyObject *args)
SWIGINTERN void SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj)
SWIGINTERN int SWIG_AsVal_char(PyObject *obj, char *val)
SWIGINTERN PyObject * _wrap_plot3dcl(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_MangledTypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name)
struct swig_globalvar swig_globalvar
PyArrayObject * myIntArray_ContiguousFromObject(PyObject *in, int type, int mindims, int maxdims)
#define SWIGPY_CAPSULE_NAME
SWIGRUNTIME void * SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags)
SWIGRUNTIME void SWIG_Python_AddErrorMsg(const char *mesg)
SWIGINTERNINLINE PyObject * SWIG_FromCharPtrAndSize(const char *carray, size_t size)
SWIGRUNTIME const char * SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name)
#define SWIG_NewPointerObj(ptr, type, flags)
SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info *swig_module)
SWIGINTERN PyObject * _wrap_plgspa(PyObject *self, PyObject *args)
ct_func marshal_ct(PyObject *input)
void(* ct_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
SWIGINTERN void SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj)
SWIGINTERN PyObject * _wrap_plsesc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plline3(PyObject *self, PyObject *args)
#define SWIG_POINTER_NO_NULL
#define SWIG_Python_str_FromFormat
#define SWIG_InstallConstants(d, constants)
struct swig_type_info *(* swig_dycast_func)(void **)
SWIGINTERN PyObject * _wrap_pllegend(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsxax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfci(PyObject *self, PyObject *args)
static PyMethodDef SwigMethods[]
SWIGINTERN PyObject * SWIG_Python_AppendOutput(PyObject *result, PyObject *obj, int is_void)
#define SWIG_NullReferenceError
SWIGRUNTIME PyTypeObject * SwigPyPacked_type(void)
SWIGRUNTIMEINLINE const char * SWIG_TypeName(const swig_type_info *ty)
SWIGINTERN PyObject * _wrap_pleop(PyObject *self, PyObject *args)
SWIGINTERNINLINE PyObject * SWIG_From_unsigned_SS_int(unsigned int value)
void do_ct_callback(PLFLT x, PLFLT y, PLFLT *xt, PLFLT *yt, PLPointer data)
#define SWIG_POINTER_DISOWN
SWIGINTERN PyObject * _wrap_PLGraphicsIn_button_set(PyObject *self, PyObject *args)
#define SWIG_STATIC_POINTER(var)
struct swig_type_info swig_type_info
PyObject * python_mapform
SWIGINTERN PyObject * _wrap_plgdidev(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgstrm(PyObject *self, PyObject *args)
SWIGINTERN PyObject * swig_varlink_repr(PyObject *SWIGUNUSEDPARM(v))
SWIGRUNTIME char * SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz)
static swig_type_info _swigt__p_PLGraphicsIn
SWIGINTERN PyObject * _wrap_plflush(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgzax(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_f_double_double__int
SWIGINTERN PyObject * _wrap_plcont(PyObject *self, PyObject *args)
SWIGRUNTIME char * SWIG_PackData(char *c, void *ptr, size_t sz)
SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty)
SWIGINTERN void SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg)
SWIGINTERN PyObject * _wrap_plsori(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstripa(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plrandd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsym(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_format(const char *fmt, SwigPyObject *v)
SWIGINTERN PyObject * _wrap_plbop(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags)
SWIGINTERN PyObject * _wrap_plgver(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsfnam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmapstring(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plreplot(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvect(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgdiplt(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pllsty(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_ArgFail(int argnum)
#define SWIG_DelNewMask(r)
SWIGRUNTIME swig_type_info * SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
SWIGINTERN PyObject * _wrap_plpoin3(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own)
SWIGINTERN PyObject * _wrap_plimagefr(PyObject *self, PyObject *args)
#define SWIG_NewPackedObj(ptr, sz, type)
static swig_cast_info _swigc__p_PLcGrid[]
SWIGINTERN PyObject * _wrap_plot3dc(PyObject *self, PyObject *args)
PLcGrid * marshal_PLcGrid1(PyObject *input, int isimg)
#define SWIG_GetModule(clientdata)
SWIGINTERN PyObject * _wrap_plsstrm(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_unsigned_int[]
static swig_type_info _swigt__p_int
SWIGINTERN PyObject * PLGraphicsIn_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args)
SWIGINTERN PyObject * _wrap_plGetCursor(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspage(PyObject *self, PyObject *args)
SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct(const swig_type_info *from, swig_type_info *ty)
SWIGRUNTIME void SWIG_PropagateClientData(void)
SWIGINTERN PyObject * _wrap_plscolbga(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void[]
SWIGRUNTIME PyObject * SwigPyPacked_str(SwigPyPacked *v)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pX_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltimefmt(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
SWIGRUNTIME const char * SWIG_TypePrettyName(const swig_type_info *type)
SWIGINTERN PyObject * _wrap_plsmem(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmkstrm(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plcol0(PyObject *self, PyObject *args)
SWIGINTERN void SWIG_Python_FixMethods(PyMethodDef *methods, const swig_const_info *const_table, swig_type_info **types, swig_type_info **types_initial)
SWIGRUNTIMEINLINE PyObject * SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type)
SWIGRUNTIME swig_cast_info * SWIG_TypeCheck(const char *c, swig_type_info *ty)
#define SWIG_ERROR_RELEASE_NOT_OWNED
SWIGRUNTIME PyObject * SWIG_This(void)
SWIGINTERN PyObject * _wrap_plenv(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsurf3dl(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_Python_TypeError(const char *type, PyObject *obj)
SWIGINTERN int SWIG_AsVal_int(PyObject *obj, int *val)
SWIGINTERN PyObject * _wrap_plenv0(PyObject *self, PyObject *args)
static swig_type_info _swigt__p_PLcGrid
#define SWIG_BUILTIN_TP_INIT
static swig_type_info _swigt__p_unsigned_int
#define SWIG_CAST_NEW_MEMORY
SWIGINTERN void swig_varlink_dealloc(PyObject *o)
SWIGRUNTIME PyObject * SwigPyObject_repr(SwigPyObject *v)
static swig_type_info _swigt__p_f_int_p_double_p_double__void
#define SWIGTYPE_p_unsigned_int
SWIGINTERN PyObject * _wrap_plfont(PyObject *self, PyObject *args)
SWIGINTERN int SWIG_AsVal_long(PyObject *obj, long *val)
SWIGINTERN int SWIG_AsCharArray(PyObject *obj, char *val, size_t size)
SWIGINTERN PyObject * _wrap_plslabelfunc(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pY_set(PyObject *self, PyObject *args)
struct swig_module_info swig_module_info
SWIGINTERN PyObject * _wrap_plgcolbg(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SWIG_Python_ErrorType(int code)
SWIGRUNTIME void SwigPyClientData_Del(SwigPyClientData *data)
SWIGRUNTIME SwigPyObject * SWIG_Python_GetSwigThis(PyObject *pyobj)
static swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void
void do_pltr_callback(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer data)
SWIGINTERN PyObject * _wrap_plscompression(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmeridians(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_dX_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsfci(PyObject *self, PyObject *args)
static swig_type_info * swig_type_initial[]
SWIGINTERN PyObject * _wrap_plerry(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plxormod(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plclear(PyObject *self, PyObject *args)
SWIGRUNTIME void SwigPyPacked_dealloc(PyObject *v)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_subwindow_get(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgcolbga(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SWIG_Python_str_FromChar(const char *c)
#define PySequence_Fast_GET_ITEM
SWIGINTERN PyObject * _wrap_plmap(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
SWIGINTERN PyObject * _wrap_plhist(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_PLGraphicsIn[]
SWIGINTERN PyObject * _wrap_pltr0(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit(swig_type_info *ty)
SWIGINTERN PyObject * _wrap_plsyax(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plpat(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmeshc(PyObject *self, PyObject *args)
PLcGrid2 * marshal_PLcGrid2(PyObject *input, int isimg)
SWIGINTERN PyObject * _wrap_plfamadv(PyObject *self, PyObject *args)
SWIGINTERN PyObject * swig_varlink_getattr(PyObject *o, char *n)
static swig_cast_info _swigc__p_p_char[]
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wY_set(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plMinMax2dGrid(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plseed(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plmtex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plfontld(PyObject *self, PyObject *args)
#define SWIG_DivisionByZero
SWIGINTERN PyObject * _wrap_delete_PLGraphicsIn(PyObject *self, PyObject *args)
#define SWIGTYPE_p_double
static swig_type_info _swigt__p_char
SWIGINTERN PyObject * _wrap_new_PLGraphicsIn(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wX_set(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_type(void)
#define SWIG_OverflowError
SWIGINTERN PyObject * _wrap_plconfigtime(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_TypeOnce(void)
SWIGINTERN PyObject * _wrap_plstring(PyObject *self, PyObject *args)
void(* fill_func)(PLINT, const PLFLT *, const PLFLT *)
SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject *obj, char **cptr, size_t *psize, int *alloc)
static PyObject * Swig_Capsule_global
static swig_type_info _swigt__p_PLcGrid2
SWIGINTERN PyObject * _wrap_plctime(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgfam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspause(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plspal0(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_oct(SwigPyObject *v)
static swig_type_info * swig_types[15]
SWIGRUNTIME PyObject * SwigPyObject_repr2(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgdiori(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pllightsource(PyObject *self, PyObject *args)
static swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void[]
SWIGINTERN PyObject * PLGraphicsIn_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args)
SWIGINTERN PyObject * SWIG_Python_InitShadowInstance(PyObject *args)
SWIGINTERN PyObject * _wrap_plsdiplz(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbtime(PyObject *self, PyObject *args)
#define SWIG_AddNewMask(r)
SWIGINTERN PyObject * SWIG_globals(void)
SWIGINTERN PyObject * _wrap_pl_setcontlabelparam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plbox(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_type_set(PyObject *self, PyObject *args)
#define SWIG_PYTHON_THREAD_BEGIN_BLOCK
SWIGINTERN PyObject * _wrap_plscmap1n(PyObject *self, PyObject *args)
enum callback_type pltr_type
SWIGINTERN PyObject * _wrap_plaxes(PyObject *self, PyObject *args)
SWIGRUNTIME int SWIG_Python_AcquirePtr(PyObject *obj, int own)
#define MY_UNBLOCK_THREADS
#define SWIGRUNTIMEINLINE
SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory)
PyObject_HEAD void * pack
struct swig_cast_info * prev
struct swig_cast_info * next
swig_converter_func converter
PyObject *(* get_attr)(void)
struct swig_globalvar * next
int(* set_attr)(PyObject *)
swig_cast_info ** cast_initial
swig_type_info ** type_initial
struct swig_module_info * next
struct swig_cast_info * cast
PyObject_HEAD swig_globalvar * vars
static tclMatrixXtnsnDescr * tail