10#define SWIG_VERSION 0x040400
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;
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)) {
1687 data->
newraw = PyObject_GetAttrString(data->
klass,
"__new__");
1689 data->
newargs = PyTuple_New(1);
1692 PyTuple_SET_ITEM(data->
newargs, 0, obj);
1705 data->
destroy = PyObject_GetAttrString(data->
klass,
"__swig_destroy__");
1706 if (PyErr_Occurred()) {
1711 data->
delargs = !(PyCFunction_GET_FLAGS(data->
destroy) & METH_O);
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);
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) {
2635 PyObject *klass = data->
klass;
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)
3358 if ((
min <= x && x <=
max)) {
3363 rd = ((x - fx) < 0.5) ? fx : cx;
3364 if ((errno == EDOM) || (errno == ERANGE)) {
3367 double summ, reps, diff;
3370 }
else if (rd > x) {
3377 if (reps < 8*DBL_EPSILON) {
3390#if PY_VERSION_HEX < 0x03000000
3391 if (PyInt_Check(obj)) {
3392 if (val) *val = PyInt_AsLong(obj);
3396 if (PyLong_Check(obj)) {
3397 long v = PyLong_AsLong(obj);
3398 if (!PyErr_Occurred()) {
3406#ifdef SWIG_PYTHON_CAST_MODE
3409 long v = PyInt_AsLong(obj);
3410 if (!PyErr_Occurred()) {
3422 const double long_max =
sizeof(long) == 8 ? 0x7ffffffffffffc00LL : LONG_MAX;
3425 if (val) *val = (long)(d);
3441 if ((v < INT_MIN || v > INT_MAX)) {
3444 if (val) *val = (int)(v);
3454#if PY_VERSION_HEX < 0x03000000
3455 if (PyInt_Check(obj)) {
3456 long v = PyInt_AsLong(obj);
3465 if (PyLong_Check(obj)) {
3466 unsigned long v = PyLong_AsUnsignedLong(obj);
3467 if (!PyErr_Occurred()) {
3475#ifdef SWIG_PYTHON_CAST_MODE
3478 unsigned long v = PyLong_AsUnsignedLong(obj);
3479 if (!PyErr_Occurred()) {
3491 const double ulong_max =
sizeof(
unsigned long) == 8 ? 0xfffffffffffff800ULL : ULONG_MAX;
3493 if (val) *val = (
unsigned long)(d);
3509 if ((v > UINT_MAX)) {
3512 if (val) *val = (
unsigned int)(v);
3522 return PyInt_FromSize_t((
size_t)
value);
3542#if PY_VERSION_HEX>=0x03000000
3543#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3544 if (PyBytes_Check(obj))
3546 if (PyUnicode_Check(obj))
3549 if (PyString_Check(obj))
3552 char *cstr; Py_ssize_t len;
3553 PyObject *bytes = NULL;
3557#if PY_VERSION_HEX>=0x03000000 && defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3558 if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1)
3565 if (bytes && cptr) {
3567 cstr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3575 if (cptr) *cptr = cstr;
3576 if (psize) *psize = len + 1;
3580#if defined(SWIG_PYTHON_2_UNICODE)
3581#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3582#error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once"
3584#if PY_VERSION_HEX<0x03000000
3585 if (PyUnicode_Check(obj)) {
3586 char *cstr; Py_ssize_t len;
3587 if (!alloc && cptr) {
3590 obj = PyUnicode_AsUTF8String(obj);
3593 if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) {
3596 *cptr = (
char *)memcpy(malloc((len + 1)*
sizeof(
char)), cstr,
sizeof(
char)*(len + 1));
3598 if (psize) *psize = len + 1;
3610 if (pchar_descriptor) {
3613 if (cptr) *cptr = (
char *) vptr;
3614 if (psize) *psize = vptr ? (strlen((
char *)vptr) + 1) : 0;
3627 char* cptr = 0;
size_t csize = 0;
int alloc =
SWIG_OLDOBJ;
3631 if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize;
3632 if (csize <= size) {
3634 if (csize) memcpy(val, cptr, csize*
sizeof(
char));
3635 if (csize < size) memset(val + csize, 0, (size - csize)*
sizeof(
char));
3653 if (size > INT_MAX) {
3655 return pchar_descriptor ?
3658#if PY_VERSION_HEX >= 0x03000000
3659#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
3660 return PyBytes_FromStringAndSize(carray, (Py_ssize_t)(size));
3662 return PyUnicode_DecodeUTF8(carray, (Py_ssize_t)(size),
"surrogateescape");
3665 return PyString_FromStringAndSize(carray, (Py_ssize_t)(size));
3678 for (p = s; maxlen-- && *p; p++)
3695 if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) {
3696 if (val) *val = (char)(v);
3714 PyArrayObject* tmp = (PyArrayObject *) PyArray_ContiguousFromObject( in,
NPY_PLINT,
3719 if ( PyArray_Check( in ) )
3722 tmp = (PyArrayObject *) PyArray_Cast( (PyArrayObject *) in,
NPY_PLINT );
3729#define myArray_ContiguousFromObject PyArray_ContiguousFromObject
3732 PyObject *resultobj = 0;
3746 PyObject *swig_obj[2] ;
3759 arg1 = (
PLFLT)(val1);
3764 arg2 = (
PLFLT)(val2);
3765 pltr0(arg1,arg2,arg3,arg4,arg5);
3800 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3809 PyErr_SetString( PyExc_ValueError,
"Expected a sequence to two 1D arrays." );
3818 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3826 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3848 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two arrays." );
3857 PyErr_SetString( PyExc_ValueError,
"Expected a sequence of two 2D arrays." );
3863 PyErr_SetString( PyExc_ValueError,
"Arrays must be same size." );
3872 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg." );
3880 PyErr_SetString( PyExc_ValueError,
"pltr arguments must have X and Y dimensions of first arg + 1." );
3886 for ( i = 0; i <
tmpGrid2.nx; i++ )
3889 for ( i = 0; i <
tmpGrid2.nx; i++ )
3904 PyObject *resultobj = 0;
3918 PyObject *swig_obj[3] ;
3928 arg1 = (
PLFLT)(val1);
3933 arg2 = (
PLFLT)(val2);
3939 pltr1(arg1,arg2,arg3,arg4,arg5);
3966 PyObject *resultobj = 0;
3980 PyObject *swig_obj[3] ;
3990 arg1 = (
PLFLT)(val1);
3995 arg2 = (
PLFLT)(val2);
4001 pltr2(arg1,arg2,arg3,arg4,arg5);
4030 static PyInterpreterState *save_interp = NULL;
4040#define MY_BLOCK_THREADS { \
4041 PyThreadState *prev_state, *new_state; \
4044 PyEval_AcquireLock(); \
4045 new_state = PyThreadState_New( save_interp ); \
4046 prev_state = PyThreadState_Swap( new_state );
4047#define MY_UNBLOCK_THREADS \
4048 new_state = PyThreadState_Swap( prev_state ); \
4049 PyThreadState_Clear( new_state ); \
4050 PyEval_ReleaseLock(); \
4051 PyThreadState_Delete( new_state ); \
4054#define MY_BLOCK_THREADS
4055#define MY_UNBLOCK_THREADS
4078 PyObject *pdata, *arglist, *result;
4082 pdata = (PyObject *) data;
4089 Py_XINCREF( pdata );
4094 arglist = Py_BuildValue(
"(ddO)", x, y, pdata );
4096 arglist = Py_BuildValue(
"(ffO)", x, y, pdata );
4098 if ( arglist == NULL )
4100 fprintf( stderr,
"Py_BuildValue failed to make argument list.\n" );
4105 result = PyObject_CallObject(
python_pltr, arglist );
4107 Py_CLEAR( arglist );
4109 if ( result == NULL )
4111 fprintf( stderr,
"call to python pltr function with 3 arguments failed\n" );
4112 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must take 3 arguments." );
4118 if ( tmp == 0 || PyArray_DIMS( tmp )[0] != 2 )
4120 fprintf( stderr,
"pltr callback must return a 2 element array or sequence\n" );
4121 PyErr_SetString( PyExc_RuntimeError,
"pltr callback must return a 2-sequence." );
4141 PyObject *pdata, *arglist, *result;
4142 PLFLT fresult = 0.0;
4145 pdata = (PyObject *) data;
4148 Py_XINCREF( pdata );
4152 arglist = Py_BuildValue(
"(iiO)", x, y, pdata );
4156 Py_CLEAR( arglist );
4158 if ( !PyFloat_Check( result ) )
4160 fprintf( stderr,
"f2eval callback must return a float\n" );
4161 PyErr_SetString( PyExc_RuntimeError,
"f2eval callback must return a float." );
4166 fresult = (
PLFLT) PyFloat_AsDouble( result );
4178 PyObject *pdata, *arglist, *result, *unicode_string;
4183 pdata = (PyObject *) data;
4188 Py_XINCREF( pdata );
4193 arglist = Py_BuildValue(
"(ldO)", axis,
value, pdata );
4195 arglist = Py_BuildValue(
"(lfO)", axis,
value, pdata );
4202 if ( result == NULL )
4204 fprintf( stderr,
"label callback failed with 3 arguments\n" );
4205 PyErr_SetString( PyExc_RuntimeError,
"label callback must take 3 arguments." );
4207 else if ( PyString_Check( result ) )
4210 pystring = PyString_AsString( result );
4211 strncpy(
string, pystring, len );
4213 else if ( PyUnicode_Check( result ) )
4216 unicode_string = PyUnicode_AsEncodedString( result,
"utf-8",
"Error ~" );
4217 pystring = PyBytes_AS_STRING( unicode_string );
4219 strncpy(
string, pystring, len );
4223 fprintf( stderr,
"label callback must return a string\n" );
4224 PyErr_SetString( PyExc_RuntimeError,
"label callback must return a string." );
4235 PyObject *px, *py, *pdata, *arglist, *result;
4240 pdata = (PyObject *) data;
4247 Py_XINCREF( pdata );
4251 px = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) xt );
4252 py = PyArray_SimpleNewFromData( 1, &n,
NPY_PLFLT, (
void *) yt );
4253 arglist = Py_BuildValue(
"(ddOOO)", x, y, px, py, pdata );
4255 result = PyObject_CallObject(
python_ct, arglist );
4257 Py_CLEAR( arglist );
4262 if ( result == NULL )
4264 fprintf( stderr,
"call to python coordinate transform function with 5 arguments failed\n" );
4265 PyErr_SetString( PyExc_RuntimeError,
"coordinate transform callback must take 5 arguments." );
4276 PyObject *px, *py, *arglist, *result;
4287#ifdef PL_HAVE_PTHREAD
4288 px = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) x );
4289 py = PyArray_SimpleNewFromData( 1, &nn,
NPY_PLFLT, (
void *) y );
4291 px = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) x );
4292 py = PyArray_FromDimsAndData( 1, &n,
NPY_PLFLT, (
char *) y );
4294 arglist = Py_BuildValue(
"(iOO)", n, px, py );
4298 Py_CLEAR( arglist );
4302 if ( result == NULL )
4304 fprintf( stderr,
"call to python mapform function with 3 arguments failed\n" );
4305 PyErr_SetString( PyExc_RuntimeError,
"mapform callback must take 3 arguments." );
4318 PyObject * rep = PyObject_Repr( input );
4323 if ( PyUnicode_Check( rep ) )
4325 PyObject *uni_str = PyUnicode_AsEncodedString( rep,
"utf-8",
"Error ~" );
4326 str = PyBytes_AS_STRING( uni_str );
4330 str = PyString_AsString( rep );
4332 if ( strstr( str,
"function pltr0" ) != 0 )
4338 else if ( strstr( str,
"function pltr1" ) != 0 )
4344 else if ( strstr( str,
"function pltr2" ) != 0 )
4354 Py_XINCREF( input );
4362 Py_XINCREF( input );
4378 Py_XINCREF( input );
4393 Py_XINCREF( input );
4411 if ( input != Py_None )
4415 if ( input != Py_None )
4419 Py_XINCREF( input );
4423 fprintf( stderr,
"pltr_type is invalid\n" );
4444 fprintf( stderr,
"pltr_type is invalid\n" );
4453 PyObject *resultobj = 0;
4460 PyObject *swig_obj[2] ;
4474 if (arg1) (arg1)->type = arg2;
4483 PyObject *resultobj = 0;
4487 PyObject *swig_obj[1] ;
4498 result = (int) ((arg1)->type);
4507 PyObject *resultobj = 0;
4514 PyObject *swig_obj[2] ;
4527 arg2 = (
unsigned int)(val2);
4528 if (arg1) (arg1)->state = arg2;
4537 PyObject *resultobj = 0;
4541 PyObject *swig_obj[1] ;
4542 unsigned int result;
4552 result = (
unsigned int) ((arg1)->state);
4561 PyObject *resultobj = 0;
4568 PyObject *swig_obj[2] ;
4581 arg2 = (
unsigned int)(val2);
4582 if (arg1) (arg1)->keysym = arg2;
4591 PyObject *resultobj = 0;
4595 PyObject *swig_obj[1] ;
4596 unsigned int result;
4606 result = (
unsigned int) ((arg1)->keysym);
4615 PyObject *resultobj = 0;
4622 PyObject *swig_obj[2] ;
4635 arg2 = (
unsigned int)(val2);
4636 if (arg1) (arg1)->button = arg2;
4645 PyObject *resultobj = 0;
4649 PyObject *swig_obj[1] ;
4650 unsigned int result;
4660 result = (
unsigned int) ((arg1)->button);
4669 PyObject *resultobj = 0;
4676 PyObject *swig_obj[2] ;
4689 arg2 = (
PLINT)(val2);
4690 if (arg1) (arg1)->subwindow = arg2;
4699 PyObject *resultobj = 0;
4703 PyObject *swig_obj[1] ;
4714 result = (
PLINT) ((arg1)->subwindow);
4723 PyObject *resultobj = 0;
4725 char *arg2 = (
char *)0 ;
4730 PyObject *swig_obj[2] ;
4743 arg2 = (
char *)(temp2);
4744 if (arg2) memcpy(arg1->
string,arg2,16*
sizeof(
char));
4745 else memset(arg1->
string,0,16*
sizeof(
char));
4754 PyObject *resultobj = 0;
4758 PyObject *swig_obj[1] ;
4769 result = (
char *)(
char *) ((arg1)->string);
4784 PyObject *resultobj = 0;
4791 PyObject *swig_obj[2] ;
4805 if (arg1) (arg1)->pX = arg2;
4814 PyObject *resultobj = 0;
4818 PyObject *swig_obj[1] ;
4829 result = (int) ((arg1)->pX);
4838 PyObject *resultobj = 0;
4845 PyObject *swig_obj[2] ;
4859 if (arg1) (arg1)->pY = arg2;
4868 PyObject *resultobj = 0;
4872 PyObject *swig_obj[1] ;
4883 result = (int) ((arg1)->pY);
4892 PyObject *resultobj = 0;
4899 PyObject *swig_obj[2] ;
4912 arg2 = (
PLFLT)(val2);
4913 if (arg1) (arg1)->dX = arg2;
4922 PyObject *resultobj = 0;
4926 PyObject *swig_obj[1] ;
4937 result = (
PLFLT) ((arg1)->dX);
4946 PyObject *resultobj = 0;
4953 PyObject *swig_obj[2] ;
4966 arg2 = (
PLFLT)(val2);
4967 if (arg1) (arg1)->dY = arg2;
4976 PyObject *resultobj = 0;
4980 PyObject *swig_obj[1] ;
4991 result = (
PLFLT) ((arg1)->dY);
5000 PyObject *resultobj = 0;
5007 PyObject *swig_obj[2] ;
5020 arg2 = (
PLFLT)(val2);
5021 if (arg1) (arg1)->wX = arg2;
5030 PyObject *resultobj = 0;
5034 PyObject *swig_obj[1] ;
5045 result = (
PLFLT) ((arg1)->wX);
5054 PyObject *resultobj = 0;
5061 PyObject *swig_obj[2] ;
5074 arg2 = (
PLFLT)(val2);
5075 if (arg1) (arg1)->wY = arg2;
5084 PyObject *resultobj = 0;
5088 PyObject *swig_obj[1] ;
5099 result = (
PLFLT) ((arg1)->wY);
5108 PyObject *resultobj = 0;
5122 PyObject *resultobj = 0;
5126 PyObject *swig_obj[1] ;
5136 free((
char *) arg1);
5145 PyObject *obj = NULL;
5156 PyObject *resultobj = 0;
5160 PyObject *swig_obj[1] ;
5169 arg1 = (
PLINT)(val1);
5179 PyObject *resultobj = 0;
5186 PyObject *swig_obj[2] ;
5194 arg1 = (
PLINT)(val1);
5199 arg2 = (
PLINT)(val2);
5209 PyObject *resultobj = 0;
5222 PyObject *swig_obj[4] ;
5230 arg1 = (
PLFLT)(val1);
5235 arg2 = (
PLFLT)(val2);
5240 arg3 = (
PLFLT)(val3);
5245 arg4 = (
PLINT)(val4);
5255 PyObject *resultobj = 0;
5259 PyObject *swig_obj[1] ;
5268 arg1 = (
PLINT)(val1);
5278 PyObject *resultobj = 0;
5303 PyObject *swig_obj[8] ;
5311 arg1 = (
PLFLT)(val1);
5316 arg2 = (
PLFLT)(val2);
5321 arg3 = (
PLFLT)(val3);
5326 arg4 = (
PLFLT)(val4);
5331 arg5 = (
PLFLT)(val5);
5336 arg6 = (
PLFLT)(val6);
5341 arg7 = (
PLFLT)(val7);
5347 plarc(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
5356 PyObject *resultobj = 0;
5383 PyObject *swig_obj[8] ;
5391 arg1 = (
PLFLT)(val1);
5396 arg2 = (
PLFLT)(val2);
5401 arg3 = (
char *)(buf3);
5406 arg4 = (
PLFLT)(val4);
5411 arg5 = (
PLINT)(val5);
5416 arg6 = (
char *)(buf6);
5421 arg7 = (
PLFLT)(val7);
5426 arg8 = (
PLINT)(val8);
5427 plaxes(arg1,arg2,(
char const *)arg3,arg4,arg5,(
char const *)arg6,arg7,arg8);
5440 PyObject *resultobj = 0;
5445 PyArrayObject *tmp1 = NULL ;
5446 PyArrayObject *tmp3 = NULL ;
5449 PyObject *swig_obj[3] ;
5457 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
5458 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
5464 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
5466 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
5469 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
5475 arg4 = (
PLINT)(val4);
5476 plbin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
5497 PyObject *resultobj = 0;
5519 PyObject *swig_obj[1] ;
5534 arg7 = (
PLFLT)(val7);
5535 plbtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
5580 PyObject *resultobj = 0;
5593 PyObject *resultobj = 0;
5614 PyObject *swig_obj[6] ;
5622 arg1 = (
char *)(buf1);
5627 arg2 = (
PLFLT)(val2);
5632 arg3 = (
PLINT)(val3);
5637 arg4 = (
char *)(buf4);
5642 arg5 = (
PLFLT)(val5);
5647 arg6 = (
PLINT)(val6);
5648 plbox((
char const *)arg1,arg2,arg3,(
char const *)arg4,arg5,arg6);
5661 PyObject *resultobj = 0;
5704 PyObject *swig_obj[12] ;
5712 arg1 = (
char *)(buf1);
5717 arg2 = (
char *)(buf2);
5722 arg3 = (
PLFLT)(val3);
5727 arg4 = (
PLINT)(val4);
5732 arg5 = (
char *)(buf5);
5737 arg6 = (
char *)(buf6);
5742 arg7 = (
PLFLT)(val7);
5747 arg8 = (
PLINT)(val8);
5752 arg9 = (
char *)(buf9);
5757 arg10 = (
char *)(buf10);
5762 arg11 = (
PLFLT)(val11);
5767 arg12 = (
PLINT)(val12);
5768 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);
5789 PyObject *resultobj = 0;
5805 PyObject *swig_obj[2] ;
5816 arg1 = (
PLFLT)(val1);
5821 arg2 = (
PLFLT)(val2);
5849 PyObject *resultobj = 0;
5862 PyObject *resultobj = 0;
5866 PyObject *swig_obj[1] ;
5875 arg1 = (
PLINT)(val1);
5885 PyObject *resultobj = 0;
5889 PyObject *swig_obj[1] ;
5898 arg1 = (
PLFLT)(val1);
5908 PyObject *resultobj = 0;
5942 PyObject *swig_obj[11] ;
5950 arg1 = (
PLFLT)(val1);
5955 arg2 = (
PLFLT)(val2);
5960 arg3 = (
PLFLT)(val3);
5965 arg4 = (
PLINT)(val4);
5975 arg6 = (
PLINT)(val6);
5980 arg7 = (
PLINT)(val7);
5985 arg8 = (
PLINT)(val8);
5990 arg9 = (
PLINT)(val9);
5995 arg10 = (
PLINT)(val10);
6000 arg11 = (
PLFLT)(val11);
6001 plconfigtime(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
6010 PyObject *resultobj = 0;
6022 PyArrayObject *tmp1 = NULL ;
6031 PyArrayObject *tmp8 = NULL ;
6032 PyObject *swig_obj[8] ;
6048 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
6049 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
6051 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
6052 for ( i = 0; i < arg2; i++ )
6053 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
6059 arg4 = (
PLINT)(val4);
6064 arg5 = (
PLINT)(val5);
6069 arg6 = (
PLINT)(val6);
6074 arg7 = (
PLINT)(val7);
6079 arg9 = PyArray_DIMS( tmp8 )[0];
6080 arg8 = (
PLFLT *) PyArray_DATA( tmp8 );
6085 if ( swig_obj[6] == Py_None )
6091 if ( !PyCallable_Check( (PyObject *) swig_obj[6] ) )
6093 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
6102 if ( swig_obj[7] == Py_None )
6110 plcont((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,(
double const *)arg8,arg9,arg10,arg11);
6145 PyObject *resultobj = 0;
6167 PyObject *swig_obj[6] ;
6176 arg1 = (
PLINT)(val1);
6181 arg2 = (
PLINT)(val2);
6186 arg3 = (
PLINT)(val3);
6191 arg4 = (
PLINT)(val4);
6196 arg5 = (
PLINT)(val5);
6201 arg6 = (
PLFLT)(val6);
6202 plctime(arg1,arg2,arg3,arg4,arg5,arg6,arg7);
6217 PyObject *resultobj = 0;
6224 PyObject *swig_obj[2] ;
6232 arg1 = (
PLINT)(val1);
6247 PyObject *resultobj = 0;
6260 PyObject *resultobj = 0;
6273 PyObject *resultobj = 0;
6292 PyObject *swig_obj[6] ;
6300 arg1 = (
PLFLT)(val1);
6305 arg2 = (
PLFLT)(val2);
6310 arg3 = (
PLFLT)(val3);
6315 arg4 = (
PLFLT)(val4);
6320 arg5 = (
PLINT)(val5);
6325 arg6 = (
PLINT)(val6);
6326 plenv(arg1,arg2,arg3,arg4,arg5,arg6);
6335 PyObject *resultobj = 0;
6354 PyObject *swig_obj[6] ;
6362 arg1 = (
PLFLT)(val1);
6367 arg2 = (
PLFLT)(val2);
6372 arg3 = (
PLFLT)(val3);
6377 arg4 = (
PLFLT)(val4);
6382 arg5 = (
PLINT)(val5);
6387 arg6 = (
PLINT)(val6);
6388 plenv0(arg1,arg2,arg3,arg4,arg5,arg6);
6397 PyObject *resultobj = 0;
6410 PyObject *resultobj = 0;
6415 PyArrayObject *tmp1 = NULL ;
6416 PyArrayObject *tmp3 = NULL ;
6417 PyArrayObject *tmp4 = NULL ;
6418 PyObject *swig_obj[3] ;
6426 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6427 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6433 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6435 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6438 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6444 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6446 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6449 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6451 plerrx(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6478 PyObject *resultobj = 0;
6483 PyArrayObject *tmp1 = NULL ;
6484 PyArrayObject *tmp3 = NULL ;
6485 PyArrayObject *tmp4 = NULL ;
6486 PyObject *swig_obj[3] ;
6494 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6495 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6501 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6503 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6506 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6512 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6514 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6517 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6519 plerry(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6546 PyObject *resultobj = 0;
6559 PyObject *resultobj = 0;
6563 PyArrayObject *tmp1 = NULL ;
6564 PyArrayObject *tmp3 = NULL ;
6565 PyObject *swig_obj[2] ;
6573 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6574 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6580 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6582 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6585 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6587 plfill(arg1,(
double const *)arg2,(
double const *)arg3);
6608 PyObject *resultobj = 0;
6613 PyArrayObject *tmp1 = NULL ;
6614 PyArrayObject *tmp3 = NULL ;
6615 PyArrayObject *tmp4 = NULL ;
6616 PyObject *swig_obj[3] ;
6624 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6625 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6631 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6633 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6636 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6642 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
6644 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6647 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
6649 plfill3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
6676 PyObject *resultobj = 0;
6681 PyArrayObject *tmp1 = NULL ;
6682 PyArrayObject *tmp3 = NULL ;
6685 PyObject *swig_obj[3] ;
6693 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
6694 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
6700 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
6702 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
6705 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
6711 arg4 = (
PLFLT)(val4);
6712 plgradient(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
6733 PyObject *resultobj = 0;
6746 PyObject *resultobj = 0;
6750 PyObject *swig_obj[1] ;
6759 arg1 = (
PLINT)(val1);
6769 PyObject *resultobj = 0;
6773 PyObject *swig_obj[1] ;
6782 arg1 = (
PLINT)(val1);
6792 PyObject *resultobj = 0;
6825 PyObject *resultobj = 0;
6838 PyObject *swig_obj[1] ;
6850 arg1 = (
PLINT)(val1);
6878 PyObject *resultobj = 0;
6894 PyObject *swig_obj[1] ;
6907 arg1 = (
PLINT)(val1);
6908 plgcol0a(arg1,arg2,arg3,arg4,arg5);
6941 PyObject *resultobj = 0;
6984 PyObject *resultobj = 0;
7037 PyObject *resultobj = 0;
7060 PyObject *resultobj = 0;
7072 PyObject *o = PyString_FromString( arg1 );
7082 PyObject *resultobj = 0;
7135 PyObject *resultobj = 0;
7158 PyObject *resultobj = 0;
7211 PyObject *resultobj = 0;
7254 PyObject *resultobj = 0;
7277 PyObject *resultobj = 0;
7289 PyObject *o = PyString_FromString( arg1 );
7299 PyObject *resultobj = 0;
7342 PyObject *resultobj = 0;
7365 PyObject *resultobj = 0;
7393 plgpage(arg1,arg2,arg3,arg4,arg5,arg6);
7438 PyObject *resultobj = 0;
7451 PyObject *resultobj = 0;
7463 PyArrayObject *tmp1 = NULL ;
7464 PyArrayObject *tmp2 = NULL ;
7465 PyArrayObject *tmp3 = NULL ;
7466 PyArrayObject *tmp5 = NULL ;
7467 PyArrayObject *tmp7 = NULL ;
7468 PyObject *array7 = NULL ;
7473 PyObject *swig_obj[7] ;
7481 Alen = PyArray_DIMS( tmp1 )[0];
7482 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
7488 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
7490 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7493 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
7499 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
7501 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
7504 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
7505 arg4 = PyArray_DIMS( tmp3 )[0];
7511 Xlen = PyArray_DIMS( tmp5 )[0];
7513 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
7521 Ylen = PyArray_DIMS( tmp7 )[0];
7523 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
7528 array7 = PyArray_SimpleNew( 2, dims,
NPY_PLFLT );
7532 arg9 = (
PLFLT **) malloc(
sizeof (
double * ) * (
size_t)
Xlen );
7533 for ( i = 0; i <
Xlen; i++ )
7534 arg9[i] = ( (
PLFLT *) PyArray_DATA( (PyArrayObject *) array7 ) + i * size );
7540 arg10 = (
PLINT)(val10);
7545 arg11 = (
PLFLT)(val11);
7546 plgriddata((
double const *)arg1,(
double const *)arg2,(
double const *)arg3,arg4,(
double const *)arg5,arg6,(
double const *)arg7,arg8,arg9,arg10,arg11);
7590 PyObject *resultobj = 0;
7610 plgspa(arg1,arg2,arg3,arg4);
7643 PyObject *resultobj = 0;
7666 PyObject *resultobj = 0;
7678 PyObject *o = PyString_FromString( arg1 );
7688 PyObject *resultobj = 0;
7708 plgvpd(arg1,arg2,arg3,arg4);
7741 PyObject *resultobj = 0;
7761 plgvpw(arg1,arg2,arg3,arg4);
7794 PyObject *resultobj = 0;
7827 PyObject *resultobj = 0;
7860 PyObject *resultobj = 0;
7893 PyObject *resultobj = 0;
7900 PyArrayObject *tmp1 = NULL ;
7909 PyObject *swig_obj[5] ;
7917 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
7918 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
7924 arg3 = (
PLFLT)(val3);
7929 arg4 = (
PLFLT)(val4);
7934 arg5 = (
PLINT)(val5);
7939 arg6 = (
PLINT)(val6);
7940 plhist(arg1,(
double const *)arg2,arg3,arg4,arg5,arg6);
7955 PyObject *resultobj = 0;
7974 PyObject *swig_obj[3] ;
7985 arg1 = (
PLFLT)(val1);
7990 arg2 = (
PLFLT)(val2);
7995 arg3 = (
PLFLT)(val3);
7996 plhlsrgb(arg1,arg2,arg3,arg4,arg5,arg6);
8023 PyObject *resultobj = 0;
8036 PyObject *resultobj = 0;
8049 PyObject *swig_obj[4] ;
8057 arg1 = (
PLFLT)(val1);
8062 arg2 = (
PLFLT)(val2);
8067 arg3 = (
PLFLT)(val3);
8072 arg4 = (
PLFLT)(val4);
8073 pljoin(arg1,arg2,arg3,arg4);
8082 PyObject *resultobj = 0;
8095 PyObject *swig_obj[3] ;
8103 arg1 = (
char *)(buf1);
8108 arg2 = (
char *)(buf2);
8113 arg3 = (
char *)(buf3);
8114 pllab((
char const *)arg1,(
char const *)arg2,(
char const *)arg3);
8129 PyObject *resultobj = 0;
8185 PyArrayObject *tmp13 = NULL ;
8194 PyArrayObject *tmp19 = NULL ;
8195 PyArrayObject *tmp20 = NULL ;
8196 PyArrayObject *tmp21 = NULL ;
8197 PyArrayObject *tmp22 = NULL ;
8198 PyArrayObject *tmp23 = NULL ;
8199 PyArrayObject *tmp24 = NULL ;
8200 PyArrayObject *tmp25 = NULL ;
8201 PyArrayObject *tmp26 = NULL ;
8202 PyArrayObject *tmp27 = NULL ;
8203 PyArrayObject *tmp28 = NULL ;
8204 PyArrayObject *tmp29 = NULL ;
8205 PyArrayObject *tmp30 = NULL ;
8206 PyArrayObject *tmp31 = NULL ;
8207 PyObject *swig_obj[28] ;
8217 arg3 = (
PLINT)(val3);
8222 arg4 = (
PLINT)(val4);
8227 arg5 = (
PLFLT)(val5);
8232 arg6 = (
PLFLT)(val6);
8237 arg7 = (
PLFLT)(val7);
8242 arg8 = (
PLINT)(val8);
8247 arg9 = (
PLINT)(val9);
8252 arg10 = (
PLINT)(val10);
8257 arg11 = (
PLINT)(val11);
8262 arg12 = (
PLINT)(val12);
8265 if ( tmp13 == NULL )
8267 arg13 =
Alen = PyArray_DIMS( tmp13 )[0];
8268 arg14 = (
PLINT *) PyArray_DATA( tmp13 );
8274 arg15 = (
PLFLT)(val15);
8279 arg16 = (
PLFLT)(val16);
8284 arg17 = (
PLFLT)(val17);
8289 arg18 = (
PLFLT)(val18);
8292 if ( tmp19 == NULL )
8294 if ( PyArray_DIMS( tmp19 )[0] !=
Alen )
8296 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8299 arg19 = (
PLINT *) PyArray_DATA( tmp19 );
8303 tmp20 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[16], NPY_STRING, 1, 1 );
8304 if ( tmp20 == NULL )
8306 if ( PyArray_DIMS( tmp20 )[0] !=
Alen )
8308 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8311 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8312 for ( i = 0; i <
Alen; i++ )
8314 arg20[i] = (
char *) PyArray_DATA( tmp20 ) + i * PyArray_STRIDES( tmp20 )[0];
8315 if ( arg20[i] == NULL )
8324 if ( tmp21 == NULL )
8326 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8328 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8331 arg21 = (
PLINT *) PyArray_DATA( tmp21 );
8335 if ( tmp22 == NULL )
8337 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8339 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8342 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8345 if ( swig_obj[19] != Py_None )
8348 if ( tmp23 == NULL )
8350 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8352 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8355 arg23 = (
PLFLT *) PyArray_DATA( tmp23 );
8363 if ( swig_obj[20] != Py_None )
8366 if ( tmp24 == NULL )
8368 if ( PyArray_DIMS( tmp24 )[0] !=
Alen )
8370 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8373 arg24 = (
PLFLT *) PyArray_DATA( tmp24 );
8382 if ( tmp25 == NULL )
8384 if ( PyArray_DIMS( tmp25 )[0] !=
Alen )
8386 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8389 arg25 = (
PLINT *) PyArray_DATA( tmp25 );
8393 if ( tmp26 == NULL )
8395 if ( PyArray_DIMS( tmp26 )[0] !=
Alen )
8397 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8400 arg26 = (
PLINT *) PyArray_DATA( tmp26 );
8403 if ( swig_obj[23] != Py_None )
8406 if ( tmp27 == NULL )
8408 if ( PyArray_DIMS( tmp27 )[0] !=
Alen )
8410 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8413 arg27 = (
PLFLT *) PyArray_DATA( tmp27 );
8422 if ( tmp28 == NULL )
8424 if ( PyArray_DIMS( tmp28 )[0] !=
Alen )
8426 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8429 arg28 = (
PLINT *) PyArray_DATA( tmp28 );
8432 if ( swig_obj[25] != Py_None )
8435 if ( tmp29 == NULL )
8437 if ( PyArray_DIMS( tmp29 )[0] !=
Alen )
8439 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8442 arg29 = (
PLFLT *) PyArray_DATA( tmp29 );
8451 if ( tmp30 == NULL )
8453 if ( PyArray_DIMS( tmp30 )[0] !=
Alen )
8455 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8458 arg30 = (
PLINT *) PyArray_DATA( tmp30 );
8462 tmp31 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[27], NPY_STRING, 1, 1 );
8463 if ( tmp31 == NULL )
8465 if ( PyArray_DIMS( tmp31 )[0] !=
Alen )
8467 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8470 arg31 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8471 for ( i = 0; i <
Alen; i++ )
8473 arg31[i] = (
char *) PyArray_DATA( tmp31 ) + i * PyArray_STRIDES( tmp31 )[0];
8474 if ( arg31[i] == NULL )
8481 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);
8502 Py_CLEAR( tmp20 ); free( arg20 );
8535 Py_CLEAR( tmp31 ); free( arg31 );
8546 Py_CLEAR( tmp20 ); free( arg20 );
8579 Py_CLEAR( tmp31 ); free( arg31 );
8586 PyObject *resultobj = 0;
8641 PyArrayObject *tmp16 = NULL ;
8642 PyArrayObject *tmp18 = NULL ;
8643 PyArrayObject *tmp19 = NULL ;
8644 PyArrayObject *tmp21 = NULL ;
8645 PyArrayObject *tmp22 = NULL ;
8646 PyArrayObject *tmp23 = NULL ;
8647 PyArrayObject *tmp24 = NULL ;
8648 PyObject *swig_obj[20] ;
8658 arg3 = (
PLINT)(val3);
8663 arg4 = (
PLINT)(val4);
8668 arg5 = (
PLFLT)(val5);
8673 arg6 = (
PLFLT)(val6);
8678 arg7 = (
PLFLT)(val7);
8683 arg8 = (
PLFLT)(val8);
8688 arg9 = (
PLINT)(val9);
8693 arg10 = (
PLINT)(val10);
8698 arg11 = (
PLINT)(val11);
8703 arg12 = (
PLFLT)(val12);
8708 arg13 = (
PLFLT)(val13);
8713 arg14 = (
PLINT)(val14);
8718 arg15 = (
PLFLT)(val15);
8721 if ( tmp16 == NULL )
8723 arg16 =
Alen = PyArray_DIMS( tmp16 )[0];
8724 arg17 = (
PLINT *) PyArray_DATA( tmp16 );
8728 tmp18 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[14], NPY_STRING, 1, 1 );
8729 if ( tmp18 == NULL )
8731 if ( PyArray_DIMS( tmp18 )[0] !=
Alen )
8733 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8736 arg18 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8737 for ( i = 0; i <
Alen; i++ )
8739 arg18[i] = (
char *) PyArray_DATA( tmp18 ) + i * PyArray_STRIDES( tmp18 )[0];
8740 if ( arg18[i] == NULL )
8749 tmp19 = (PyArrayObject *) PyArray_ContiguousFromObject( swig_obj[15], NPY_STRING, 1, 1 );
8750 if ( tmp19 == NULL )
8752 Alen = PyArray_DIMS( tmp19 )[0];
8754 arg20 = (
char **) malloc(
sizeof (
char* ) * (
size_t)
Alen );
8755 for ( i = 0; i <
Alen; i++ )
8757 arg20[i] = (
char *) PyArray_DATA( tmp19 ) + i * PyArray_STRIDES( tmp19 )[0];
8758 if ( arg20[i] == NULL )
8767 if ( tmp21 == NULL )
8769 if ( PyArray_DIMS( tmp21 )[0] !=
Alen )
8771 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8774 arg21 = (
PLFLT *) PyArray_DATA( tmp21 );
8778 if ( tmp22 == NULL )
8780 if ( PyArray_DIMS( tmp22 )[0] !=
Alen )
8782 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8785 arg22 = (
PLINT *) PyArray_DATA( tmp22 );
8790 if ( tmp23 == NULL )
8792 if ( PyArray_DIMS( tmp23 )[0] !=
Alen )
8794 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8797 Xlen = PyArray_DIMS( tmp23 )[0];
8798 arg23 = (
PLINT *) PyArray_DATA( tmp23 );
8800 for ( i = 0; i <
Xlen; i++ )
8801 if ( arg23[i] >
Ylen )
8807 if ( tmp24 == NULL )
8809 if ( PyArray_DIMS( tmp24 )[0] !=
Xlen || PyArray_DIMS( tmp24 )[1] !=
Ylen )
8811 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
8816 for ( i = 0; i <
Xlen; i++ )
8817 arg24[i] = ( (
PLFLT *) PyArray_DATA( tmp24 ) + i * size );
8819 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);
8837 Py_CLEAR( tmp18 ); free( arg18 );
8840 Py_CLEAR( tmp19 ); free( arg20 );
8861 Py_CLEAR( tmp18 ); free( arg18 );
8864 Py_CLEAR( tmp19 ); free( arg20 );
8884 PyObject *resultobj = 0;
8894 PyObject *swig_obj[3] ;
8902 arg1 = (
PLFLT)(val1);
8907 arg2 = (
PLFLT)(val2);
8912 arg3 = (
PLFLT)(val3);
8922 PyObject *resultobj = 0;
8926 PyArrayObject *tmp1 = NULL ;
8927 PyArrayObject *tmp3 = NULL ;
8928 PyObject *swig_obj[2] ;
8936 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8937 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8943 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8945 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8948 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
8950 plline(arg1,(
double const *)arg2,(
double const *)arg3);
8971 PyObject *resultobj = 0;
8976 PyArrayObject *tmp1 = NULL ;
8977 PyArrayObject *tmp3 = NULL ;
8978 PyArrayObject *tmp4 = NULL ;
8979 PyObject *swig_obj[3] ;
8987 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
8988 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
8994 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
8996 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
8999 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
9005 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
9007 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9010 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
9012 plline3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4);
9039 PyObject *resultobj = 0;
9043 PyObject *swig_obj[1] ;
9052 arg1 = (
PLINT)(val1);
9062 PyObject *resultobj = 0;
9069 PyArrayObject *tmp1 = NULL ;
9070 PyArrayObject *tmp2 = NULL ;
9071 PyArrayObject *tmp3 = NULL ;
9074 PyObject *swig_obj[4] ;
9082 Xlen = PyArray_DIMS( tmp1 )[0];
9083 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9089 Ylen = PyArray_DIMS( tmp2 )[0];
9090 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9097 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9099 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9102 arg4 = PyArray_DIMS( tmp3 )[0];
9103 arg5 = PyArray_DIMS( tmp3 )[1];
9105 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9106 for ( i = 0; i < arg4; i++ )
9107 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9113 arg6 = (
PLINT)(val6);
9114 plmesh((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6);
9143 PyObject *resultobj = 0;
9152 PyArrayObject *tmp1 = NULL ;
9153 PyArrayObject *tmp2 = NULL ;
9154 PyArrayObject *tmp3 = NULL ;
9157 PyArrayObject *tmp7 = NULL ;
9158 PyObject *swig_obj[5] ;
9166 Xlen = PyArray_DIMS( tmp1 )[0];
9167 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9173 Ylen = PyArray_DIMS( tmp2 )[0];
9174 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9181 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9183 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9186 arg4 = PyArray_DIMS( tmp3 )[0];
9187 arg5 = PyArray_DIMS( tmp3 )[1];
9189 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9190 for ( i = 0; i < arg4; i++ )
9191 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9197 arg6 = (
PLINT)(val6);
9202 arg8 = PyArray_DIMS( tmp7 )[0];
9203 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9205 plmeshc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9240 PyObject *resultobj = 0;
9263 PyObject *resultobj = 0;
9281 PyObject *swig_obj[5] ;
9289 arg1 = (
char *)(buf1);
9294 arg2 = (
PLFLT)(val2);
9299 arg3 = (
PLFLT)(val3);
9304 arg4 = (
PLFLT)(val4);
9309 arg5 = (
char *)(buf5);
9310 plmtex((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9323 PyObject *resultobj = 0;
9341 PyObject *swig_obj[5] ;
9349 arg1 = (
char *)(buf1);
9354 arg2 = (
PLFLT)(val2);
9359 arg3 = (
PLFLT)(val3);
9364 arg4 = (
PLFLT)(val4);
9369 arg5 = (
char *)(buf5);
9370 plmtex3((
char const *)arg1,arg2,arg3,arg4,(
char const *)arg5);
9383 PyObject *resultobj = 0;
9391 PyArrayObject *tmp1 = NULL ;
9392 PyArrayObject *tmp2 = NULL ;
9393 PyArrayObject *tmp3 = NULL ;
9398 PyObject *swig_obj[5] ;
9406 Xlen = PyArray_DIMS( tmp1 )[0];
9407 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9413 Ylen = PyArray_DIMS( tmp2 )[0];
9414 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9421 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9423 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9426 arg4 = PyArray_DIMS( tmp3 )[0];
9427 arg5 = PyArray_DIMS( tmp3 )[1];
9429 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9430 for ( i = 0; i < arg4; i++ )
9431 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9437 arg6 = (
PLINT)(val6);
9443 plot3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,arg7);
9472 PyObject *resultobj = 0;
9481 PyArrayObject *tmp1 = NULL ;
9482 PyArrayObject *tmp2 = NULL ;
9483 PyArrayObject *tmp3 = NULL ;
9486 PyArrayObject *tmp7 = NULL ;
9487 PyObject *swig_obj[5] ;
9495 Xlen = PyArray_DIMS( tmp1 )[0];
9496 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9502 Ylen = PyArray_DIMS( tmp2 )[0];
9503 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9510 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9512 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9515 arg4 = PyArray_DIMS( tmp3 )[0];
9516 arg5 = PyArray_DIMS( tmp3 )[1];
9518 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9519 for ( i = 0; i < arg4; i++ )
9520 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9526 arg6 = (
PLINT)(val6);
9531 arg8 = PyArray_DIMS( tmp7 )[0];
9532 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9534 plot3dc((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9569 PyObject *resultobj = 0;
9582 PyArrayObject *tmp1 = NULL ;
9583 PyArrayObject *tmp2 = NULL ;
9584 PyArrayObject *tmp3 = NULL ;
9587 PyArrayObject *tmp7 = NULL ;
9590 PyArrayObject *tmp10 = NULL ;
9591 PyArrayObject *tmp12 = NULL ;
9592 PyObject *swig_obj[8] ;
9600 Xlen = PyArray_DIMS( tmp1 )[0];
9601 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9607 Ylen = PyArray_DIMS( tmp2 )[0];
9608 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9615 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9617 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9620 arg4 = PyArray_DIMS( tmp3 )[0];
9621 arg5 = PyArray_DIMS( tmp3 )[1];
9623 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9624 for ( i = 0; i < arg4; i++ )
9625 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9631 arg6 = (
PLINT)(val6);
9636 arg8 = PyArray_DIMS( tmp7 )[0];
9637 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9643 arg9 = (
PLINT)(val9);
9646 if ( tmp10 == NULL )
9648 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9649 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9653 if ( tmp12 == NULL )
9655 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9657 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9660 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9662 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);
9709 PyObject *resultobj = 0;
9718 PyArrayObject *tmp1 = NULL ;
9719 PyArrayObject *tmp2 = NULL ;
9720 PyArrayObject *tmp3 = NULL ;
9723 PyArrayObject *tmp7 = NULL ;
9724 PyObject *swig_obj[5] ;
9732 Xlen = PyArray_DIMS( tmp1 )[0];
9733 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9739 Ylen = PyArray_DIMS( tmp2 )[0];
9740 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9747 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9749 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9752 arg4 = PyArray_DIMS( tmp3 )[0];
9753 arg5 = PyArray_DIMS( tmp3 )[1];
9755 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9756 for ( i = 0; i < arg4; i++ )
9757 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9763 arg6 = (
PLINT)(val6);
9768 arg8 = PyArray_DIMS( tmp7 )[0];
9769 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9771 plsurf3d((
double const *)arg1,(
double const *)arg2,(
double const **)arg3,arg4,arg5,arg6,(
double const *)arg7,arg8);
9806 PyObject *resultobj = 0;
9819 PyArrayObject *tmp1 = NULL ;
9820 PyArrayObject *tmp2 = NULL ;
9821 PyArrayObject *tmp3 = NULL ;
9824 PyArrayObject *tmp7 = NULL ;
9827 PyArrayObject *tmp10 = NULL ;
9828 PyArrayObject *tmp12 = NULL ;
9829 PyObject *swig_obj[8] ;
9837 Xlen = PyArray_DIMS( tmp1 )[0];
9838 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
9844 Ylen = PyArray_DIMS( tmp2 )[0];
9845 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
9852 if (
Xlen != PyArray_DIMS( tmp3 )[0] ||
Ylen != PyArray_DIMS( tmp3 )[1] )
9854 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
9857 arg4 = PyArray_DIMS( tmp3 )[0];
9858 arg5 = PyArray_DIMS( tmp3 )[1];
9860 arg3 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg4 );
9861 for ( i = 0; i < arg4; i++ )
9862 arg3[i] = ( (
PLFLT *) PyArray_DATA( tmp3 ) + i * size );
9868 arg6 = (
PLINT)(val6);
9873 arg8 = PyArray_DIMS( tmp7 )[0];
9874 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
9880 arg9 = (
PLINT)(val9);
9883 if ( tmp10 == NULL )
9885 arg10 =
Alen = PyArray_DIMS( tmp10 )[0];
9886 arg11 = (
PLINT *) PyArray_DATA( tmp10 );
9890 if ( tmp12 == NULL )
9892 if ( PyArray_DIMS( tmp12 )[0] !=
Alen )
9894 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
9897 arg12 = (
PLINT *) PyArray_DATA( tmp12 );
9899 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);
9946 PyObject *resultobj = 0;
9953 PyObject *swig_obj[2] ;
9960 PyObject *unicode_string;
9962 if ( !PyList_Check( swig_obj[0] ) )
9964 PyErr_SetString( PyExc_ValueError,
"Expecting a list" );
9967 tmp1 = PyList_Size( swig_obj[0] );
9969 arg2 = (
char **) malloc( (
size_t) ( tmp1 + 1 ) *
sizeof (
char * ) );
9970 for ( i = 0; i < tmp1; i++ )
9972 PyObject *s = PyList_GetItem( swig_obj[0], i );
9973 if ( PyString_Check( s ) )
9975 arg2[i] = PyString_AsString( s );
9977 else if ( PyUnicode_Check( s ) )
9980 unicode_string = PyUnicode_AsEncodedString( s,
"utf-8",
"Error ~" );
9981 arg2[i] = PyBytes_AS_STRING( unicode_string );
9986 PyErr_SetString( PyExc_ValueError,
"List items must be strings" );
9996 arg3 = (
PLINT)(val3);
10014 PyObject *resultobj = 0;
10018 PyArrayObject *tmp1 = NULL ;
10019 PyArrayObject *tmp3 = NULL ;
10020 PyObject *swig_obj[2] ;
10026 if ( tmp1 == NULL )
10028 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10029 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
10033 if ( tmp3 == NULL )
10035 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10037 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10040 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10042 plpat(arg1,(
int const *)arg2,(
int const *)arg3);
10063 PyObject *resultobj = 0;
10079 PyObject *swig_obj[5] ;
10087 arg1 = (
PLINT)(val1);
10092 arg2 = (
PLFLT)(val2);
10097 arg3 = (
PLFLT)(val3);
10102 arg4 = (
PLFLT)(val4);
10107 arg5 = (
PLFLT)(val5);
10108 plpath(arg1,arg2,arg3,arg4,arg5);
10117 PyObject *resultobj = 0;
10122 PyArrayObject *tmp1 = NULL ;
10123 PyArrayObject *tmp3 = NULL ;
10126 PyObject *swig_obj[3] ;
10132 if ( tmp1 == NULL )
10134 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10135 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10139 if ( tmp3 == NULL )
10141 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10143 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10146 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10152 arg4 = (
PLINT)(val4);
10153 plpoin(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
10174 PyObject *resultobj = 0;
10180 PyArrayObject *tmp1 = NULL ;
10181 PyArrayObject *tmp3 = NULL ;
10182 PyArrayObject *tmp4 = NULL ;
10185 PyObject *swig_obj[4] ;
10191 if ( tmp1 == NULL )
10193 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10194 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10198 if ( tmp3 == NULL )
10200 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10202 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10205 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10209 if ( tmp4 == NULL )
10211 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10213 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10216 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10222 arg5 = (
PLINT)(val5);
10223 plpoin3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,arg5);
10250 PyObject *resultobj = 0;
10257 PyArrayObject *tmp1 = NULL ;
10258 PyArrayObject *tmp3 = NULL ;
10259 PyArrayObject *tmp4 = NULL ;
10260 PyArrayObject *tmp5 = NULL ;
10263 PyObject *swig_obj[5] ;
10269 if ( tmp1 == NULL )
10271 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
10272 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
10276 if ( tmp3 == NULL )
10278 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10280 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10283 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
10287 if ( tmp4 == NULL )
10289 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10291 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10294 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10298 if ( tmp5 == NULL )
10300 if ( PyArray_DIMS( tmp5 )[0] <
Alen - 1 )
10302 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
10305 arg5 = (
PLINT *) PyArray_DATA( tmp5 );
10312 plpoly3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
int const *)arg5,arg6);
10345 PyObject *resultobj = 0;
10352 PyObject *swig_obj[2] ;
10360 arg1 = (
PLINT)(val1);
10365 arg2 = (
PLINT)(val2);
10375 PyObject *resultobj = 0;
10379 PyObject *swig_obj[1] ;
10383 swig_obj[0] = args;
10388 arg1 = (
PLINT)(val1);
10398 PyObject *resultobj = 0;
10418 PyObject *swig_obj[6] ;
10426 arg1 = (
PLFLT)(val1);
10431 arg2 = (
PLFLT)(val2);
10436 arg3 = (
PLFLT)(val3);
10441 arg4 = (
PLFLT)(val4);
10446 arg5 = (
PLFLT)(val5);
10451 arg6 = (
char *)(buf6);
10452 plptex(arg1,arg2,arg3,arg4,arg5,(
char const *)arg6);
10463 PyObject *resultobj = 0;
10498 PyObject *swig_obj[11] ;
10506 arg1 = (
PLFLT)(val1);
10511 arg2 = (
PLFLT)(val2);
10516 arg3 = (
PLFLT)(val3);
10521 arg4 = (
PLFLT)(val4);
10526 arg5 = (
PLFLT)(val5);
10531 arg6 = (
PLFLT)(val6);
10536 arg7 = (
PLFLT)(val7);
10541 arg8 = (
PLFLT)(val8);
10546 arg9 = (
PLFLT)(val9);
10551 arg10 = (
PLFLT)(val10);
10556 arg11 = (
char *)(buf11);
10557 plptex3(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(
char const *)arg11);
10568 PyObject *resultobj = 0;
10582 PyObject *resultobj = 0;
10595 PyObject *resultobj = 0;
10614 PyObject *swig_obj[3] ;
10625 arg1 = (
PLFLT)(val1);
10630 arg2 = (
PLFLT)(val2);
10635 arg3 = (
PLFLT)(val3);
10636 plrgbhls(arg1,arg2,arg3,arg4,arg5,arg6);
10663 PyObject *resultobj = 0;
10670 PyObject *swig_obj[2] ;
10678 arg1 = (
PLFLT)(val1);
10683 arg2 = (
PLFLT)(val2);
10693 PyObject *resultobj = 0;
10698 PyArrayObject *tmp1 = NULL ;
10699 PyArrayObject *tmp2 = NULL ;
10700 PyArrayObject *tmp3 = NULL ;
10701 PyObject *swig_obj[3] ;
10707 if ( tmp1 == NULL )
10709 Alen = PyArray_DIMS( tmp1 )[0];
10710 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10714 if ( tmp2 == NULL )
10716 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10718 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10721 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10725 if ( tmp3 == NULL )
10727 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10729 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10732 arg4 = PyArray_DIMS( tmp3 )[0];
10733 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10735 plscmap0((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10762 PyObject *resultobj = 0;
10768 PyArrayObject *tmp1 = NULL ;
10769 PyArrayObject *tmp2 = NULL ;
10770 PyArrayObject *tmp3 = NULL ;
10771 PyArrayObject *tmp4 = NULL ;
10772 PyObject *swig_obj[4] ;
10778 if ( tmp1 == NULL )
10780 Alen = PyArray_DIMS( tmp1 )[0];
10781 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10785 if ( tmp2 == NULL )
10787 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10789 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10792 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10796 if ( tmp3 == NULL )
10798 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10800 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10803 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10807 if ( tmp4 == NULL )
10809 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10811 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10814 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10815 arg5 = PyArray_DIMS( tmp4 )[0];
10817 plscmap0a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
10850 PyObject *resultobj = 0;
10854 PyObject *swig_obj[1] ;
10858 swig_obj[0] = args;
10863 arg1 = (
PLINT)(val1);
10873 PyObject *resultobj = 0;
10878 PyArrayObject *tmp1 = NULL ;
10879 PyArrayObject *tmp2 = NULL ;
10880 PyArrayObject *tmp3 = NULL ;
10881 PyObject *swig_obj[3] ;
10887 if ( tmp1 == NULL )
10889 Alen = PyArray_DIMS( tmp1 )[0];
10890 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10894 if ( tmp2 == NULL )
10896 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10898 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10901 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10905 if ( tmp3 == NULL )
10907 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10909 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10912 arg4 = PyArray_DIMS( tmp3 )[0];
10913 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10915 plscmap1((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,arg4);
10942 PyObject *resultobj = 0;
10948 PyArrayObject *tmp1 = NULL ;
10949 PyArrayObject *tmp2 = NULL ;
10950 PyArrayObject *tmp3 = NULL ;
10951 PyArrayObject *tmp4 = NULL ;
10952 PyObject *swig_obj[4] ;
10958 if ( tmp1 == NULL )
10960 Alen = PyArray_DIMS( tmp1 )[0];
10961 arg1 = (
PLINT *) PyArray_DATA( tmp1 );
10965 if ( tmp2 == NULL )
10967 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
10969 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10972 arg2 = (
PLINT *) PyArray_DATA( tmp2 );
10976 if ( tmp3 == NULL )
10978 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
10980 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10983 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
10987 if ( tmp4 == NULL )
10989 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
10991 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
10994 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
10995 arg5 = PyArray_DIMS( tmp4 )[0];
10997 plscmap1a((
int const *)arg1,(
int const *)arg2,(
int const *)arg3,(
double const *)arg4,arg5);
11030 PyObject *resultobj = 0;
11040 PyArrayObject *tmp2 = NULL ;
11041 PyArrayObject *tmp4 = NULL ;
11042 PyArrayObject *tmp5 = NULL ;
11043 PyArrayObject *tmp6 = NULL ;
11044 PyArrayObject *tmp7 = NULL ;
11045 PyObject *swig_obj[6] ;
11056 if ( tmp2 == NULL )
11058 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11059 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11063 if ( tmp4 == NULL )
11065 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11067 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11070 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11074 if ( tmp5 == NULL )
11076 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11078 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11081 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11085 if ( tmp6 == NULL )
11087 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11089 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11092 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11096 if ( tmp7 == NULL )
11098 if ( PyArray_DIMS( tmp7 )[0] <
Alen - 1 )
11100 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11103 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
11105 plscmap1l(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
int const *)arg7);
11144 PyObject *resultobj = 0;
11155 PyArrayObject *tmp2 = NULL ;
11156 PyArrayObject *tmp4 = NULL ;
11157 PyArrayObject *tmp5 = NULL ;
11158 PyArrayObject *tmp6 = NULL ;
11159 PyArrayObject *tmp7 = NULL ;
11160 PyArrayObject *tmp8 = NULL ;
11161 PyObject *swig_obj[7] ;
11172 if ( tmp2 == NULL )
11174 arg2 =
Alen = PyArray_DIMS( tmp2 )[0];
11175 arg3 = (
PLFLT *) PyArray_DATA( tmp2 );
11179 if ( tmp4 == NULL )
11181 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
11183 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11186 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
11190 if ( tmp5 == NULL )
11192 if ( PyArray_DIMS( tmp5 )[0] !=
Alen )
11194 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11197 arg5 = (
PLFLT *) PyArray_DATA( tmp5 );
11201 if ( tmp6 == NULL )
11203 if ( PyArray_DIMS( tmp6 )[0] !=
Alen )
11205 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11208 arg6 = (
PLFLT *) PyArray_DATA( tmp6 );
11212 if ( tmp7 == NULL )
11214 if ( PyArray_DIMS( tmp7 )[0] !=
Alen )
11216 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
11219 arg7 = (
PLFLT *) PyArray_DATA( tmp7 );
11223 if ( tmp8 == NULL )
11225 if ( PyArray_DIMS( tmp8 )[0] <
Alen - 1 )
11227 PyErr_SetString( PyExc_ValueError,
"Vector must be at least length of others minus 1." );
11230 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
11232 plscmap1la(arg1,arg2,(
double const *)arg3,(
double const *)arg4,(
double const *)arg5,(
double const *)arg6,(
double const *)arg7,(
int const *)arg8);
11277 PyObject *resultobj = 0;
11281 PyObject *swig_obj[1] ;
11285 swig_obj[0] = args;
11290 arg1 = (
PLINT)(val1);
11300 PyObject *resultobj = 0;
11307 PyObject *swig_obj[2] ;
11315 arg1 = (
PLFLT)(val1);
11320 arg2 = (
PLFLT)(val2);
11330 PyObject *resultobj = 0;
11363 PyObject *resultobj = 0;
11376 PyObject *swig_obj[4] ;
11384 arg1 = (
PLINT)(val1);
11389 arg2 = (
PLINT)(val2);
11394 arg3 = (
PLINT)(val3);
11399 arg4 = (
PLINT)(val4);
11400 plscol0(arg1,arg2,arg3,arg4);
11409 PyObject *resultobj = 0;
11425 PyObject *swig_obj[5] ;
11433 arg1 = (
PLINT)(val1);
11438 arg2 = (
PLINT)(val2);
11443 arg3 = (
PLINT)(val3);
11448 arg4 = (
PLINT)(val4);
11453 arg5 = (
PLFLT)(val5);
11454 plscol0a(arg1,arg2,arg3,arg4,arg5);
11463 PyObject *resultobj = 0;
11473 PyObject *swig_obj[3] ;
11481 arg1 = (
PLINT)(val1);
11486 arg2 = (
PLINT)(val2);
11491 arg3 = (
PLINT)(val3);
11501 PyObject *resultobj = 0;
11514 PyObject *swig_obj[4] ;
11522 arg1 = (
PLINT)(val1);
11527 arg2 = (
PLINT)(val2);
11532 arg3 = (
PLINT)(val3);
11537 arg4 = (
PLFLT)(val4);
11547 PyObject *resultobj = 0;
11551 PyObject *swig_obj[1] ;
11555 swig_obj[0] = args;
11560 arg1 = (
PLINT)(val1);
11570 PyObject *resultobj = 0;
11574 PyObject *swig_obj[1] ;
11578 swig_obj[0] = args;
11583 arg1 = (
PLINT)(val1);
11593 PyObject *resultobj = 0;
11598 PyObject *swig_obj[1] ;
11602 swig_obj[0] = args;
11607 arg1 = (
char *)(buf1);
11608 plsdev((
char const *)arg1);
11619 PyObject *resultobj = 0;
11632 PyObject *swig_obj[4] ;
11640 arg1 = (
PLFLT)(val1);
11645 arg2 = (
PLFLT)(val2);
11650 arg3 = (
PLFLT)(val3);
11655 arg4 = (
PLFLT)(val4);
11665 PyObject *resultobj = 0;
11684 PyObject *swig_obj[6] ;
11692 arg1 = (
PLINT)(val1);
11697 arg2 = (
PLINT)(val2);
11702 arg3 = (
PLINT)(val3);
11707 arg4 = (
PLINT)(val4);
11712 arg5 = (
PLFLT)(val5);
11717 arg6 = (
PLFLT)(val6);
11718 plsdimap(arg1,arg2,arg3,arg4,arg5,arg6);
11727 PyObject *resultobj = 0;
11731 PyObject *swig_obj[1] ;
11735 swig_obj[0] = args;
11740 arg1 = (
PLFLT)(val1);
11750 PyObject *resultobj = 0;
11763 PyObject *swig_obj[4] ;
11771 arg1 = (
PLFLT)(val1);
11776 arg2 = (
PLFLT)(val2);
11781 arg3 = (
PLFLT)(val3);
11786 arg4 = (
PLFLT)(val4);
11796 PyObject *resultobj = 0;
11809 PyObject *swig_obj[4] ;
11817 arg1 = (
PLFLT)(val1);
11822 arg2 = (
PLFLT)(val2);
11827 arg3 = (
PLFLT)(val3);
11832 arg4 = (
PLFLT)(val4);
11842 PyObject *resultobj = 0;
11843 unsigned int arg1 ;
11844 unsigned int val1 ;
11846 PyObject *swig_obj[1] ;
11850 swig_obj[0] = args;
11855 arg1 = (
unsigned int)(val1);
11865 PyObject *resultobj = 0;
11869 PyObject *swig_obj[1] ;
11873 swig_obj[0] = args;
11878 arg1 = (char)(val1);
11888 PyObject *resultobj = 0;
11897 PyObject *swig_obj[2] ;
11906 arg1 = (
char *)(buf1);
11911 arg2 = (
char *)(buf2);
11912 result = (
PLINT)
plsetopt((
char const *)arg1,(
char const *)arg2);
11925 PyObject *resultobj = 0;
11935 PyObject *swig_obj[3] ;
11943 arg1 = (
PLINT)(val1);
11948 arg2 = (
PLINT)(val2);
11953 arg3 = (
PLINT)(val3);
11963 PyObject *resultobj = 0;
11965 unsigned int val1 ;
11967 PyObject *swig_obj[1] ;
11971 swig_obj[0] = args;
11986 PyObject *resultobj = 0;
11991 PyObject *swig_obj[1] ;
11995 swig_obj[0] = args;
12000 arg1 = (
char *)(buf1);
12012 PyObject *resultobj = 0;
12022 PyObject *swig_obj[3] ;
12030 arg1 = (
PLINT)(val1);
12035 arg2 = (
PLINT)(val2);
12040 arg3 = (
PLINT)(val3);
12050 PyObject *resultobj = 0;
12068 PyArrayObject *tmp1 = NULL ;
12077 PyArrayObject *tmp9 = NULL ;
12086 PyObject *swig_obj[12] ;
12106 if ( tmp1 == NULL )
12108 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12109 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12111 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12112 for ( i = 0; i < arg2; i++ )
12113 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12119 arg5 = (
PLFLT)(val5);
12124 arg6 = (
PLFLT)(val6);
12129 arg7 = (
PLFLT)(val7);
12134 arg8 = (
PLFLT)(val8);
12137 if ( tmp9 == NULL )
12139 arg10 = PyArray_DIMS( tmp9 )[0];
12140 arg9 = (
PLFLT *) PyArray_DATA( tmp9 );
12146 arg11 = (
PLFLT)(val11);
12151 arg12 = (
PLINT)(val12);
12156 arg13 = (
PLFLT)(val13);
12161 arg15 = (
PLBOOL)(val15);
12162 if (swig_obj[10]) {
12165 if ( swig_obj[10] == Py_None )
12171 if ( !PyCallable_Check( (PyObject *) swig_obj[10] ) )
12173 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12180 if (swig_obj[11]) {
12182 if ( swig_obj[11] == Py_None )
12190 plshades((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(
double const *)arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17);
12225 PyObject *resultobj = 0;
12247 PyArrayObject *tmp1 = NULL ;
12276 PyObject *swig_obj[17] ;
12296 if ( tmp1 == NULL )
12298 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
12299 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
12301 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
12302 for ( i = 0; i < arg2; i++ )
12303 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
12309 arg5 = (
PLFLT)(val5);
12314 arg6 = (
PLFLT)(val6);
12319 arg7 = (
PLFLT)(val7);
12324 arg8 = (
PLFLT)(val8);
12329 arg9 = (
PLFLT)(val9);
12334 arg10 = (
PLFLT)(val10);
12339 arg11 = (
PLINT)(val11);
12344 arg12 = (
PLFLT)(val12);
12349 arg13 = (
PLFLT)(val13);
12354 arg14 = (
PLINT)(val14);
12359 arg15 = (
PLFLT)(val15);
12364 arg16 = (
PLINT)(val16);
12369 arg17 = (
PLFLT)(val17);
12374 arg19 = (
PLBOOL)(val19);
12375 if (swig_obj[15]) {
12378 if ( swig_obj[15] == Py_None )
12384 if ( !PyCallable_Check( (PyObject *) swig_obj[15] ) )
12386 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
12393 if (swig_obj[16]) {
12395 if ( swig_obj[16] == Py_None )
12403 plshade((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17,arg18,arg19,arg20,arg21);
12432 PyObject *resultobj = 0;
12436 PyObject *swig_obj[2] ;
12448 if ( swig_obj[0] == Py_None )
12454 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
12456 PyErr_SetString( PyExc_ValueError,
"label_func argument must be callable" );
12460 Py_XINCREF( (PyObject *) swig_obj[0] );
12479 PyObject *resultobj = 0;
12486 PyObject *swig_obj[2] ;
12494 arg1 = (
PLFLT)(val1);
12499 arg2 = (
PLFLT)(val2);
12509 PyObject *resultobj = 0;
12517 PyObject *swig_obj[3] ;
12525 arg1 = (
PLINT)(val1);
12530 arg2 = (
PLINT)(val2);
12532 int res;
void *
buf = 0;
12533#ifndef Py_LIMITED_API
12535 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12537#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12538#pragma GCC diagnostic push
12539#pragma GCC diagnostic ignored "-Wdeprecated"
12540#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12541#elif defined(_MSC_VER)
12542#pragma warning(push)
12543#pragma warning(disable: 4996)
12546 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12547#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12548#pragma GCC diagnostic pop
12549#elif defined(_MSC_VER)
12550#pragma warning(pop)
12557#ifndef Py_LIMITED_API
12559 PyBuffer_Release(&view);
12561 arg3 = (
void *)
buf;
12572 PyObject *resultobj = 0;
12580 PyObject *swig_obj[3] ;
12588 arg1 = (
PLINT)(val1);
12593 arg2 = (
PLINT)(val2);
12595 int res;
void *
buf = 0;
12596#ifndef Py_LIMITED_API
12598 res = PyObject_GetBuffer(swig_obj[2], &view, PyBUF_WRITABLE);
12600#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12601#pragma GCC diagnostic push
12602#pragma GCC diagnostic ignored "-Wdeprecated"
12603#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
12604#elif defined(_MSC_VER)
12605#pragma warning(push)
12606#pragma warning(disable: 4996)
12609 res = PyObject_AsWriteBuffer(swig_obj[2], &
buf, &size);
12610#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
12611#pragma GCC diagnostic pop
12612#elif defined(_MSC_VER)
12613#pragma warning(pop)
12620#ifndef Py_LIMITED_API
12622 PyBuffer_Release(&view);
12624 arg3 = (
void *)
buf;
12635 PyObject *resultobj = 0;
12642 PyObject *swig_obj[2] ;
12650 arg1 = (
PLFLT)(val1);
12655 arg2 = (
PLFLT)(val2);
12665 PyObject *resultobj = 0;
12669 PyObject *swig_obj[1] ;
12673 swig_obj[0] = args;
12678 arg1 = (
PLINT)(val1);
12688 PyObject *resultobj = 0;
12707 PyObject *swig_obj[6] ;
12715 arg1 = (
PLFLT)(val1);
12720 arg2 = (
PLFLT)(val2);
12725 arg3 = (
PLINT)(val3);
12730 arg4 = (
PLINT)(val4);
12735 arg5 = (
PLINT)(val5);
12740 arg6 = (
PLINT)(val6);
12741 plspage(arg1,arg2,arg3,arg4,arg5,arg6);
12750 PyObject *resultobj = 0;
12755 PyObject *swig_obj[1] ;
12759 swig_obj[0] = args;
12764 arg1 = (
char *)(buf1);
12776 PyObject *resultobj = 0;
12784 PyObject *swig_obj[2] ;
12792 arg1 = (
char *)(buf1);
12798 plspal1((
char const *)arg1,arg2);
12809 PyObject *resultobj = 0;
12813 PyObject *swig_obj[1] ;
12817 swig_obj[0] = args;
12832 PyObject *resultobj = 0;
12836 PyObject *swig_obj[1] ;
12840 swig_obj[0] = args;
12845 arg1 = (
PLINT)(val1);
12855 PyObject *resultobj = 0;
12862 PyObject *swig_obj[2] ;
12870 arg1 = (
PLINT)(val1);
12875 arg2 = (
PLINT)(val2);
12885 PyObject *resultobj = 0;
12892 PyObject *swig_obj[2] ;
12900 arg1 = (
PLFLT)(val1);
12905 arg2 = (
PLFLT)(val2);
12915 PyObject *resultobj = 0;
12922 PyObject *swig_obj[2] ;
12930 arg1 = (
PLINT)(val1);
12935 arg2 = (
PLINT)(val2);
12945 PyObject *resultobj = 0;
12956 PyObject *swig_obj[3] ;
12964 arg1 = (
char *)(buf1);
12969 arg2 = (
PLINT)(val2);
12974 arg3 = (
PLINT)(val3);
12975 plstart((
char const *)arg1,arg2,arg3);
12986 PyObject *resultobj = 0;
12990 PyObject *swig_obj[2] ;
13003 if ( swig_obj[0] == Py_None )
13009 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
13011 PyErr_SetString( PyExc_ValueError,
"coordinate transform argument must be callable" );
13033 PyObject *resultobj = 0;
13038 PyArrayObject *tmp1 = NULL ;
13039 PyArrayObject *tmp3 = NULL ;
13043 PyObject *swig_obj[3] ;
13049 if ( tmp1 == NULL )
13051 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13052 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13056 if ( tmp3 == NULL )
13058 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13060 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13063 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13069 arg4 = (
char *)(buf4);
13070 plstring(arg1,(
double const *)arg2,(
double const *)arg3,(
char const *)arg4);
13093 PyObject *resultobj = 0;
13099 PyArrayObject *tmp1 = NULL ;
13100 PyArrayObject *tmp3 = NULL ;
13101 PyArrayObject *tmp4 = NULL ;
13105 PyObject *swig_obj[4] ;
13111 if ( tmp1 == NULL )
13113 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13114 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13118 if ( tmp3 == NULL )
13120 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13122 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13125 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13129 if ( tmp4 == NULL )
13131 if ( PyArray_DIMS( tmp4 )[0] !=
Alen )
13133 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13136 arg4 = (
PLFLT *) PyArray_DATA( tmp4 );
13142 arg5 = (
char *)(buf5);
13143 plstring3(arg1,(
double const *)arg2,(
double const *)arg3,(
double const *)arg4,(
char const *)arg5);
13172 PyObject *resultobj = 0;
13185 PyObject *swig_obj[4] ;
13193 arg1 = (
PLINT)(val1);
13198 arg2 = (
PLINT)(val2);
13203 arg3 = (
PLFLT)(val3);
13208 arg4 = (
PLFLT)(val4);
13218 PyObject *resultobj = 0;
13235 char **arg17 = (
char **)0 ;
13269 PyArrayObject *tmp15 = NULL ;
13270 PyArrayObject *tmp16 = NULL ;
13271 char **tmp17 = NULL ;
13281 PyObject *swig_obj[19] ;
13290 arg2 = (
char *)(buf2);
13295 arg3 = (
char *)(buf3);
13300 arg4 = (
PLFLT)(val4);
13305 arg5 = (
PLFLT)(val5);
13310 arg6 = (
PLFLT)(val6);
13315 arg7 = (
PLFLT)(val7);
13320 arg8 = (
PLFLT)(val8);
13325 arg9 = (
PLFLT)(val9);
13330 arg10 = (
PLFLT)(val10);
13335 arg11 = (
PLBOOL)(val11);
13340 arg12 = (
PLBOOL)(val12);
13345 arg13 = (
PLINT)(val13);
13350 arg14 = (
PLINT)(val14);
13353 if ( tmp15 == NULL )
13355 Alen = PyArray_DIMS( tmp15 )[0];
13356 arg15 = (
PLINT *) PyArray_DATA( tmp15 );
13360 if ( tmp16 == NULL )
13362 if ( PyArray_DIMS( tmp16 )[0] !=
Alen )
13364 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13367 arg16 = (
PLINT *) PyArray_DATA( tmp16 );
13371 PyObject *elt, *unicode_string;
13373 if ( !PySequence_Check( swig_obj[15] ) ||
PySequence_Size( swig_obj[15] ) != 4 )
13375 PyErr_SetString( PyExc_ValueError,
"Requires a sequence of 4 strings." );
13380 PyErr_SetString( PyExc_ValueError,
"colline and styline args must be length 4." );
13383 tmp17 = (
char **) malloc(
sizeof (
char* ) * 4 );
13384 if ( tmp17 == NULL )
13387 for ( i = 0; i < 4; i++ )
13391 if ( PyString_Check( elt ) )
13393 arg17[i] = PyString_AsString( elt );
13395 else if ( PyUnicode_Check( elt ) )
13397 unicode_string = PyUnicode_AsEncodedString( elt,
"utf-8",
"Error ~" );
13398 arg17[i] = PyBytes_AS_STRING( unicode_string );
13400 if ( arg17[i] == NULL )
13411 arg18 = (
char *)(buf18);
13416 arg19 = (
char *)(buf19);
13421 arg20 = (
char *)(buf20);
13422 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);
13465 PyObject *resultobj = 0;
13469 PyObject *swig_obj[1] ;
13473 swig_obj[0] = args;
13478 arg1 = (
PLINT)(val1);
13488 PyObject *resultobj = 0;
13492 PyArrayObject *tmp1 = NULL ;
13493 PyArrayObject *tmp3 = NULL ;
13494 PyObject *swig_obj[2] ;
13500 if ( tmp1 == NULL )
13502 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13503 arg2 = (
PLINT *) PyArray_DATA( tmp1 );
13507 if ( tmp3 == NULL )
13509 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13511 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13514 arg3 = (
PLINT *) PyArray_DATA( tmp3 );
13516 plstyl(arg1,(
int const *)arg2,(
int const *)arg3);
13537 PyObject *resultobj = 0;
13542 PyArrayObject *tmp1 = NULL ;
13543 PyArrayObject *tmp2 = NULL ;
13546 PyObject *swig_obj[3] ;
13551 if ( swig_obj[0] != Py_None )
13554 if ( tmp1 == NULL )
13556 Alen = PyArray_DIMS( tmp1 )[0];
13557 arg1 = (
PLFLT *) PyArray_DATA( tmp1 );
13566 if ( swig_obj[1] != Py_None )
13569 if ( tmp2 == NULL )
13571 if ( PyArray_DIMS( tmp2 )[0] !=
Alen )
13573 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13576 arg2 = (
PLFLT *) PyArray_DATA( tmp2 );
13577 arg3 = PyArray_DIMS( tmp2 )[0];
13590 plsvect((
double const *)arg1,(
double const *)arg2,arg3,arg4);
13611 PyObject *resultobj = 0;
13624 PyObject *swig_obj[4] ;
13632 arg1 = (
PLFLT)(val1);
13637 arg2 = (
PLFLT)(val2);
13642 arg3 = (
PLFLT)(val3);
13647 arg4 = (
PLFLT)(val4);
13648 plsvpa(arg1,arg2,arg3,arg4);
13657 PyObject *resultobj = 0;
13664 PyObject *swig_obj[2] ;
13672 arg1 = (
PLINT)(val1);
13677 arg2 = (
PLINT)(val2);
13687 PyObject *resultobj = 0;
13694 PyObject *swig_obj[2] ;
13702 arg1 = (
PLINT)(val1);
13707 arg2 = (
PLINT)(val2);
13717 PyObject *resultobj = 0;
13722 PyArrayObject *tmp1 = NULL ;
13723 PyArrayObject *tmp3 = NULL ;
13726 PyObject *swig_obj[3] ;
13732 if ( tmp1 == NULL )
13734 arg1 =
Alen = PyArray_DIMS( tmp1 )[0];
13735 arg2 = (
PLFLT *) PyArray_DATA( tmp1 );
13739 if ( tmp3 == NULL )
13741 if ( PyArray_DIMS( tmp3 )[0] !=
Alen )
13743 PyErr_SetString( PyExc_ValueError,
"Vectors must be same length." );
13746 arg3 = (
PLFLT *) PyArray_DATA( tmp3 );
13752 arg4 = (
PLINT)(val4);
13753 plsym(arg1,(
double const *)arg2,(
double const *)arg3,arg4);
13774 PyObject *resultobj = 0;
13781 PyObject *swig_obj[2] ;
13789 arg1 = (
PLINT)(val1);
13794 arg2 = (
PLINT)(val2);
13804 PyObject *resultobj = 0;
13817 PyObject *resultobj = 0;
13822 PyObject *swig_obj[1] ;
13826 swig_obj[0] = args;
13831 arg1 = (
char *)(buf1);
13843 PyObject *resultobj = 0;
13847 PyObject *swig_obj[1] ;
13851 swig_obj[0] = args;
13856 arg1 = (
PLFLT)(val1);
13866 PyObject *resultobj = 0;
13874 PyArrayObject *tmp1 = NULL ;
13875 PyArrayObject *tmp2 = NULL ;
13878 PyObject *swig_obj[5] ;
13892 if ( tmp1 == NULL )
13894 Xlen = PyArray_DIMS( tmp1 )[0];
13895 Ylen = PyArray_DIMS( tmp1 )[1];
13898 for ( i = 0; i <
Xlen; i++ )
13899 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
13904 if ( tmp2 == NULL )
13906 if (
Xlen != PyArray_DIMS( tmp2 )[0] ||
Ylen != PyArray_DIMS( tmp2 )[1] )
13908 PyErr_SetString( PyExc_ValueError,
"Vectors must match matrix." );
13911 arg3 = PyArray_DIMS( tmp2 )[0];
13912 arg4 = PyArray_DIMS( tmp2 )[1];
13914 arg2 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg3 );
13915 for ( i = 0; i < arg3; i++ )
13916 arg2[i] = ( (
PLFLT *) PyArray_DATA( tmp2 ) + i * size );
13922 arg5 = (
PLFLT)(val5);
13926 if ( swig_obj[3] == Py_None )
13932 if ( !PyCallable_Check( (PyObject *) swig_obj[3] ) )
13934 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
13943 if ( swig_obj[4] == Py_None )
13951 plvect((
double const **)arg1,(
double const **)arg2,arg3,arg4,arg5,arg6,arg7);
13988 PyObject *resultobj = 0;
14004 PyObject *swig_obj[5] ;
14012 arg1 = (
PLFLT)(val1);
14017 arg2 = (
PLFLT)(val2);
14022 arg3 = (
PLFLT)(val3);
14027 arg4 = (
PLFLT)(val4);
14032 arg5 = (
PLFLT)(val5);
14033 plvpas(arg1,arg2,arg3,arg4,arg5);
14042 PyObject *resultobj = 0;
14055 PyObject *swig_obj[4] ;
14063 arg1 = (
PLFLT)(val1);
14068 arg2 = (
PLFLT)(val2);
14073 arg3 = (
PLFLT)(val3);
14078 arg4 = (
PLFLT)(val4);
14079 plvpor(arg1,arg2,arg3,arg4);
14088 PyObject *resultobj = 0;
14101 PyObject *resultobj = 0;
14135 PyObject *swig_obj[11] ;
14143 arg1 = (
PLFLT)(val1);
14148 arg2 = (
PLFLT)(val2);
14153 arg3 = (
PLFLT)(val3);
14158 arg4 = (
PLFLT)(val4);
14163 arg5 = (
PLFLT)(val5);
14168 arg6 = (
PLFLT)(val6);
14173 arg7 = (
PLFLT)(val7);
14178 arg8 = (
PLFLT)(val8);
14183 arg9 = (
PLFLT)(val9);
14188 arg10 = (
PLFLT)(val10);
14193 arg11 = (
PLFLT)(val11);
14194 plw3d(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
14203 PyObject *resultobj = 0;
14207 PyObject *swig_obj[1] ;
14211 swig_obj[0] = args;
14216 arg1 = (
PLFLT)(val1);
14226 PyObject *resultobj = 0;
14239 PyObject *swig_obj[4] ;
14247 arg1 = (
PLFLT)(val1);
14252 arg2 = (
PLFLT)(val2);
14257 arg3 = (
PLFLT)(val3);
14262 arg4 = (
PLFLT)(val4);
14263 plwind(arg1,arg2,arg3,arg4);
14272 PyObject *resultobj = 0;
14279 PyObject *swig_obj[1] ;
14284 swig_obj[0] = args;
14305 PyObject *resultobj = 0;
14323 PyObject *swig_obj[6] ;
14329 if ( swig_obj[0] == Py_None )
14335 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14337 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14347 arg2 = (
char *)(buf2);
14352 arg3 = (
PLFLT)(val3);
14357 arg4 = (
PLFLT)(val4);
14362 arg5 = (
PLFLT)(val5);
14367 arg6 = (
PLFLT)(val6);
14368 plmap(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6);
14385 PyObject *resultobj = 0;
14405 PyArrayObject *tmp7 = NULL ;
14406 PyObject *swig_obj[7] ;
14412 if ( swig_obj[0] == Py_None )
14418 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14420 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14430 arg2 = (
char *)(buf2);
14435 arg3 = (
PLFLT)(val3);
14440 arg4 = (
PLFLT)(val4);
14445 arg5 = (
PLFLT)(val5);
14450 arg6 = (
PLFLT)(val6);
14452 if ( swig_obj[6] != Py_None )
14455 if ( tmp7 == NULL )
14457 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14458 arg8 = PyArray_DIMS( tmp7 )[0];
14466 plmapline(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14489 PyObject *resultobj = 0;
14513 PyArrayObject *tmp8 = NULL ;
14514 PyObject *swig_obj[8] ;
14520 if ( swig_obj[0] == Py_None )
14526 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14528 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14538 arg2 = (
char *)(buf2);
14543 arg3 = (
char *)(buf3);
14548 arg4 = (
PLFLT)(val4);
14553 arg5 = (
PLFLT)(val5);
14558 arg6 = (
PLFLT)(val6);
14563 arg7 = (
PLFLT)(val7);
14565 if ( swig_obj[7] != Py_None )
14568 if ( tmp8 == NULL )
14570 arg8 = (
PLINT *) PyArray_DATA( tmp8 );
14571 arg9 = PyArray_DIMS( tmp8 )[0];
14579 plmapstring(arg1,(
char const *)arg2,(
char const *)arg3,arg4,arg5,arg6,arg7,(
int const *)arg8,arg9);
14604 PyObject *resultobj = 0;
14638 PyObject *swig_obj[11] ;
14644 if ( swig_obj[0] == Py_None )
14650 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14652 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14662 arg2 = (
char *)(buf2);
14667 arg3 = (
PLFLT)(val3);
14672 arg4 = (
PLFLT)(val4);
14677 arg5 = (
PLFLT)(val5);
14682 arg6 = (
char *)(buf6);
14687 arg7 = (
PLFLT)(val7);
14692 arg8 = (
PLFLT)(val8);
14697 arg9 = (
PLFLT)(val9);
14702 arg10 = (
PLFLT)(val10);
14707 arg11 = (
PLINT)(val11);
14708 plmaptex(arg1,(
char const *)arg2,arg3,arg4,arg5,(
char const *)arg6,arg7,arg8,arg9,arg10,arg11);
14727 PyObject *resultobj = 0;
14747 PyArrayObject *tmp7 = NULL ;
14748 PyObject *swig_obj[7] ;
14754 if ( swig_obj[0] == Py_None )
14760 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14762 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14772 arg2 = (
char *)(buf2);
14777 arg3 = (
PLFLT)(val3);
14782 arg4 = (
PLFLT)(val4);
14787 arg5 = (
PLFLT)(val5);
14792 arg6 = (
PLFLT)(val6);
14794 if ( swig_obj[6] != Py_None )
14797 if ( tmp7 == NULL )
14799 arg7 = (
PLINT *) PyArray_DATA( tmp7 );
14800 arg8 = PyArray_DIMS( tmp7 )[0];
14808 plmapfill(arg1,(
char const *)arg2,arg3,arg4,arg5,arg6,(
int const *)arg7,arg8);
14831 PyObject *resultobj = 0;
14851 PyObject *swig_obj[7] ;
14857 if ( swig_obj[0] == Py_None )
14863 if ( !PyCallable_Check( (PyObject *) swig_obj[0] ) )
14865 PyErr_SetString( PyExc_ValueError,
"mapform argument must be callable" );
14875 arg2 = (
PLFLT)(val2);
14880 arg3 = (
PLFLT)(val3);
14885 arg4 = (
PLFLT)(val4);
14890 arg5 = (
PLFLT)(val5);
14895 arg6 = (
PLFLT)(val6);
14900 arg7 = (
PLFLT)(val7);
14916 PyObject *resultobj = 0;
14930 PyArrayObject *tmp1 = NULL ;
14951 PyObject *swig_obj[11] ;
14958 if ( tmp1 == NULL )
14960 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
14961 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
14963 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
14964 for ( i = 0; i < arg2; i++ )
14965 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
14971 arg4 = (
PLFLT)(val4);
14976 arg5 = (
PLFLT)(val5);
14981 arg6 = (
PLFLT)(val6);
14986 arg7 = (
PLFLT)(val7);
14991 arg8 = (
PLFLT)(val8);
14996 arg9 = (
PLFLT)(val9);
15001 arg10 = (
PLFLT)(val10);
15006 arg11 = (
PLFLT)(val11);
15011 arg12 = (
PLFLT)(val12);
15016 arg13 = (
PLFLT)(val13);
15017 plimage((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15034 PyObject *resultobj = 0;
15048 PyArrayObject *tmp1 = NULL ;
15065 PyObject *swig_obj[11] ;
15079 if ( tmp1 == NULL )
15081 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15082 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15084 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15085 for ( i = 0; i < arg2; i++ )
15086 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15092 arg4 = (
PLFLT)(val4);
15097 arg5 = (
PLFLT)(val5);
15102 arg6 = (
PLFLT)(val6);
15107 arg7 = (
PLFLT)(val7);
15112 arg8 = (
PLFLT)(val8);
15117 arg9 = (
PLFLT)(val9);
15122 arg10 = (
PLFLT)(val10);
15127 arg11 = (
PLFLT)(val11);
15131 if ( swig_obj[9] == Py_None )
15137 if ( !PyCallable_Check( (PyObject *) swig_obj[9] ) )
15139 PyErr_SetString( PyExc_ValueError,
"pltr argument must be callable" );
15146 if (swig_obj[10]) {
15148 if ( swig_obj[10] == Py_None )
15156 plimagefr((
double const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
15185 PyObject *resultobj = 0;
15198 PyObject *resultobj = 0;
15211 PyObject *resultobj = 0;
15220 PyObject *swig_obj[2] ;
15228 arg1 = (
char *)(buf1);
15233 arg2 = (
char *)(buf2);
15234 plSetUsage((
char const *)arg1,(
char const *)arg2);
15247 PyObject *resultobj = 0;
15260 PyObject *resultobj = 0;
15266 PyArrayObject *tmp1 = NULL ;
15271 PyObject *swig_obj[1] ;
15277 swig_obj[0] = args;
15281 if ( tmp1 == NULL )
15283 Xlen = arg2 = PyArray_DIMS( tmp1 )[0];
15284 Ylen = arg3 = PyArray_DIMS( tmp1 )[1];
15286 arg1 = (
PLFLT **) malloc(
sizeof (
PLFLT* ) * (
size_t) arg2 );
15287 for ( i = 0; i < arg2; i++ )
15288 arg1[i] = ( (
PLFLT *) PyArray_DATA( tmp1 ) + i * size );
15319 PyObject *resultobj = 0;
15323 PyObject *swig_obj[1] ;
15328 swig_obj[0] = args;
15376 "Set format of numerical label for contours\n"
15380 " Set format of numerical label for contours.\n"
15382 " Redacted form: pl_setcontlabelformat(lexp, sigdig)\n"
15384 " This function is used example 9.\n"
15390 "pl_setcontlabelformat(lexp, sigdig)\n"
15394 " lexp (PLINT, input) : If the contour numerical label is greater\n"
15395 " than 10^(lexp) or less than 10^(-lexp), then the exponential\n"
15396 " format is used. Default value of lexp is 4.\n"
15398 " sigdig (PLINT, input) : Number of significant digits. Default\n"
15403 "Set parameters of contour labelling other than format of numerical label\n"
15407 " Set parameters of contour labelling other than those handled by\n"
15408 " pl_setcontlabelformat.\n"
15410 " Redacted form: pl_setcontlabelparam(offset, size, spacing, active)\n"
15412 " This function is used in example 9.\n"
15418 "pl_setcontlabelparam(offset, size, spacing, active)\n"
15422 " offset (PLFLT, input) : Offset of label from contour line (if set\n"
15423 " to 0.0, labels are printed on the lines). Default value is 0.006.\n"
15425 " size (PLFLT, input) : Font height for contour labels (normalized).\n"
15426 " Default value is 0.3.\n"
15428 " spacing (PLFLT, input) : Spacing parameter for contour labels.\n"
15429 " Default value is 0.1.\n"
15431 " active (PLINT, input) : Activate labels. Set to 1 if you want\n"
15432 " contour labels on. Default is off (0).\n"
15436 "Advance the (sub-)page\n"
15440 " Advances to the next subpage if sub=0, performing a page advance if\n"
15441 " there are no remaining subpages on the current page. If subpages\n"
15442 " aren't being used, pladv(0) will always advance the page. If page>0,\n"
15443 " PLplot switches to the specified subpage. Note that this allows you\n"
15444 " to overwrite a plot on the specified subpage; if this is not what you\n"
15445 " intended, use pleop followed by plbop to first advance the page. This\n"
15446 " routine is called automatically (with page=0) by plenv, but if plenv\n"
15447 " is not used, pladv must be called after initializing PLplot but before\n"
15448 " defining the viewport.\n"
15450 " Redacted form: pladv(page)\n"
15452 " This function is used in examples 1, 2, 4, 6-12, 14-18, 20, 21, 23-27,\n"
15463 " page (PLINT, input) : Specifies the subpage number (starting from 1\n"
15464 " in the top left corner and increasing along the rows) to which to\n"
15465 " advance. Set to zero to advance to the next subpage (or to the\n"
15466 " next page if subpages are not being used).\n"
15470 "Draw a circular or elliptical arc\n"
15474 " Draw a possibly filled arc centered at x, y with semimajor axis a and\n"
15475 " semiminor axis b, starting at angle1 and ending at angle2.\n"
15477 " Redacted form: General: plarc(x, y, a, b, angle1, angle2, rotate,\n"
15481 " This function is used in examples 3 and 27.\n"
15487 "plarc(x, y, a, b, angle1, angle2, rotate, fill)\n"
15491 " x (PLFLT, input) : X coordinate of arc center.\n"
15493 " y (PLFLT, input) : Y coordinate of arc center.\n"
15495 " a (PLFLT, input) : Length of the semimajor axis of the arc.\n"
15497 " b (PLFLT, input) : Length of the semiminor axis of the arc.\n"
15499 " angle1 (PLFLT, input) : Starting angle of the arc relative to the\n"
15500 " semimajor axis.\n"
15502 " angle2 (PLFLT, input) : Ending angle of the arc relative to the\n"
15503 " semimajor axis.\n"
15505 " rotate (PLFLT, input) : Angle of the semimajor axis relative to the\n"
15508 " fill (PLBOOL, input) : Draw a filled arc.\n"
15512 "Draw a box with axes, etc. with arbitrary origin\n"
15516 " Draws a box around the currently defined viewport with arbitrary\n"
15517 " world-coordinate origin specified by x0 and y0 and labels it with\n"
15518 " world coordinate values appropriate to the window. Thus plaxes should\n"
15519 " only be called after defining both viewport and window. The ascii\n"
15520 " character strings xopt and yopt specify how the box should be drawn as\n"
15521 " described below. If ticks and/or subticks are to be drawn for a\n"
15522 " particular axis, the tick intervals and number of subintervals may be\n"
15523 " specified explicitly, or they may be defaulted by setting the\n"
15524 " appropriate arguments to zero.\n"
15526 " Redacted form: General: plaxes(x0, y0, xopt, xtick, nxsub, yopt,\n"
15530 " This function is not used in any examples.\n"
15536 "plaxes(x0, y0, xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15540 " x0 (PLFLT, input) : World X coordinate of origin.\n"
15542 " y0 (PLFLT, input) : World Y coordinate of origin.\n"
15544 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15545 " options for the x axis. The string can include any combination of\n"
15546 " the following letters (upper or lower case) in any order: a: Draws\n"
15547 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15549 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15550 " c: Draws top (X) or right (Y) edge of frame.\n"
15551 " d: Plot labels as date / time. Values are assumed to be\n"
15552 " seconds since the epoch (as used by gmtime).\n"
15553 " f: Always use fixed point numeric labels.\n"
15554 " g: Draws a grid at the major tick interval.\n"
15555 " h: Draws a grid at the minor tick interval.\n"
15556 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15558 " l: Labels axis logarithmically. This only affects the labels,\n"
15559 " not the data, and so it is necessary to compute the logarithms\n"
15560 " of data points before passing them to any of the drawing\n"
15562 " m: Writes numeric labels at major tick intervals in the\n"
15563 " unconventional location (above box for X, right of box for Y).\n"
15564 " n: Writes numeric labels at major tick intervals in the\n"
15565 " conventional location (below box for X, left of box for Y).\n"
15566 " o: Use custom labelling function to generate axis label text.\n"
15567 " The custom labelling function can be defined with the\n"
15568 " plslabelfunc command.\n"
15569 " s: Enables subticks between major ticks, only valid if t is\n"
15570 " also specified.\n"
15571 " t: Draws major ticks.\n"
15572 " u: Exactly like \"b\" except don't draw edge line.\n"
15573 " w: Exactly like \"c\" except don't draw edge line.\n"
15574 " x: Exactly like \"t\" (including the side effect of the\n"
15575 " numerical labels for the major ticks) except exclude drawing\n"
15576 " the major and minor tick marks.\n"
15579 " xtick (PLFLT, input) : World coordinate interval between major\n"
15580 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15581 " generates a suitable tick interval.\n"
15583 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15584 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15585 " generates a suitable minor tick interval.\n"
15587 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15588 " options for the y axis. The string can include any combination of\n"
15589 " the letters defined above for xopt, and in addition may contain:\n"
15590 " v: Write numeric labels for the y axis parallel to the base of the\n"
15591 " graph, rather than parallel to the axis.\n"
15594 " ytick (PLFLT, input) : World coordinate interval between major\n"
15595 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15596 " generates a suitable tick interval.\n"
15598 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15599 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15600 " generates a suitable minor tick interval.\n"
15604 "Plot a histogram from binned data\n"
15608 " Plots a histogram consisting of nbin bins. The value associated with\n"
15609 " the i'th bin is placed in x[i], and the number of points in the bin is\n"
15610 " placed in y[i]. For proper operation, the values in x[i] must form a\n"
15611 " strictly increasing sequence. By default, x[i] is the left-hand edge\n"
15612 " of the i'th bin. If opt=PL_BIN_CENTRED is used, the bin boundaries are\n"
15613 " placed midway between the values in the x vector. Also see plhist for\n"
15614 " drawing histograms from unbinned data.\n"
15616 " Redacted form: General: plbin(x, y, opt)\n"
15617 " Python: plbin(nbin, x, y, opt)\n"
15620 " This function is not used in any examples.\n"
15626 "plbin(nbin, x, y, opt)\n"
15630 " nbin (PLINT, input) : Number of bins (i.e., number of values in x\n"
15631 " and y vectors.)\n"
15633 " x (PLFLT_VECTOR, input) : A vector containing values associated\n"
15634 " with bins. These must form a strictly increasing sequence.\n"
15636 " y (PLFLT_VECTOR, input) : A vector containing a number which is\n"
15637 " proportional to the number of points in each bin. This is a PLFLT\n"
15638 " (instead of PLINT) vector so as to allow histograms of\n"
15639 " probabilities, etc.\n"
15641 " opt (PLINT, input) : Is a combination of several flags:\n"
15642 " opt=PL_BIN_DEFAULT: The x represent the lower bin boundaries, the\n"
15643 " outer bins are expanded to fill up the entire x-axis and bins of\n"
15644 " zero height are simply drawn.\n"
15645 " opt=PL_BIN_CENTRED|...: The bin boundaries are to be midway\n"
15646 " between the x values. If the values in x are equally spaced,\n"
15647 " the values are the center values of the bins.\n"
15648 " opt=PL_BIN_NOEXPAND|...: The outer bins are drawn with equal\n"
15649 " size as the ones inside.\n"
15650 " opt=PL_BIN_NOEMPTY|...: Bins with zero height are not drawn\n"
15651 " (there is a gap for such bins).\n"
15655 "Calculate broken-down time from continuous time for the current stream\n"
15659 " Calculate broken-down time; year, month, day, hour, min, sec; from\n"
15660 " continuous time, ctime for the current stream. This function is the\n"
15661 " inverse of plctime.\n"
15663 " The PLplot definition of broken-down time is a calendar time that\n"
15664 " completely ignores all time zone offsets, i.e., it is the user's\n"
15665 " responsibility to apply those offsets (if so desired) before using the\n"
15666 " PLplot time API. By default broken-down time is defined using the\n"
15667 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
15668 " continuous time is defined as the number of seconds since the Unix\n"
15669 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
15670 " broken-down and continuous time are possible, see plconfigtime.\n"
15672 " Redacted form: General: plbtime(year, month, day, hour, min, sec,\n"
15676 " This function is used in example 29.\n"
15682 "plbtime(year, month, day, hour, min, sec, ctime)\n"
15686 " year (PLINT_NC_SCALAR, output) : Returned value of years with\n"
15687 " positive values corresponding to CE (i.e., 1 = 1 CE, etc.) and\n"
15688 " non-negative values corresponding to BCE (e.g., 0 = 1 BCE, -1 = 2\n"
15691 " month (PLINT_NC_SCALAR, output) : Returned value of month within\n"
15692 " the year in the range from 0 (January) to 11 (December).\n"
15694 " day (PLINT_NC_SCALAR, output) : Returned value of day within the\n"
15695 " month in the range from 1 to 31.\n"
15697 " hour (PLINT_NC_SCALAR, output) : Returned value of hour within the\n"
15698 " day in the range from 0 to 23.\n"
15700 " min (PLINT_NC_SCALAR, output) : Returned value of minute within the\n"
15701 " hour in the range from 0 to 59\n"
15703 " sec (PLFLT_NC_SCALAR, output) : Returned value of second within the\n"
15704 " minute in range from 0. to 60.\n"
15706 " ctime (PLFLT, input) : Continuous time from which the broken-down\n"
15707 " time is calculated.\n"
15711 "Begin a new page\n"
15715 " Begins a new page. For a file driver, the output file is opened if\n"
15716 " necessary. Advancing the page via pleop and plbop is useful when a\n"
15717 " page break is desired at a particular point when plotting to subpages.\n"
15718 " Another use for pleop and plbop is when plotting pages to different\n"
15719 " files, since you can manually set the file name by calling plsfnam\n"
15720 " after the call to pleop. (In fact some drivers may only support a\n"
15721 " single page per file, making this a necessity.) One way to handle\n"
15722 " this case automatically is to page advance via pladv, but enable\n"
15723 " familying (see plsfam) with a small limit on the file size so that a\n"
15724 " new family member file will be created on each page break.\n"
15726 " Redacted form: plbop()\n"
15728 " This function is used in examples 2 and 20.\n"
15738 "Draw a box with axes, etc\n"
15742 " Draws a box around the currently defined viewport, and labels it with\n"
15743 " world coordinate values appropriate to the window. Thus plbox should\n"
15744 " only be called after defining both viewport and window. The ascii\n"
15745 " character strings xopt and yopt specify how the box should be drawn as\n"
15746 " described below. If ticks and/or subticks are to be drawn for a\n"
15747 " particular axis, the tick intervals and number of subintervals may be\n"
15748 " specified explicitly, or they may be defaulted by setting the\n"
15749 " appropriate arguments to zero.\n"
15751 " Redacted form: General: plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15754 " This function is used in examples 1, 2, 4, 6, 6-12, 14-18, 21, 23-26,\n"
15761 "plbox(xopt, xtick, nxsub, yopt, ytick, nysub)\n"
15765 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15766 " options for the x axis. The string can include any combination of\n"
15767 " the following letters (upper or lower case) in any order: a: Draws\n"
15768 " axis, X-axis is horizontal line (y=0), and Y-axis is vertical line\n"
15770 " b: Draws bottom (X) or left (Y) edge of frame.\n"
15771 " c: Draws top (X) or right (Y) edge of frame.\n"
15772 " d: Plot labels as date / time. Values are assumed to be\n"
15773 " seconds since the epoch (as used by gmtime).\n"
15774 " f: Always use fixed point numeric labels.\n"
15775 " g: Draws a grid at the major tick interval.\n"
15776 " h: Draws a grid at the minor tick interval.\n"
15777 " i: Inverts tick marks, so they are drawn outwards, rather than\n"
15779 " l: Labels axis logarithmically. This only affects the labels,\n"
15780 " not the data, and so it is necessary to compute the logarithms\n"
15781 " of data points before passing them to any of the drawing\n"
15783 " m: Writes numeric labels at major tick intervals in the\n"
15784 " unconventional location (above box for X, right of box for Y).\n"
15785 " n: Writes numeric labels at major tick intervals in the\n"
15786 " conventional location (below box for X, left of box for Y).\n"
15787 " o: Use custom labelling function to generate axis label text.\n"
15788 " The custom labelling function can be defined with the\n"
15789 " plslabelfunc command.\n"
15790 " s: Enables subticks between major ticks, only valid if t is\n"
15791 " also specified.\n"
15792 " t: Draws major ticks.\n"
15793 " u: Exactly like \"b\" except don't draw edge line.\n"
15794 " w: Exactly like \"c\" except don't draw edge line.\n"
15795 " x: Exactly like \"t\" (including the side effect of the\n"
15796 " numerical labels for the major ticks) except exclude drawing\n"
15797 " the major and minor tick marks.\n"
15800 " xtick (PLFLT, input) : World coordinate interval between major\n"
15801 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15802 " generates a suitable tick interval.\n"
15804 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15805 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15806 " generates a suitable minor tick interval.\n"
15808 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15809 " options for the y axis. The string can include any combination of\n"
15810 " the letters defined above for xopt, and in addition may contain:\n"
15811 " v: Write numeric labels for the y axis parallel to the base of the\n"
15812 " graph, rather than parallel to the axis.\n"
15815 " ytick (PLFLT, input) : World coordinate interval between major\n"
15816 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15817 " generates a suitable tick interval.\n"
15819 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15820 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15821 " generates a suitable minor tick interval.\n"
15825 "Draw a box with axes, etc, in 3-d\n"
15829 " Draws axes, numeric and text labels for a three-dimensional surface\n"
15830 " plot. For a more complete description of three-dimensional plotting\n"
15831 " see the PLplot documentation.\n"
15833 " Redacted form: General: plbox3(xopt, xlabel, xtick, nxsub, yopt,\n"
15834 " ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15837 " This function is used in examples 8, 11, 18, and 21.\n"
15843 "plbox3(xopt, xlabel, xtick, nxsub, yopt, ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)\n"
15847 " xopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15848 " options for the x axis. The string can include any combination of\n"
15849 " the following letters (upper or lower case) in any order: b: Draws\n"
15850 " axis at base, at height z=\n"
15851 " zmin where zmin is defined by call to plw3d. This character must be\n"
15852 " specified in order to use any of the other options.\n"
15853 " d: Plot labels as date / time. Values are assumed to be\n"
15854 " seconds since the epoch (as used by gmtime).\n"
15855 " f: Always use fixed point numeric labels.\n"
15856 " i: Inverts tick marks, so they are drawn downwards, rather\n"
15858 " l: Labels axis logarithmically. This only affects the labels,\n"
15859 " not the data, and so it is necessary to compute the logarithms\n"
15860 " of data points before passing them to any of the drawing\n"
15862 " n: Writes numeric labels at major tick intervals.\n"
15863 " o: Use custom labelling function to generate axis label text.\n"
15864 " The custom labelling function can be defined with the\n"
15865 " plslabelfunc command.\n"
15866 " s: Enables subticks between major ticks, only valid if t is\n"
15867 " also specified.\n"
15868 " t: Draws major ticks.\n"
15869 " u: If this is specified, the text label for the axis is\n"
15870 " written under the axis.\n"
15873 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15874 " the text label for the x axis. It is only drawn if u is in the\n"
15877 " xtick (PLFLT, input) : World coordinate interval between major\n"
15878 " ticks on the x axis. If it is set to zero, PLplot automatically\n"
15879 " generates a suitable tick interval.\n"
15881 " nxsub (PLINT, input) : Number of subintervals between major x axis\n"
15882 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15883 " generates a suitable minor tick interval.\n"
15885 " yopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15886 " options for the y axis. The string is interpreted in the same way\n"
15889 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15890 " the text label for the y axis. It is only drawn if u is in the\n"
15893 " ytick (PLFLT, input) : World coordinate interval between major\n"
15894 " ticks on the y axis. If it is set to zero, PLplot automatically\n"
15895 " generates a suitable tick interval.\n"
15897 " nysub (PLINT, input) : Number of subintervals between major y axis\n"
15898 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15899 " generates a suitable minor tick interval.\n"
15901 " zopt (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
15902 " options for the z axis. The string can include any combination of\n"
15903 " the following letters (upper or lower case) in any order: b: Draws\n"
15904 " z axis to the left of the surface plot.\n"
15905 " c: Draws z axis to the right of the surface plot.\n"
15906 " d: Draws grid lines parallel to the x-y plane behind the\n"
15907 " figure. These lines are not drawn until after plot3d or\n"
15908 " plmesh are called because of the need for hidden line removal.\n"
15909 " e: Plot labels as date / time. Values are assumed to be\n"
15910 " seconds since the epoch (as used by gmtime). Note this\n"
15911 " suboption is interpreted the same as the d suboption for xopt\n"
15912 " and yopt, but it has to be identified as e for zopt since d\n"
15913 " has already been used for the different purpose above.\n"
15914 " f: Always use fixed point numeric labels.\n"
15915 " i: Inverts tick marks, so they are drawn away from the center.\n"
15916 " l: Labels axis logarithmically. This only affects the labels,\n"
15917 " not the data, and so it is necessary to compute the logarithms\n"
15918 " of data points before passing them to any of the drawing\n"
15920 " m: Writes numeric labels at major tick intervals on the\n"
15921 " right-hand z axis.\n"
15922 " n: Writes numeric labels at major tick intervals on the\n"
15923 " left-hand z axis.\n"
15924 " o: Use custom labelling function to generate axis label text.\n"
15925 " The custom labelling function can be defined with the\n"
15926 " plslabelfunc command.\n"
15927 " s: Enables subticks between major ticks, only valid if t is\n"
15928 " also specified.\n"
15929 " t: Draws major ticks.\n"
15930 " u: If this is specified, the text label is written beside the\n"
15931 " left-hand axis.\n"
15932 " v: If this is specified, the text label is written beside the\n"
15933 " right-hand axis.\n"
15936 " zlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
15937 " the text label for the z axis. It is only drawn if u or v are in\n"
15938 " the zopt string.\n"
15940 " ztick (PLFLT, input) : World coordinate interval between major\n"
15941 " ticks on the z axis. If it is set to zero, PLplot automatically\n"
15942 " generates a suitable tick interval.\n"
15944 " nzsub (PLINT, input) : Number of subintervals between major z axis\n"
15945 " ticks for minor ticks. If it is set to zero, PLplot automatically\n"
15946 " generates a suitable minor tick interval.\n"
15950 "Calculate world coordinates and corresponding window index from relative device coordinates\n"
15954 " Calculate world coordinates, wx and wy, and corresponding window index\n"
15955 " from relative device coordinates, rx and ry.\n"
15957 " Redacted form: General: plcalc_world(rx, ry, wx, wy, window)\n"
15960 " This function is used in example 31.\n"
15966 "plcalc_world(rx, ry, wx, wy, window)\n"
15970 " rx (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15971 " the x coordinate.\n"
15973 " ry (PLFLT, input) : Input relative device coordinate (0.0-1.0) for\n"
15974 " the y coordinate.\n"
15976 " wx (PLFLT_NC_SCALAR, output) : Returned value of the x world\n"
15977 " coordinate corresponding to the relative device coordinates rx and\n"
15980 " wy (PLFLT_NC_SCALAR, output) : Returned value of the y world\n"
15981 " coordinate corresponding to the relative device coordinates rx and\n"
15984 " window (PLINT_NC_SCALAR, output) : Returned value of the last\n"
15985 " defined window index that corresponds to the input relative device\n"
15986 " coordinates (and the returned world coordinates). To give some\n"
15987 " background on the window index, for each page the initial window\n"
15988 " index is set to zero, and each time plwind is called within the\n"
15989 " page, world and device coordinates are stored for the window and\n"
15990 " the window index is incremented. Thus, for a simple page layout\n"
15991 " with non-overlapping viewports and one window per viewport, window\n"
15992 " corresponds to the viewport index (in the order which the\n"
15993 " viewport/windows were created) of the only viewport/window\n"
15994 " corresponding to rx and ry. However, for more complicated layouts\n"
15995 " with potentially overlapping viewports and possibly more than one\n"
15996 " window (set of world coordinates) per viewport, window and the\n"
15997 " corresponding output world coordinates corresponds to the last\n"
15998 " window created that fulfills the criterion that the relative\n"
15999 " device coordinates are inside it. Finally, in all cases where the\n"
16000 " input relative device coordinates are not inside any\n"
16001 " viewport/window, then the returned value of the last defined\n"
16002 " window index is set to -1.\n"
16006 "Clear current (sub)page\n"
16010 " Clears the current page, effectively erasing everything that have been\n"
16011 " drawn. This command only works with interactive drivers; if the\n"
16012 " driver does not support this, the page is filled with the background\n"
16013 " color in use. If the current page is divided into subpages, only the\n"
16014 " current subpage is erased. The nth subpage can be selected with\n"
16017 " Redacted form: General: plclear()\n"
16020 " This function is not used in any examples.\n"
16030 "Set color, cmap0\n"
16034 " Sets the color index for cmap0 (see the PLplot documentation).\n"
16036 " Redacted form: plcol0(icol0)\n"
16038 " This function is used in examples 1-9, 11-16, 18-27, and 29.\n"
16048 " icol0 (PLINT, input) : Integer representing the color. The\n"
16049 " defaults at present are (these may change):\n"
16050 " 0 black (default background)\n"
16051 " 1 red (default foreground)\n"
16067 " Use plscmap0 to change the entire cmap0 color palette and plscol0 to\n"
16068 " change an individual color in the cmap0 color palette.\n"
16072 "Set color, cmap1\n"
16076 " Sets the color for cmap1 (see the PLplot documentation).\n"
16078 " Redacted form: plcol1(col1)\n"
16080 " This function is used in examples 12 and 21.\n"
16090 " col1 (PLFLT, input) : This value must be in the range (0.0-1.0) and\n"
16091 " is mapped to color using the continuous cmap1 palette which by\n"
16092 " default ranges from blue to the background color to red. The\n"
16093 " cmap1 palette can also be straightforwardly changed by the user\n"
16094 " with plscmap1 or plscmap1l.\n"
16098 "Configure the transformation between continuous and broken-down time for the current stream\n"
16102 " Configure the transformation between continuous and broken-down time\n"
16103 " for the current stream. This transformation is used by both plbtime\n"
16106 " Redacted form: General: plconfigtime(scale, offset1, offset2,\n"
16107 " ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16110 " This function is used in example 29.\n"
16116 "plconfigtime(scale, offset1, offset2, ccontrol, ifbtime_offset, year, month, day, hour, min, sec)\n"
16120 " scale (PLFLT, input) : The number of days per continuous time unit.\n"
16121 " As a special case, if\n"
16122 " scale is 0., then all other arguments are ignored, and the result (the\n"
16123 " default used by PLplot) is the equivalent of a call to\n"
16124 " plconfigtime(1./86400., 0., 0., 0x0, 1, 1970, 0, 1, 0, 0, 0.).\n"
16125 " That is, for this special case broken-down time is calculated with\n"
16126 " the proleptic Gregorian calendar with no leap seconds inserted,\n"
16127 " and the continuous time is defined as the number of seconds since\n"
16128 " the Unix epoch of 1970-01-01T00:00:00Z.\n"
16130 " offset1 (PLFLT, input) : If\n"
16131 " ifbtime_offset is true, the parameters\n"
16133 " offset2 are completely ignored. Otherwise, the sum of these parameters\n"
16134 " (with units in days) specify the epoch of the continuous time\n"
16135 " relative to the MJD epoch corresponding to the Gregorian calendar\n"
16136 " date of 1858-11-17T00:00:00Z or JD = 2400000.5. Two PLFLT numbers\n"
16137 " are used to specify the origin to allow users (by specifying\n"
16138 " offset1 as an integer that can be exactly represented by a\n"
16139 " floating-point variable and specifying\n"
16140 " offset2 as a number in the range from 0. to 1) the chance to minimize\n"
16141 " the numerical errors of the continuous time representation.\n"
16143 " offset2 (PLFLT, input) : See documentation of\n"
16146 " ccontrol (PLINT, input) : ccontrol contains bits controlling the\n"
16147 " transformation. If the 0x1 bit is set, then the proleptic Julian\n"
16148 " calendar is used for broken-down time rather than the proleptic\n"
16149 " Gregorian calendar. If the 0x2 bit is set, then leap seconds that\n"
16150 " have been historically used to define UTC are inserted into the\n"
16151 " broken-down time. Other possibilities for additional control bits\n"
16152 " for ccontrol exist such as making the historical time corrections\n"
16153 " in the broken-down time corresponding to ET (ephemeris time) or\n"
16154 " making the (slightly non-constant) corrections from international\n"
16155 " atomic time (TAI) to what astronomers define as terrestrial time\n"
16156 " (TT). But those additional possibilities have not been\n"
16157 " implemented yet in the qsastime library (one of the PLplot utility\n"
16160 " ifbtime_offset (PLBOOL, input) : ifbtime_offset controls how the\n"
16161 " epoch of the continuous time scale is specified by the user. If\n"
16162 " ifbtime_offset is false, then\n"
16164 " offset2 are used to specify the epoch, and the following broken-down\n"
16165 " time parameters are completely ignored. If\n"
16166 " ifbtime_offset is true, then\n"
16168 " offset2 are completely ignored, and the following broken-down time\n"
16169 " parameters are used to specify the epoch.\n"
16171 " year (PLINT, input) : Year of epoch.\n"
16173 " month (PLINT, input) : Month of epoch in range from 0 (January) to\n"
16174 " 11 (December).\n"
16176 " day (PLINT, input) : Day of epoch in range from 1 to 31.\n"
16178 " hour (PLINT, input) : Hour of epoch in range from 0 to 23\n"
16180 " min (PLINT, input) : Minute of epoch in range from 0 to 59.\n"
16182 " sec (PLFLT, input) : Second of epoch in range from 0. to 60.\n"
16190 " Draws a contour plot of the data in f[\n"
16192 " ny], using the nlevel contour levels specified by clevel. Only the\n"
16193 " region of the matrix from kx to lx and from ky to ly is plotted out\n"
16194 " where all these index ranges are interpreted as one-based for\n"
16195 " historical reasons. A transformation routine pointed to by pltr with\n"
16196 " a generic pointer pltr_data for additional data required by the\n"
16197 " transformation routine is used to map indices within the matrix to the\n"
16198 " world coordinates.\n"
16200 " Redacted form: plcont(f, kx, lx, ky, ly, clevel, pltr, pltr_data)\n"
16201 " where (see above discussion) the pltr, pltr_data callback arguments\n"
16202 " are sometimes replaced by a tr vector with 6 elements; xg and yg\n"
16203 " vectors; or xg and yg matrices.\n"
16205 " This function is used in examples 9, 14, 16, and 22.\n"
16211 "plcont(f, nx, ny, kx, lx, ky, ly, clevel, nlevel, pltr, pltr_data)\n"
16215 " f (PLFLT_MATRIX, input) : A matrix containing data to be contoured.\n"
16217 " nx, ny (PLINT, input) : The dimensions of the matrix f.\n"
16219 " kx, lx (PLINT, input) : Range of x indices to consider where 0 <=\n"
16220 " kx-1 < lx-1 < nx. Values of kx and lx are one-based rather than\n"
16221 " zero-based for historical backwards-compatibility reasons.\n"
16223 " ky, ly (PLINT, input) : Range of y indices to consider where 0 <=\n"
16224 " ky-1 < ly-1 < ny. Values of ky and ly are one-based rather than\n"
16225 " zero-based for historical backwards-compatibility reasons.\n"
16227 " clevel (PLFLT_VECTOR, input) : A vector specifying the levels at\n"
16228 " which to draw contours.\n"
16230 " nlevel (PLINT, input) : Number of contour levels to draw.\n"
16232 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
16233 " defines the transformation between the zero-based indices of the\n"
16234 " matrix f and the world coordinates.For the C case, transformation\n"
16235 " functions are provided in the PLplot library: pltr0 for the\n"
16236 " identity mapping, and pltr1 and pltr2 for arbitrary mappings\n"
16237 " respectively defined by vectors and matrices. In addition, C\n"
16238 " callback routines for the transformation can be supplied by the\n"
16239 " user such as the mypltr function in examples/c/x09c.c which\n"
16240 " provides a general linear transformation between index coordinates\n"
16241 " and world coordinates.For languages other than C you should\n"
16242 " consult the PLplot documentation for the details concerning how\n"
16243 " PLTRANSFORM_callback arguments are interfaced. However, in\n"
16244 " general, a particular pattern of callback-associated arguments\n"
16245 " such as a tr vector with 6 elements; xg and yg vectors; or xg and\n"
16246 " yg matrices are respectively interfaced to a linear-transformation\n"
16247 " routine similar to the above mypltr function; pltr1; and pltr2.\n"
16248 " Furthermore, some of our more sophisticated bindings (see, e.g.,\n"
16249 " the PLplot documentation) support native language callbacks for\n"
16250 " handling index to world-coordinate transformations. Examples of\n"
16251 " these various approaches are given in examples/<language>x09*,\n"
16252 " examples/<language>x16*, examples/<language>x20*,\n"
16253 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
16254 " supported languages.\n"
16256 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
16257 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
16258 " that is externally supplied.\n"
16262 "Calculate continuous time from broken-down time for the current stream\n"
16266 " Calculate continuous time, ctime, from broken-down time for the\n"
16267 " current stream. The broken-down\n"
16268 " time is specified by the following parameters: year, month, day, hour,\n"
16269 " min, and sec. This function is the inverse of plbtime.\n"
16271 " The PLplot definition of broken-down time is a calendar time that\n"
16272 " completely ignores all time zone offsets, i.e., it is the user's\n"
16273 " responsibility to apply those offsets (if so desired) before using the\n"
16274 " PLplot time API. By default broken-down time is defined using the\n"
16275 " proleptic Gregorian calendar without the insertion of leap seconds and\n"
16276 " continuous time is defined as the number of seconds since the Unix\n"
16277 " epoch of 1970-01-01T00:00:00Z. However, other definitions of\n"
16278 " broken-down and continuous time are possible, see plconfigtime which\n"
16279 " specifies that transformation for the current stream.\n"
16281 " Redacted form: General: plctime(year, month, day, hour, min, sec,\n"
16285 " This function is used in example 29.\n"
16291 "plctime(year, month, day, hour, min, sec, ctime)\n"
16295 " year (PLINT, input) : Input year.\n"
16297 " month (PLINT, input) : Input month in range from 0 (January) to 11\n"
16300 " day (PLINT, input) : Input day in range from 1 to 31.\n"
16302 " hour (PLINT, input) : Input hour in range from 0 to 23\n"
16304 " min (PLINT, input) : Input minute in range from 0 to 59.\n"
16306 " sec (PLFLT, input) : Input second in range from 0. to 60.\n"
16308 " ctime (PLFLT_NC_SCALAR, output) : Returned value of the continuous\n"
16309 " time calculated from the broken-down time specified by the\n"
16310 " previous parameters.\n"
16314 "Copy state parameters from the reference stream to the current stream\n"
16318 " Copies state parameters from the reference stream to the current\n"
16319 " stream. Tell driver interface to map device coordinates unless flags\n"
16322 " This function is used for making save files of selected plots (e.g.\n"
16323 " from the TK driver). After initializing, you can get a copy of the\n"
16324 " current plot to the specified device by switching to this stream and\n"
16325 " issuing a plcpstrm and a plreplot, with calls to plbop and pleop as\n"
16326 " appropriate. The plot buffer must have previously been enabled (done\n"
16327 " automatically by some display drivers, such as X).\n"
16329 " Redacted form: plcpstrm(iplsr, flags)\n"
16331 " This function is used in example 1,20.\n"
16337 "plcpstrm(iplsr, flags)\n"
16341 " iplsr (PLINT, input) : Number of reference stream.\n"
16343 " flags (PLBOOL, input) : If flags is set to true the device\n"
16344 " coordinates are not copied from the reference to current stream.\n"
16348 "End plotting session\n"
16352 " Ends a plotting session, tidies up all the output files, switches\n"
16353 " interactive devices back into text mode and frees up any memory that\n"
16354 " was allocated. Must be called before end of program.\n"
16356 " By default, PLplot's interactive devices (Xwin, TK, etc.) go into a\n"
16357 " wait state after a call to plend or other functions which trigger the\n"
16358 " end of a plot page. To avoid this, use the plspause function.\n"
16360 " Redacted form: plend()\n"
16362 " This function is used in all of the examples.\n"
16372 "End plotting session for current stream\n"
16376 " Ends a plotting session for the current output stream only. See\n"
16377 " plsstrm for more info.\n"
16379 " Redacted form: plend1()\n"
16381 " This function is used in examples 1 and 20.\n"
16391 "Set up standard window and draw box\n"
16395 " Sets up plotter environment for simple graphs by calling pladv and\n"
16396 " setting up viewport and window to sensible default values. plenv\n"
16397 " leaves a standard margin (left-hand margin of eight character heights,\n"
16398 " and a margin around the other three sides of five character heights)\n"
16399 " around most graphs for axis labels and a title. When these defaults\n"
16400 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16401 " plvasp for setting up the viewport, plwind for defining the window,\n"
16402 " and plbox for drawing the box.\n"
16404 " Redacted form: plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16406 " This function is used in example 1,3,9,13,14,19-22,29.\n"
16412 "plenv(xmin, xmax, ymin, ymax, just, axis)\n"
16416 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16417 " world coordinates).\n"
16419 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16420 " world coordinates).\n"
16422 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16425 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16428 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16429 " scales will not be set, the user must set up the scale before\n"
16430 " calling plenv using plsvpa, plvasp or other.\n"
16431 " 0: the x and y axes are scaled independently to use as much of\n"
16432 " the screen as possible.\n"
16433 " 1: the scales of the x and y axes are made equal.\n"
16434 " 2: the axis of the x and y axes are made equal, and the plot\n"
16435 " box will be square.\n"
16438 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16439 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16440 " -1: draw box only.\n"
16441 " 0: draw box, ticks, and numeric tick labels.\n"
16442 " 1: also draw coordinate axes at x=0 and y=0.\n"
16443 " 2: also draw a grid at major tick positions in both\n"
16445 " 3: also draw a grid at minor tick positions in both\n"
16447 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16448 " have to be converted to logarithms separately.)\n"
16449 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16450 " have to be converted to logarithms separately.)\n"
16451 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16452 " have to be converted to logarithms separately.)\n"
16453 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16454 " have to be converted to logarithms separately.)\n"
16455 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16456 " have to be converted to logarithms separately.)\n"
16457 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16458 " have to be converted to logarithms separately.)\n"
16459 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16460 " have to be converted to logarithms separately.)\n"
16461 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16462 " have to be converted to logarithms separately.)\n"
16463 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16464 " and y data have to be converted to logarithms separately.)\n"
16465 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16466 " and y data have to be converted to logarithms separately.)\n"
16467 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16468 " and y data have to be converted to logarithms separately.)\n"
16469 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16470 " and y data have to be converted to logarithms separately.)\n"
16471 " 40: same as 0 except date / time x labels.\n"
16472 " 41: same as 1 except date / time x labels.\n"
16473 " 42: same as 2 except date / time x labels.\n"
16474 " 43: same as 3 except date / time x labels.\n"
16475 " 50: same as 0 except date / time y labels.\n"
16476 " 51: same as 1 except date / time y labels.\n"
16477 " 52: same as 2 except date / time y labels.\n"
16478 " 53: same as 3 except date / time y labels.\n"
16479 " 60: same as 0 except date / time x and y labels.\n"
16480 " 61: same as 1 except date / time x and y labels.\n"
16481 " 62: same as 2 except date / time x and y labels.\n"
16482 " 63: same as 3 except date / time x and y labels.\n"
16483 " 70: same as 0 except custom x and y labels.\n"
16484 " 71: same as 1 except custom x and y labels.\n"
16485 " 72: same as 2 except custom x and y labels.\n"
16486 " 73: same as 3 except custom x and y labels.\n"
16490 "Same as plenv but if in multiplot mode does not advance the subpage, instead clears it\n"
16494 " Sets up plotter environment for simple graphs by calling pladv and\n"
16495 " setting up viewport and window to sensible default values. plenv0\n"
16496 " leaves a standard margin (left-hand margin of eight character heights,\n"
16497 " and a margin around the other three sides of five character heights)\n"
16498 " around most graphs for axis labels and a title. When these defaults\n"
16499 " are not suitable, use the individual routines plvpas, plvpor, or\n"
16500 " plvasp for setting up the viewport, plwind for defining the window,\n"
16501 " and plbox for drawing the box.\n"
16503 " Redacted form: plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16505 " This function is used in example 21.\n"
16511 "plenv0(xmin, xmax, ymin, ymax, just, axis)\n"
16515 " xmin (PLFLT, input) : Value of x at left-hand edge of window (in\n"
16516 " world coordinates).\n"
16518 " xmax (PLFLT, input) : Value of x at right-hand edge of window (in\n"
16519 " world coordinates).\n"
16521 " ymin (PLFLT, input) : Value of y at bottom edge of window (in world\n"
16524 " ymax (PLFLT, input) : Value of y at top edge of window (in world\n"
16527 " just (PLINT, input) : Controls how the axes will be scaled: -1: the\n"
16528 " scales will not be set, the user must set up the scale before\n"
16529 " calling plenv0 using plsvpa, plvasp or other.\n"
16530 " 0: the x and y axes are scaled independently to use as much of\n"
16531 " the screen as possible.\n"
16532 " 1: the scales of the x and y axes are made equal.\n"
16533 " 2: the axis of the x and y axes are made equal, and the plot\n"
16534 " box will be square.\n"
16537 " axis (PLINT, input) : Controls drawing of the box around the plot:\n"
16538 " -2: draw no box, no tick marks, no numeric tick labels, no axes.\n"
16539 " -1: draw box only.\n"
16540 " 0: draw box, ticks, and numeric tick labels.\n"
16541 " 1: also draw coordinate axes at x=0 and y=0.\n"
16542 " 2: also draw a grid at major tick positions in both\n"
16544 " 3: also draw a grid at minor tick positions in both\n"
16546 " 10: same as 0 except logarithmic x tick marks. (The x data\n"
16547 " have to be converted to logarithms separately.)\n"
16548 " 11: same as 1 except logarithmic x tick marks. (The x data\n"
16549 " have to be converted to logarithms separately.)\n"
16550 " 12: same as 2 except logarithmic x tick marks. (The x data\n"
16551 " have to be converted to logarithms separately.)\n"
16552 " 13: same as 3 except logarithmic x tick marks. (The x data\n"
16553 " have to be converted to logarithms separately.)\n"
16554 " 20: same as 0 except logarithmic y tick marks. (The y data\n"
16555 " have to be converted to logarithms separately.)\n"
16556 " 21: same as 1 except logarithmic y tick marks. (The y data\n"
16557 " have to be converted to logarithms separately.)\n"
16558 " 22: same as 2 except logarithmic y tick marks. (The y data\n"
16559 " have to be converted to logarithms separately.)\n"
16560 " 23: same as 3 except logarithmic y tick marks. (The y data\n"
16561 " have to be converted to logarithms separately.)\n"
16562 " 30: same as 0 except logarithmic x and y tick marks. (The x\n"
16563 " and y data have to be converted to logarithms separately.)\n"
16564 " 31: same as 1 except logarithmic x and y tick marks. (The x\n"
16565 " and y data have to be converted to logarithms separately.)\n"
16566 " 32: same as 2 except logarithmic x and y tick marks. (The x\n"
16567 " and y data have to be converted to logarithms separately.)\n"
16568 " 33: same as 3 except logarithmic x and y tick marks. (The x\n"
16569 " and y data have to be converted to logarithms separately.)\n"
16570 " 40: same as 0 except date / time x labels.\n"
16571 " 41: same as 1 except date / time x labels.\n"
16572 " 42: same as 2 except date / time x labels.\n"
16573 " 43: same as 3 except date / time x labels.\n"
16574 " 50: same as 0 except date / time y labels.\n"
16575 " 51: same as 1 except date / time y labels.\n"
16576 " 52: same as 2 except date / time y labels.\n"
16577 " 53: same as 3 except date / time y labels.\n"
16578 " 60: same as 0 except date / time x and y labels.\n"
16579 " 61: same as 1 except date / time x and y labels.\n"
16580 " 62: same as 2 except date / time x and y labels.\n"
16581 " 63: same as 3 except date / time x and y labels.\n"
16582 " 70: same as 0 except custom x and y labels.\n"
16583 " 71: same as 1 except custom x and y labels.\n"
16584 " 72: same as 2 except custom x and y labels.\n"
16585 " 73: same as 3 except custom x and y labels.\n"
16589 "Eject current page\n"
16593 " Clears the graphics screen of an interactive device, or ejects a page\n"
16594 " on a plotter. See plbop for more information.\n"
16596 " Redacted form: pleop()\n"
16598 " This function is used in example 2,14.\n"
16608 "Draw error bars in x direction\n"
16612 " Draws a set of n error bars in x direction, the i'th error bar\n"
16613 " extending from xmin[i] to xmax[i] at y coordinate y[i]. The terminals\n"
16614 " of the error bars are of length equal to the minor tick length\n"
16615 " (settable using plsmin).\n"
16617 " Redacted form: General: plerrx(xmin, ymax, y)\n"
16620 " This function is used in example 29.\n"
16626 "plerrx(n, xmin, xmax, y)\n"
16630 " n (PLINT, input) : Number of error bars to draw.\n"
16632 " xmin (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16633 " of the left-hand endpoints of the error bars.\n"
16635 " xmax (PLFLT_VECTOR, input) : A vector containing the x coordinates\n"
16636 " of the right-hand endpoints of the error bars.\n"
16638 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16639 " the error bars.\n"
16643 "Draw error bars in the y direction\n"
16647 " Draws a set of n error bars in the y direction, the i'th error bar\n"
16648 " extending from ymin[i] to ymax[i] at x coordinate x[i]. The terminals\n"
16649 " of the error bars are of length equal to the minor tick length\n"
16650 " (settable using plsmin).\n"
16652 " Redacted form: General: plerry(x, ymin, ymax)\n"
16655 " This function is used in example 29.\n"
16661 "plerry(n, x, ymin, ymax)\n"
16665 " n (PLINT, input) : Number of error bars to draw.\n"
16667 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16668 " the error bars.\n"
16670 " ymin (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16671 " of the lower endpoints of the error bars.\n"
16673 " ymax (PLFLT_VECTOR, input) : A vector containing the y coordinates\n"
16674 " of the upper endpoints of the error bars.\n"
16678 "Advance to the next family file on the next new page\n"
16682 " Advance to the next family file on the next new page.\n"
16684 " Redacted form: plfamadv()\n"
16686 " This function is not used in any examples.\n"
16696 "Draw filled polygon\n"
16700 " Fills the polygon defined by the n points (\n"
16702 " y[i]) using the pattern defined by plpsty or plpat. The default fill\n"
16703 " style is a solid fill. The routine will automatically close the\n"
16704 " polygon between the last and first vertices. If multiple closed\n"
16705 " polygons are passed in x and y then plfill will fill in between them.\n"
16707 " Redacted form: plfill(x,y)\n"
16709 " This function is used in examples 12, 13, 15, 16, 21, 24, and 25.\n"
16715 "plfill(n, x, y)\n"
16719 " n (PLINT, input) : Number of vertices in polygon.\n"
16721 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16724 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16729 "Draw filled polygon in 3D\n"
16733 " Fills the 3D polygon defined by the n points in the x, y, and z\n"
16734 " vectors using the pattern defined by plpsty or plpat. The routine\n"
16735 " will automatically close the polygon between the last and first\n"
16736 " vertices. If multiple closed polygons are passed in x, y, and z then\n"
16737 " plfill3 will fill in between them.\n"
16739 " Redacted form: General: plfill3(x, y, z)\n"
16742 " This function is used in example 15.\n"
16748 "plfill3(n, x, y, z)\n"
16752 " n (PLINT, input) : Number of vertices in polygon.\n"
16754 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16757 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16760 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
16765 "Draw linear gradient inside polygon\n"
16769 " Draw a linear gradient using cmap1 inside the polygon defined by the n\n"
16772 " y[i]). Interpretation of the polygon is the same as for plfill. The\n"
16773 " polygon coordinates and the gradient angle are all expressed in world\n"
16774 " coordinates. The angle from the x axis for both the rotated\n"
16775 " coordinate system and the gradient vector is specified by angle. The\n"
16776 " magnitude of the gradient vector is the difference between the maximum\n"
16777 " and minimum values of x for the vertices in the rotated coordinate\n"
16778 " system. The origin of the gradient vector can be interpreted as being\n"
16779 " anywhere on the line corresponding to the minimum x value for the\n"
16780 " vertices in the rotated coordinate system. The distance along the\n"
16781 " gradient vector is linearly transformed to the independent variable of\n"
16782 " color map 1 which ranges from 0. at the tail of the gradient vector to\n"
16783 " 1. at the head of the gradient vector. What is drawn is the RGBA\n"
16784 " color corresponding to the independent variable of cmap1. For more\n"
16785 " information about cmap1 (see the PLplot documentation).\n"
16787 " Redacted form: plgradient(x,y,angle)\n"
16789 " This function is used in examples 25 and 30.\n"
16795 "plgradient(n, x, y, angle)\n"
16799 " n (PLINT, input) : Number of vertices in polygon.\n"
16801 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
16804 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
16807 " angle (PLFLT, input) : Angle (degrees) of gradient vector from x\n"
16812 "Flushes the output stream\n"
16816 " Flushes the output stream. Use sparingly, if at all.\n"
16818 " Redacted form: plflush()\n"
16820 " This function is used in examples 1 and 14.\n"
16834 " Sets the font used for subsequent text and symbols. For devices that\n"
16835 " still use Hershey fonts this routine has no effect unless the Hershey\n"
16836 " fonts with extended character set are loaded (see plfontld). For\n"
16837 " unicode-aware devices that use system fonts instead of Hershey fonts,\n"
16838 " this routine calls the plsfci routine with argument set up\n"
16839 " appropriately for the various cases below. However, this method of\n"
16840 " specifying the font for unicode-aware devices is deprecated, and the\n"
16841 " much more flexible method of calling plsfont directly is recommended\n"
16842 " instead (where plsfont provides a user-friendly interface to plsfci),\n"
16844 " Redacted form: plfont(ifont)\n"
16846 " This function is used in examples 1, 2, 4, 7, 13, 24, and 26.\n"
16856 " ifont (PLINT, input) : Specifies the font: 1: Sans serif font\n"
16857 " (simplest and fastest)\n"
16859 " 3: Italic font\n"
16860 " 4: Script font\n"
16864 "Load Hershey fonts\n"
16868 " Loads the Hershey fonts used for text and symbols. This routine may\n"
16869 " be called before or after initializing PLplot. If not explicitly\n"
16870 " called before PLplot initialization, then by default that\n"
16871 " initialization loads Hershey fonts with the extended character set.\n"
16872 " This routine only has a practical effect for devices that still use\n"
16873 " Hershey fonts (as opposed to modern devices that use unicode-aware\n"
16874 " system fonts instead of Hershey fonts).\n"
16876 " Redacted form: plfontld(fnt)\n"
16878 " This function is used in examples 1 and 7.\n"
16888 " fnt (PLINT, input) : Specifies the type of Hershey fonts to load.\n"
16889 " A zero value specifies Hershey fonts with the standard character\n"
16890 " set and a non-zero value (the default assumed if plfontld is never\n"
16891 " called) specifies Hershey fonts with the extended character set.\n"
16895 "Get character default height and current (scaled) height\n"
16899 " Get character default height and current (scaled) height.\n"
16901 " Redacted form: plgchr(p_def, p_ht)\n"
16903 " This function is used in example 23.\n"
16909 "plgchr(p_def, p_ht)\n"
16913 " p_def (PLFLT_NC_SCALAR, output) : Returned value of the default\n"
16914 " character height (mm).\n"
16916 " p_ht (PLFLT_NC_SCALAR, output) : Returned value of the scaled\n"
16917 " character height (mm).\n"
16921 "Returns 8-bit RGB values for given color index from cmap0\n"
16925 " Returns 8-bit RGB values (0-255) for given color from cmap0 (see the\n"
16926 " PLplot documentation). Values are negative if an invalid color id is\n"
16929 " Redacted form: plgcol0(icol0, r, g, b)\n"
16931 " This function is used in example 2.\n"
16937 "plgcol0(icol0, r, g, b)\n"
16941 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16943 " r (PLINT_NC_SCALAR, output) : Returned value of the 8-bit red\n"
16946 " g (PLINT_NC_SCALAR, output) : Returned value of the 8-bit green\n"
16949 " b (PLINT_NC_SCALAR, output) : Returned value of the 8-bit blue\n"
16954 "Returns 8-bit RGB values and PLFLT alpha transparency value for given color index from cmap0\n"
16958 " Returns 8-bit RGB values (0-255) and PLFLT alpha transparency value\n"
16959 " (0.0-1.0) for given color from cmap0 (see the PLplot documentation).\n"
16960 " Values are negative if an invalid color id is given.\n"
16962 " Redacted form: plgcola(r, g, b)\n"
16964 " This function is used in example 30.\n"
16970 "plgcol0a(icol0, r, g, b, alpha)\n"
16974 " icol0 (PLINT, input) : Index of desired cmap0 color.\n"
16976 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
16977 " in the range from 0 to 255.\n"
16979 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
16980 " in the range from 0 to 255.\n"
16982 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
16983 " in the range from 0 to 255.\n"
16985 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
16986 " transparency in the range from (0.0-1.0).\n"
16990 "Returns the background color (cmap0[0]) by 8-bit RGB value\n"
16994 " Returns the background color (cmap0[0]) by 8-bit RGB value.\n"
16996 " Redacted form: plgcolbg(r, g, b)\n"
16998 " This function is used in example 31.\n"
17004 "plgcolbg(r, g, b)\n"
17008 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17009 " in the range from 0 to 255.\n"
17011 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17012 " in the range from 0 to 255.\n"
17014 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17015 " in the range from 0 to 255.\n"
17019 "Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT alpha transparency value\n"
17023 " Returns the background color (cmap0[0]) by 8-bit RGB value and PLFLT\n"
17024 " alpha transparency value.\n"
17026 " This function is used in example 31.\n"
17032 "plgcolbga(r, g, b, alpha)\n"
17036 " r (PLINT_NC_SCALAR, output) : Returned value of the red intensity\n"
17037 " in the range from 0 to 255.\n"
17039 " g (PLINT_NC_SCALAR, output) : Returned value of the green intensity\n"
17040 " in the range from 0 to 255.\n"
17042 " b (PLINT_NC_SCALAR, output) : Returned value of the blue intensity\n"
17043 " in the range from 0 to 255.\n"
17045 " alpha (PLFLT_NC_SCALAR, output) : Returned value of the alpha\n"
17046 " transparency in the range (0.0-1.0).\n"
17050 "Get the current device-compression setting\n"
17054 " Get the current device-compression setting. This parameter is only\n"
17055 " used for drivers that provide compression.\n"
17057 " Redacted form: plgcompression(compression)\n"
17059 " This function is used in example 31.\n"
17065 "plgcompression(compression)\n"
17069 " compression (PLINT_NC_SCALAR, output) : Returned value of the\n"
17070 " compression setting for the current device.\n"
17074 "Get the current device (keyword) name\n"
17078 " Get the current device (keyword) name. Note: you must have allocated\n"
17079 " space for this (80 characters is safe).\n"
17081 " Redacted form: plgdev(p_dev)\n"
17083 " This function is used in example 14.\n"
17093 " p_dev (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17094 " (with preallocated length of 80 characters or more) containing the\n"
17095 " device (keyword) name.\n"
17099 "Get parameters that define current device-space window\n"
17103 " Get relative margin width, aspect ratio, and relative justification\n"
17104 " that define current device-space window. If plsdidev has not been\n"
17105 " called the default values pointed to by p_mar, p_aspect, p_jx, and\n"
17106 " p_jy will all be 0.\n"
17108 " Redacted form: plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17110 " This function is used in example 31.\n"
17116 "plgdidev(p_mar, p_aspect, p_jx, p_jy)\n"
17120 " p_mar (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17123 " p_aspect (PLFLT_NC_SCALAR, output) : Returned value of the aspect\n"
17126 " p_jx (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17127 " justification in x.\n"
17129 " p_jy (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17130 " justification in y.\n"
17134 "Get plot orientation\n"
17138 " Get plot orientation parameter which is multiplied by 90 degrees to\n"
17139 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
17140 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
17141 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
17142 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
17143 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori has\n"
17144 " not been called the default value pointed to by p_rot will be 0.\n"
17146 " Redacted form: plgdiori(p_rot)\n"
17148 " This function is not used in any examples.\n"
17154 "plgdiori(p_rot)\n"
17158 " p_rot (PLFLT_NC_SCALAR, output) : Returned value of the orientation\n"
17163 "Get parameters that define current plot-space window\n"
17167 " Get relative minima and maxima that define current plot-space window.\n"
17168 " If plsdiplt has not been called the default values pointed to by\n"
17169 " p_xmin, p_ymin, p_xmax, and p_ymax will be 0., 0., 1., and 1.\n"
17171 " Redacted form: plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17173 " This function is used in example 31.\n"
17179 "plgdiplt(p_xmin, p_ymin, p_xmax, p_ymax)\n"
17183 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17186 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17189 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17192 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the relative\n"
17197 "Get family file parameters\n"
17201 " Gets information about current family file, if familying is enabled.\n"
17202 " See the PLplot documentation for more information.\n"
17204 " Redacted form: plgfam(p_fam, p_num, p_bmax)\n"
17206 " This function is used in examples 14 and 31.\n"
17212 "plgfam(p_fam, p_num, p_bmax)\n"
17216 " p_fam (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17217 " family flag value. If nonzero, familying is enabled for the\n"
17218 " current device.\n"
17220 " p_num (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17221 " family file number.\n"
17223 " p_bmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17224 " file size (in bytes) for a family file.\n"
17228 "Get FCI (font characterization integer)\n"
17232 " Gets information about the current font using the FCI approach. See\n"
17233 " the PLplot documentation for more information.\n"
17235 " Redacted form: plgfci(p_fci)\n"
17237 " This function is used in example 23.\n"
17247 " p_fci (PLUNICODE_NC_SCALAR, output) : Returned value of the current\n"
17252 "Get output file name\n"
17256 " Gets the current output file name, if applicable.\n"
17258 " Redacted form: plgfnam(fnam)\n"
17260 " This function is used in example 31.\n"
17270 " fnam (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17271 " (with preallocated length of 80 characters or more) containing the\n"
17276 "Get family, style and weight of the current font\n"
17280 " Gets information about current font. See the PLplot documentation for\n"
17281 " more information on font selection.\n"
17283 " Redacted form: plgfont(p_family, p_style, p_weight)\n"
17285 " This function is used in example 23.\n"
17291 "plgfont(p_family, p_style, p_weight)\n"
17295 " p_family (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17296 " font family. The available values are given by the PL_FCI_*\n"
17297 " constants in plplot.h. Current options are PL_FCI_SANS,\n"
17298 " PL_FCI_SERIF, PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. If\n"
17299 " p_family is NULL then the font family is not returned.\n"
17301 " p_style (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17302 " font style. The available values are given by the PL_FCI_*\n"
17303 " constants in plplot.h. Current options are PL_FCI_UPRIGHT,\n"
17304 " PL_FCI_ITALIC and PL_FCI_OBLIQUE. If p_style is NULL then the font\n"
17305 " style is not returned.\n"
17307 " p_weight (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17308 " font weight. The available values are given by the PL_FCI_*\n"
17309 " constants in plplot.h. Current options are PL_FCI_MEDIUM and\n"
17310 " PL_FCI_BOLD. If p_weight is NULL then the font weight is not\n"
17315 "Get the (current) run level\n"
17319 " Get the (current) run level. Valid settings are: 0, uninitialized\n"
17320 " 1, initialized\n"
17321 " 2, viewport defined\n"
17322 " 3, world coordinates defined\n"
17325 " Redacted form: plglevel(p_level)\n"
17327 " This function is used in example 31.\n"
17333 "plglevel(p_level)\n"
17337 " p_level (PLINT_NC_SCALAR, output) : Returned value of the run\n"
17342 "Get page parameters\n"
17346 " Gets the current page configuration. The length and offset values are\n"
17347 " expressed in units that are specific to the current driver. For\n"
17348 " instance: screen drivers will usually interpret them as number of\n"
17349 " pixels, whereas printer drivers will usually use mm.\n"
17351 " Redacted form: plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17353 " This function is used in examples 14 and 31.\n"
17359 "plgpage(p_xp, p_yp, p_xleng, p_yleng, p_xoff, p_yoff)\n"
17363 " p_xp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17364 " pixels/inch (DPI) in x.\n"
17366 " p_yp (PLFLT_NC_SCALAR, output) : Returned value of the number of\n"
17367 " pixels/inch (DPI) in y.\n"
17369 " p_xleng (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17372 " p_yleng (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17375 " p_xoff (PLINT_NC_SCALAR, output) : Returned value of the x page\n"
17378 " p_yoff (PLINT_NC_SCALAR, output) : Returned value of the y page\n"
17383 "Switch to graphics screen\n"
17387 " Sets an interactive device to graphics mode, used in conjunction with\n"
17388 " pltext to allow graphics and text to be interspersed. On a device\n"
17389 " which supports separate text and graphics windows, this command causes\n"
17390 " control to be switched to the graphics window. If already in graphics\n"
17391 " mode, this command is ignored. It is also ignored on devices which\n"
17392 " only support a single window or use a different method for shifting\n"
17393 " focus. See also pltext.\n"
17395 " Redacted form: plgra()\n"
17397 " This function is used in example 1.\n"
17407 "Grid data from irregularly sampled data\n"
17411 " Real world data is frequently irregularly sampled, but PLplot 3D plots\n"
17412 " require data organized as a grid, i.e., with x sample point values\n"
17413 " independent of y coordinate and vice versa. This function takes\n"
17414 " irregularly sampled data from the x[npts], y[npts], and z[npts]\n"
17415 " vectors; reads the desired grid location from the input vectors\n"
17416 " xg[nptsx] and yg[nptsy]; and returns the interpolated result on that\n"
17417 " grid using the output matrix zg[nptsx][nptsy]. The algorithm used to\n"
17418 " interpolate the data to the grid is specified with the argument type\n"
17419 " which can have one parameter specified in argument data.\n"
17421 " Redacted form: General: plgriddata(x, y, z, xg, yg, zg, type, data)\n"
17422 " Python: zg=plgriddata(x, y, z, xg, yg, type, data)\n"
17425 " This function is used in example 21.\n"
17431 "plgriddata(x, y, z, npts, xg, nptsx, yg, nptsy, zg, type, data)\n"
17435 " x (PLFLT_VECTOR, input) : The input x vector.\n"
17437 " y (PLFLT_VECTOR, input) : The input y vector.\n"
17439 " z (PLFLT_VECTOR, input) : The input z vector. Each triple x[i],\n"
17440 " y[i], z[i] represents one data sample coordinate.\n"
17442 " npts (PLINT, input) : The number of data samples in the x, y and z\n"
17445 " xg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17446 " in the x direction. Usually xg has nptsx equally spaced values\n"
17447 " from the minimum to the maximum values of the x input vector.\n"
17449 " nptsx (PLINT, input) : The number of points in the xg vector.\n"
17451 " yg (PLFLT_VECTOR, input) : A vector that specifies the grid spacing\n"
17452 " in the y direction. Similar to the xg parameter.\n"
17454 " nptsy (PLINT, input) : The number of points in the yg vector.\n"
17456 " zg (PLFLT_NC_MATRIX, output) : The matrix of interpolated results\n"
17457 " where data lies in the grid specified by xg and yg. Therefore the\n"
17458 " zg matrix must be dimensioned\n"
17462 " type (PLINT, input) : The type of grid interpolation algorithm to\n"
17463 " use, which can be: GRID_CSA: Bivariate Cubic Spline approximation\n"
17464 " GRID_DTLI: Delaunay Triangulation Linear Interpolation\n"
17465 " GRID_NNI: Natural Neighbors Interpolation\n"
17466 " GRID_NNIDW: Nearest Neighbors Inverse Distance Weighted\n"
17467 " GRID_NNLI: Nearest Neighbors Linear Interpolation\n"
17468 " GRID_NNAIDW: Nearest Neighbors Around Inverse Distance\n"
17470 " For details of the algorithms read the source file plgridd.c.\n"
17472 " data (PLFLT, input) : Some gridding algorithms require extra data,\n"
17473 " which can be specified through this argument. Currently, for\n"
17474 " algorithm: GRID_NNIDW, data specifies the number of neighbors to\n"
17475 " use, the lower the value, the noisier (more local) the\n"
17476 " approximation is.\n"
17477 " GRID_NNLI, data specifies what a thin triangle is, in the\n"
17478 " range [1. .. 2.]. High values enable the usage of very thin\n"
17479 " triangles for interpolation, possibly resulting in error in\n"
17480 " the approximation.\n"
17481 " GRID_NNI, only weights greater than data will be accepted. If\n"
17482 " 0, all weights will be accepted.\n"
17486 "Get current subpage parameters\n"
17490 " Gets the size of the current subpage in millimeters measured from the\n"
17491 " bottom left hand corner of the output device page or screen. Can be\n"
17492 " used in conjunction with plsvpa for setting the size of a viewport in\n"
17493 " absolute coordinates (millimeters).\n"
17495 " Redacted form: plgspa(xmin, xmax, ymin, ymax)\n"
17497 " This function is used in example 23.\n"
17503 "plgspa(xmin, xmax, ymin, ymax)\n"
17507 " xmin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17508 " the left hand edge of the subpage in millimeters.\n"
17510 " xmax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17511 " the right hand edge of the subpage in millimeters.\n"
17513 " ymin (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17514 " the bottom edge of the subpage in millimeters.\n"
17516 " ymax (PLFLT_NC_SCALAR, output) : Returned value of the position of\n"
17517 " the top edge of the subpage in millimeters.\n"
17521 "Get current stream number\n"
17525 " Gets the number of the current output stream. See also plsstrm.\n"
17527 " Redacted form: plgstrm(p_strm)\n"
17529 " This function is used in example 1,20.\n"
17535 "plgstrm(p_strm)\n"
17539 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the current\n"
17544 "Get the current library version number\n"
17548 " Get the current library version number. Note: you must have allocated\n"
17549 " space for this (80 characters is safe).\n"
17551 " Redacted form: plgver(p_ver)\n"
17553 " This function is used in example 1.\n"
17563 " p_ver (PLCHAR_NC_VECTOR, output) : Returned ascii character string\n"
17564 " (with preallocated length of 80 characters or more) containing the\n"
17565 " PLplot version number.\n"
17569 "Get viewport limits in normalized device coordinates\n"
17573 " Get viewport limits in normalized device coordinates.\n"
17575 " Redacted form: General: plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17578 " This function is used in example 31.\n"
17584 "plgvpd(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17588 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17589 " viewport limit of the normalized device coordinate in x.\n"
17591 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17592 " viewport limit of the normalized device coordinate in x.\n"
17594 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17595 " viewport limit of the normalized device coordinate in y.\n"
17597 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17598 " viewport limit of the normalized device coordinate in y.\n"
17602 "Get viewport limits in world coordinates\n"
17606 " Get viewport limits in world coordinates.\n"
17608 " Redacted form: General: plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17611 " This function is used in example 31.\n"
17617 "plgvpw(p_xmin, p_xmax, p_ymin, p_ymax)\n"
17621 " p_xmin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17622 " viewport limit of the world coordinate in x.\n"
17624 " p_xmax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17625 " viewport limit of the world coordinate in x.\n"
17627 " p_ymin (PLFLT_NC_SCALAR, output) : Returned value of the lower\n"
17628 " viewport limit of the world coordinate in y.\n"
17630 " p_ymax (PLFLT_NC_SCALAR, output) : Returned value of the upper\n"
17631 " viewport limit of the world coordinate in y.\n"
17635 "Get x axis parameters\n"
17639 " Returns current values of the p_digmax and p_digits flags for the x\n"
17640 " axis. p_digits is updated after the plot is drawn, so this routine\n"
17641 " should only be called after the call to plbox (or plbox3) is complete.\n"
17642 " See the PLplot documentation for more information.\n"
17644 " Redacted form: plgxax(p_digmax, p_digits)\n"
17646 " This function is used in example 31.\n"
17652 "plgxax(p_digmax, p_digits)\n"
17656 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17657 " number of digits for the x axis. If nonzero, the printed label\n"
17658 " has been switched to a floating-point representation when the\n"
17659 " number of digits exceeds this value.\n"
17661 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17662 " number of digits for the numeric labels (x axis) from the last\n"
17667 "Get y axis parameters\n"
17671 " Identical to plgxax, except that arguments are flags for y axis. See\n"
17672 " the description of plgxax for more detail.\n"
17674 " Redacted form: plgyax(p_digmax, p_digits)\n"
17676 " This function is used in example 31.\n"
17682 "plgyax(p_digmax, p_digits)\n"
17686 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17687 " number of digits for the y axis. If nonzero, the printed label\n"
17688 " has been switched to a floating-point representation when the\n"
17689 " number of digits exceeds this value.\n"
17691 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17692 " number of digits for the numeric labels (y axis) from the last\n"
17697 "Get z axis parameters\n"
17701 " Identical to plgxax, except that arguments are flags for z axis. See\n"
17702 " the description of plgxax for more detail.\n"
17704 " Redacted form: plgzax(p_digmax, p_digits)\n"
17706 " This function is used in example 31.\n"
17712 "plgzax(p_digmax, p_digits)\n"
17716 " p_digmax (PLINT_NC_SCALAR, output) : Returned value of the maximum\n"
17717 " number of digits for the z axis. If nonzero, the printed label\n"
17718 " has been switched to a floating-point representation when the\n"
17719 " number of digits exceeds this value.\n"
17721 " p_digits (PLINT_NC_SCALAR, output) : Returned value of the actual\n"
17722 " number of digits for the numeric labels (z axis) from the last\n"
17727 "Plot a histogram from unbinned data\n"
17731 " Plots a histogram from n data points stored in the data vector. This\n"
17732 " routine bins the data into nbin bins equally spaced between datmin and\n"
17733 " datmax, and calls plbin to draw the resulting histogram. Parameter\n"
17734 " opt allows, among other things, the histogram either to be plotted in\n"
17735 " an existing window or causes plhist to call plenv with suitable limits\n"
17736 " before plotting the histogram.\n"
17738 " Redacted form: plhist(data, datmin, datmax, nbin, opt)\n"
17740 " This function is used in example 5.\n"
17746 "plhist(n, data, datmin, datmax, nbin, opt)\n"
17750 " n (PLINT, input) : Number of data points.\n"
17752 " data (PLFLT_VECTOR, input) : A vector containing the values of the\n"
17753 " n data points.\n"
17755 " datmin (PLFLT, input) : Left-hand edge of lowest-valued bin.\n"
17757 " datmax (PLFLT, input) : Right-hand edge of highest-valued bin.\n"
17759 " nbin (PLINT, input) : Number of (equal-sized) bins into which to\n"
17760 " divide the interval xmin to xmax.\n"
17762 " opt (PLINT, input) : Is a combination of several flags:\n"
17763 " opt=PL_HIST_DEFAULT: The axes are automatically rescaled to fit\n"
17764 " the histogram data, the outer bins are expanded to fill up the\n"
17765 " entire x-axis, data outside the given extremes are assigned to the\n"
17766 " outer bins and bins of zero height are simply drawn.\n"
17767 " opt=PL_HIST_NOSCALING|...: The existing axes are not rescaled\n"
17768 " to fit the histogram data, without this flag, plenv is called\n"
17769 " to set the world coordinates.\n"
17770 " opt=PL_HIST_IGNORE_OUTLIERS|...: Data outside the given\n"
17771 " extremes are not taken into account. This option should\n"
17772 " probably be combined with opt=PL_HIST_NOEXPAND|..., so as to\n"
17773 " properly present the data.\n"
17774 " opt=PL_HIST_NOEXPAND|...: The outer bins are drawn with equal\n"
17775 " size as the ones inside.\n"
17776 " opt=PL_HIST_NOEMPTY|...: Bins with zero height are not drawn\n"
17777 " (there is a gap for such bins).\n"
17781 "Convert HLS color to RGB\n"
17785 " Convert HLS color coordinates to RGB.\n"
17787 " Redacted form: General: plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17790 " This function is used in example 2.\n"
17796 "plhlsrgb(h, l, s, p_r, p_g, p_b)\n"
17800 " h (PLFLT, input) : Hue in degrees (0.0-360.0) on the color\n"
17803 " l (PLFLT, input) : Lightness expressed as a fraction (0.0-1.0) of\n"
17804 " the axis of the color cylinder.\n"
17806 " s (PLFLT, input) : Saturation expressed as a fraction (0.0-1.0) of\n"
17807 " the radius of the color cylinder.\n"
17809 " p_r (PLFLT_NC_SCALAR, output) : Returned value of the red intensity\n"
17810 " (0.0-1.0) of the color.\n"
17812 " p_g (PLFLT_NC_SCALAR, output) : Returned value of the green\n"
17813 " intensity (0.0-1.0) of the color.\n"
17815 " p_b (PLFLT_NC_SCALAR, output) : Returned value of the blue\n"
17816 " intensity (0.0-1.0) of the color.\n"
17820 "Initialize PLplot\n"
17824 " Initializing the plotting package. The program prompts for the device\n"
17825 " keyword or number of the desired output device. Hitting a RETURN in\n"
17826 " response to the prompt is the same as selecting the first device.\n"
17827 " plinit will issue no prompt if either the device was specified\n"
17828 " previously (via command line flag, the plsetopt function, or the\n"
17829 " plsdev function), or if only one device is enabled when PLplot is\n"
17830 " installed. If subpages have been specified, the output device is\n"
17831 " divided into nx by ny subpages, each of which may be used\n"
17832 " independently. If plinit is called again during a program, the\n"
17833 " previously opened file will be closed. The subroutine pladv is used\n"
17834 " to advance from one subpage to the next.\n"
17836 " Redacted form: plinit()\n"
17838 " This function is used in all of the examples.\n"
17848 "Draw a line between two points\n"
17852 " Joins the point (\n"
17858 " Redacted form: pljoin(x1,y1,x2,y2)\n"
17860 " This function is used in examples 3 and 14.\n"
17866 "pljoin(x1, y1, x2, y2)\n"
17870 " x1 (PLFLT, input) : x coordinate of first point.\n"
17872 " y1 (PLFLT, input) : y coordinate of first point.\n"
17874 " x2 (PLFLT, input) : x coordinate of second point.\n"
17876 " y2 (PLFLT, input) : y coordinate of second point.\n"
17880 "Simple routine to write labels\n"
17884 " Routine for writing simple labels. Use plmtex for more complex labels.\n"
17886 " Redacted form: pllab(xlabel, ylabel, tlabel)\n"
17888 " This function is used in examples 1, 5, 9, 12, 14-16, 20-22, and 29.\n"
17894 "pllab(xlabel, ylabel, tlabel)\n"
17898 " xlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17899 " the label for the x axis.\n"
17901 " ylabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17902 " the label for the y axis.\n"
17904 " tlabel (PLCHAR_VECTOR, input) : A UTF-8 character string specifying\n"
17905 " the title of the plot.\n"
17909 "Plot legend using discretely annotated filled boxes, lines, and/or lines of symbols\n"
17913 " Routine for creating a discrete plot legend with a plotted filled box,\n"
17914 " line, and/or line of symbols for each annotated legend entry. (See\n"
17915 " plcolorbar for similar functionality for creating continuous color\n"
17916 " bars.) The arguments of pllegend provide control over the location\n"
17917 " and size of the legend as well as the location and characteristics of\n"
17918 " the elements (most of which are optional) within that legend. The\n"
17919 " resulting legend is clipped at the boundaries of the current subpage.\n"
17920 " (N.B. the adopted coordinate system used for some of the parameters is\n"
17921 " defined in the documentation of the position parameter.)\n"
17923 " Redacted form: pllegend(p_legend_width, p_legend_height, opt,\n"
17924 " position, x, y, plot_width, bg_color, bb_color, bb_style, nrow,\n"
17925 " ncolumn, opt_array, text_offset, text_scale, text_spacing,\n"
17926 " test_justification, text_colors, text, box_colors, box_patterns,\n"
17927 " box_scales, box_line_widths, line_colors, line_styles, line_widths,\n"
17928 " symbol_colors, symbol_scales, symbol_numbers, symbols)\n"
17930 " This function is used in examples 4, 26, and 33.\n"
17936 "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"
17940 " p_legend_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17941 " legend width in adopted coordinates. This quantity is calculated\n"
17942 " from plot_width, text_offset, ncolumn (possibly modified inside\n"
17943 " the routine depending on nlegend and nrow), and the length\n"
17944 " (calculated internally) of the longest text string.\n"
17946 " p_legend_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
17947 " legend height in adopted coordinates. This quantity is calculated\n"
17948 " from text_scale, text_spacing, and nrow (possibly modified inside\n"
17949 " the routine depending on nlegend and nrow).\n"
17951 " opt (PLINT, input) : opt contains bits controlling the overall\n"
17952 " legend. If the PL_LEGEND_TEXT_LEFT bit is set, put the text area\n"
17953 " on the left of the legend and the plotted area on the right.\n"
17954 " Otherwise, put the text area on the right of the legend and the\n"
17955 " plotted area on the left. If the PL_LEGEND_BACKGROUND bit is set,\n"
17956 " plot a (semitransparent) background for the legend. If the\n"
17957 " PL_LEGEND_BOUNDING_BOX bit is set, plot a bounding box for the\n"
17958 " legend. If the PL_LEGEND_ROW_MAJOR bit is set and (both of the\n"
17959 " possibly internally transformed) nrow > 1 and ncolumn > 1, then\n"
17960 " plot the resulting array of legend entries in row-major order.\n"
17961 " Otherwise, plot the legend entries in column-major order.\n"
17963 " position (PLINT, input) : position contains bits which control the\n"
17964 " overall position of the legend and the definition of the adopted\n"
17965 " coordinates used for positions just like what is done for the\n"
17966 " position argument for plcolorbar. However, note that the defaults\n"
17967 " for the position bits (see below) are different than the\n"
17968 " plcolorbar case. The combination of the PL_POSITION_LEFT,\n"
17969 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
17970 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
17971 " the 16 possible standard positions (the 4 corners and centers of\n"
17972 " the 4 sides for both the inside and outside cases) of the legend\n"
17973 " relative to the adopted coordinate system. The corner positions\n"
17974 " are specified by the appropriate combination of two of the\n"
17975 " PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
17976 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
17977 " value of one of those bits. The adopted coordinates are\n"
17978 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
17979 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
17980 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
17981 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
17982 " then use the combination of PL_POSITION_RIGHT and PL_POSITION_TOP.\n"
17983 " If neither of PL_POSITION_INSIDE or PL_POSITION_OUTSIDE is set,\n"
17984 " use PL_POSITION_INSIDE. If neither of PL_POSITION_VIEWPORT or\n"
17985 " PL_POSITION_SUBPAGE is set, use PL_POSITION_VIEWPORT.\n"
17987 " x (PLFLT, input) : X offset of the legend position in adopted\n"
17988 " coordinates from the specified standard position of the legend.\n"
17989 " For positive x, the direction of motion away from the standard\n"
17990 " position is inward/outward from the standard corner positions or\n"
17991 " standard left or right positions if the\n"
17992 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
17993 " For the standard top or bottom positions, the direction of motion\n"
17994 " is toward positive X.\n"
17996 " y (PLFLT, input) : Y offset of the legend position in adopted\n"
17997 " coordinates from the specified standard position of the legend.\n"
17998 " For positive y, the direction of motion away from the standard\n"
17999 " position is inward/outward from the standard corner positions or\n"
18000 " standard top or bottom positions if the\n"
18001 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position. For\n"
18002 " the standard left or right positions, the direction of motion is\n"
18003 " toward positive Y.\n"
18005 " plot_width (PLFLT, input) : Horizontal width in adopted coordinates\n"
18006 " of the plot area (where the colored boxes, lines, and/or lines of\n"
18007 " symbols are drawn) of the legend.\n"
18009 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18010 " legend (PL_LEGEND_BACKGROUND).\n"
18012 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18013 " for the legend (PL_LEGEND_BOUNDING_BOX).\n"
18015 " bb_style (PLINT, input) : The pllsty style number for the\n"
18016 " bounding-box line for the legend (PL_LEGEND_BACKGROUND).\n"
18018 " nrow (PLINT, input) : The number of rows in the matrix used to\n"
18020 " nlegend legend entries. For internal transformations of\n"
18021 " nrow, see further remarks under\n"
18024 " ncolumn (PLINT, input) : The number of columns in the matrix used\n"
18026 " nlegend legend entries. For internal transformations of\n"
18027 " ncolumn, see further remarks under\n"
18030 " nlegend (PLINT, input) : Number of legend entries. The above\n"
18032 " ncolumn values are transformed internally to be consistent with\n"
18033 " nlegend. If either\n"
18035 " ncolumn is non-positive it is replaced by 1. If the resulting product\n"
18038 " ncolumn is less than\n"
18039 " nlegend, the smaller of the two (or\n"
18042 " ncolumn) is increased so the product is >=\n"
18043 " nlegend. Thus, for example, the common\n"
18045 " ncolumn = 0 case is transformed internally to\n"
18048 " ncolumn = 1; i.e., the usual case of a legend rendered as a single\n"
18051 " opt_array (PLINT_VECTOR, input) : A vector of\n"
18052 " nlegend values of options to control each individual plotted area\n"
18053 " corresponding to a legend entry. If the\n"
18054 " PL_LEGEND_NONE bit is set, then nothing is plotted in the plotted\n"
18056 " PL_LEGEND_COLOR_BOX,\n"
18057 " PL_LEGEND_LINE, and/or\n"
18058 " PL_LEGEND_SYMBOL bits are set, the area corresponding to a legend\n"
18059 " entry is plotted with a colored box; a line; and/or a line of\n"
18062 " text_offset (PLFLT, input) : Offset of the text area from the plot\n"
18063 " area in units of character width.\n"
18065 " text_scale (PLFLT, input) : Character height scale for text\n"
18068 " text_spacing (PLFLT, input) : Vertical spacing in units of the\n"
18069 " character height from one legend entry to the next.\n"
18071 " text_justification (PLFLT, input) : Justification parameter used\n"
18072 " for text justification. The most common values of\n"
18073 " text_justification are 0., 0.5, or 1. corresponding to a text that\n"
18074 " is left justified, centred, or right justified within the text\n"
18075 " area, but other values are allowed as well.\n"
18077 " text_colors (PLINT_VECTOR, input) : A vector containing\n"
18078 " nlegend cmap0 text colors.\n"
18080 " text (PLCHAR_MATRIX, input) : A vector of\n"
18081 " nlegend UTF-8 character strings containing the legend annotations.\n"
18083 " box_colors (PLINT_VECTOR, input) : A vector containing\n"
18084 " nlegend cmap0 colors for the discrete colored boxes (\n"
18085 " PL_LEGEND_COLOR_BOX).\n"
18087 " box_patterns (PLINT_VECTOR, input) : A vector containing\n"
18088 " nlegend patterns (plpsty indices) for the discrete colored boxes (\n"
18089 " PL_LEGEND_COLOR_BOX).\n"
18091 " box_scales (PLFLT_VECTOR, input) : A vector containing\n"
18092 " nlegend scales (units of fraction of character height) for the height\n"
18093 " of the discrete colored boxes (\n"
18094 " PL_LEGEND_COLOR_BOX).\n"
18096 " box_line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18097 " nlegend line widths for the patterns specified by box_patterns (\n"
18098 " PL_LEGEND_COLOR_BOX).\n"
18100 " line_colors (PLINT_VECTOR, input) : A vector containing\n"
18101 " nlegend cmap0 line colors (\n"
18102 " PL_LEGEND_LINE).\n"
18104 " line_styles (PLINT_VECTOR, input) : A vector containing\n"
18105 " nlegend line styles (plsty indices) (\n"
18106 " PL_LEGEND_LINE).\n"
18108 " line_widths (PLFLT_VECTOR, input) : A vector containing\n"
18109 " nlegend line widths (\n"
18110 " PL_LEGEND_LINE).\n"
18112 " symbol_colors (PLINT_VECTOR, input) : A vector containing\n"
18113 " nlegend cmap0 symbol colors (\n"
18114 " PL_LEGEND_SYMBOL).\n"
18116 " symbol_scales (PLFLT_VECTOR, input) : A vector containing\n"
18117 " nlegend scale values for the symbol height (\n"
18118 " PL_LEGEND_SYMBOL).\n"
18120 " symbol_numbers (PLINT_VECTOR, input) : A vector containing\n"
18121 " nlegend numbers of symbols to be drawn across the width of the plotted\n"
18123 " PL_LEGEND_SYMBOL).\n"
18125 " symbols (PLCHAR_MATRIX, input) : A vector of\n"
18126 " nlegend UTF-8 character strings containing the legend symbols. (\n"
18127 " PL_LEGEND_SYMBOL).\n"
18131 "Plot color bar for image, shade or gradient plots\n"
18135 " Routine for creating a continuous color bar for image, shade, or\n"
18136 " gradient plots. (See pllegend for similar functionality for creating\n"
18137 " legends with discrete elements). The arguments of plcolorbar provide\n"
18138 " control over the location and size of the color bar as well as the\n"
18139 " location and characteristics of the elements (most of which are\n"
18140 " optional) within that color bar. The resulting color bar is clipped\n"
18141 " at the boundaries of the current subpage. (N.B. the adopted coordinate\n"
18142 " system used for some of the parameters is defined in the documentation\n"
18143 " of the position parameter.)\n"
18145 " Redacted form: plcolorbar(p_colorbar_width, p_colorbar_height, opt,\n"
18146 " position, x, y, x_length, y_length, bg_color, bb_color, bb_style,\n"
18147 " low_cap_color, high_cap_color, cont_color, cont_width, label_opts,\n"
18148 " labels, axis_opts, ticks, sub_ticks, values)\n"
18150 " This function is used in examples 16 and 33.\n"
18156 "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"
18160 " p_colorbar_width (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18161 " labelled and decorated color bar width in adopted coordinates.\n"
18163 " p_colorbar_height (PLFLT_NC_SCALAR, output) : Returned value of the\n"
18164 " labelled and decorated color bar height in adopted coordinates.\n"
18166 " opt (PLINT, input) : opt contains bits controlling the overall\n"
18167 " color bar. The orientation (direction of the maximum value) of\n"
18168 " the color bar is specified with PL_ORIENT_RIGHT, PL_ORIENT_TOP,\n"
18169 " PL_ORIENT_LEFT, or PL_ORIENT_BOTTOM. If none of these bits are\n"
18170 " specified, the default orientation is toward the top if the\n"
18171 " colorbar is placed on the left or right of the viewport or toward\n"
18172 " the right if the colorbar is placed on the top or bottom of the\n"
18173 " viewport. If the PL_COLORBAR_BACKGROUND bit is set, plot a\n"
18174 " (semitransparent) background for the color bar. If the\n"
18175 " PL_COLORBAR_BOUNDING_BOX bit is set, plot a bounding box for the\n"
18176 " color bar. The type of color bar must be specified with one of\n"
18177 " PL_COLORBAR_IMAGE, PL_COLORBAR_SHADE, or PL_COLORBAR_GRADIENT. If\n"
18178 " more than one of those bits is set only the first one in the above\n"
18179 " list is honored. The position of the (optional) label/title can be\n"
18180 " specified with PL_LABEL_RIGHT, PL_LABEL_TOP, PL_LABEL_LEFT, or\n"
18181 " PL_LABEL_BOTTOM. If no label position bit is set then no label\n"
18182 " will be drawn. If more than one of this list of bits is specified,\n"
18183 " only the first one on the list is honored. End-caps for the color\n"
18184 " bar can added with PL_COLORBAR_CAP_LOW and PL_COLORBAR_CAP_HIGH.\n"
18185 " If a particular color bar cap option is not specified then no cap\n"
18186 " will be drawn for that end. As a special case for\n"
18187 " PL_COLORBAR_SHADE, the option PL_COLORBAR_SHADE_LABEL can be\n"
18188 " specified. If this option is provided then any tick marks and tick\n"
18189 " labels will be placed at the breaks between shaded segments. TODO:\n"
18190 " This should be expanded to support custom placement of tick marks\n"
18191 " and tick labels at custom value locations for any color bar type.\n"
18193 " position (PLINT, input) : position contains bits which control the\n"
18194 " overall position of the color bar and the definition of the\n"
18195 " adopted coordinates used for positions just like what is done for\n"
18196 " the position argument for pllegend. However, note that the\n"
18197 " defaults for the position bits (see below) are different than the\n"
18198 " pllegend case. The combination of the PL_POSITION_LEFT,\n"
18199 " PL_POSITION_RIGHT, PL_POSITION_TOP, PL_POSITION_BOTTOM,\n"
18200 " PL_POSITION_INSIDE, and PL_POSITION_OUTSIDE bits specifies one of\n"
18201 " the 16 possible standard positions (the 4 corners and centers of\n"
18202 " the 4 sides for both the inside and outside cases) of the color\n"
18203 " bar relative to the adopted coordinate system. The corner\n"
18204 " positions are specified by the appropriate combination of two of\n"
18205 " the PL_POSITION_LEFT, PL_POSITION_RIGHT, PL_POSITION_TOP, and\n"
18206 " PL_POSITION_BOTTOM bits while the sides are specified by a single\n"
18207 " value of one of those bits. The adopted coordinates are\n"
18208 " normalized viewport coordinates if the PL_POSITION_VIEWPORT bit is\n"
18209 " set or normalized subpage coordinates if the PL_POSITION_SUBPAGE\n"
18210 " bit is set. Default position bits: If none of PL_POSITION_LEFT,\n"
18211 " PL_POSITION_RIGHT, PL_POSITION_TOP, or PL_POSITION_BOTTOM are set,\n"
18212 " then use PL_POSITION_RIGHT. If neither of PL_POSITION_INSIDE or\n"
18213 " PL_POSITION_OUTSIDE is set, use PL_POSITION_OUTSIDE. If neither of\n"
18214 " PL_POSITION_VIEWPORT or PL_POSITION_SUBPAGE is set, use\n"
18215 " PL_POSITION_VIEWPORT.\n"
18217 " x (PLFLT, input) : X offset of the color bar position in adopted\n"
18218 " coordinates from the specified standard position of the color bar.\n"
18219 " For positive x, the direction of motion away from the standard\n"
18220 " position is inward/outward from the standard corner positions or\n"
18221 " standard left or right positions if the\n"
18222 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18223 " For the standard top or bottom positions, the direction of motion\n"
18224 " is toward positive X.\n"
18226 " y (PLFLT, input) : Y offset of the color bar position in adopted\n"
18227 " coordinates from the specified standard position of the color bar.\n"
18228 " For positive y, the direction of motion away from the standard\n"
18229 " position is inward/outward from the standard corner positions or\n"
18230 " standard top or bottom positions if the\n"
18231 " PL_POSITION_INSIDE/PL_POSITION_OUTSIDE bit is set in position.\n"
18232 " For the standard left or right positions, the direction of motion\n"
18233 " is toward positive Y.\n"
18235 " x_length (PLFLT, input) : Length of the body of the color bar in\n"
18236 " the X direction in adopted coordinates.\n"
18238 " y_length (PLFLT, input) : Length of the body of the color bar in\n"
18239 " the Y direction in adopted coordinates.\n"
18241 " bg_color (PLINT, input) : The cmap0 color of the background for the\n"
18242 " color bar (PL_COLORBAR_BACKGROUND).\n"
18244 " bb_color (PLINT, input) : The cmap0 color of the bounding-box line\n"
18245 " for the color bar (PL_COLORBAR_BOUNDING_BOX).\n"
18247 " bb_style (PLINT, input) : The pllsty style number for the\n"
18248 " bounding-box line for the color bar (PL_COLORBAR_BACKGROUND).\n"
18250 " low_cap_color (PLFLT, input) : The cmap1 color of the low-end color\n"
18251 " bar cap, if it is drawn (PL_COLORBAR_CAP_LOW).\n"
18253 " high_cap_color (PLFLT, input) : The cmap1 color of the high-end\n"
18254 " color bar cap, if it is drawn (PL_COLORBAR_CAP_HIGH).\n"
18256 " cont_color (PLINT, input) : The cmap0 contour color for\n"
18257 " PL_COLORBAR_SHADE plots. This is passed directly to plshades, so\n"
18258 " it will be interpreted according to the design of plshades.\n"
18260 " cont_width (PLFLT, input) : Contour width for PL_COLORBAR_SHADE\n"
18261 " plots. This is passed directly to plshades, so it will be\n"
18262 " interpreted according to the design of plshades.\n"
18264 " n_labels (PLINT, input) : Number of labels to place around the\n"
18267 " label_opts (PLINT_VECTOR, input) : A vector of options for each of\n"
18268 " n_labels labels.\n"
18270 " labels (PLCHAR_MATRIX, input) : A vector of\n"
18271 " n_labels UTF-8 character strings containing the labels for the color\n"
18272 " bar. Ignored if no label position is specified with one of the\n"
18273 " PL_COLORBAR_LABEL_RIGHT, PL_COLORBAR_LABEL_TOP,\n"
18274 " PL_COLORBAR_LABEL_LEFT, or PL_COLORBAR_LABEL_BOTTOM bits in the\n"
18275 " corresponding label_opts field.\n"
18277 " n_axes (PLINT, input) : Number of axis definitions provided. This\n"
18278 " value must be greater than 0. It is typically 1 (numerical axis\n"
18279 " labels are provided for one of the long edges of the color bar),\n"
18280 " but it can be larger if multiple numerical axis labels for the\n"
18281 " long edges of the color bar are desired.\n"
18283 " axis_opts (PLCHAR_MATRIX, input) : A vector of\n"
18284 " n_axes ascii character strings containing options (interpreted as for\n"
18285 " plbox) for the color bar's axis definitions.\n"
18287 " ticks (PLFLT_VECTOR, input) : A vector of n_axes values of the\n"
18288 " spacing of the major tick marks (interpreted as for plbox) for the\n"
18289 " color bar's axis definitions.\n"
18291 " sub_ticks (PLINT_VECTOR, input) : A vector of n_axes values of the\n"
18292 " number of subticks (interpreted as for plbox) for the color bar's\n"
18293 " axis definitions.\n"
18295 " n_values (PLINT_VECTOR, input) : A vector containing the number of\n"
18296 " elements in each of the n_axes rows of the values matrix.\n"
18298 " values (PLFLT_MATRIX, input) : A matrix containing the numeric\n"
18299 " values for the data range represented by the color bar. For a row\n"
18300 " index of i_axis (where 0 < i_axis < n_axes), the number of\n"
18301 " elements in the row is specified by n_values[i_axis]. For\n"
18302 " PL_COLORBAR_IMAGE and PL_COLORBAR_GRADIENT the number of elements\n"
18303 " is 2, and the corresponding row elements of the values matrix are\n"
18304 " the minimum and maximum value represented by the colorbar. For\n"
18305 " PL_COLORBAR_SHADE, the number and values of the elements of a row\n"
18306 " of the values matrix is interpreted the same as the nlevel and\n"
18307 " clevel arguments of plshades.\n"
18311 "Sets the 3D position of the light source\n"
18315 " Sets the 3D position of the light source for use with plsurf3d and\n"
18318 " Redacted form: pllightsource(x, y, z)\n"
18320 " This function is used in example 8.\n"
18326 "pllightsource(x, y, z)\n"
18330 " x (PLFLT, input) : X-coordinate of the light source.\n"
18332 " y (PLFLT, input) : Y-coordinate of the light source.\n"
18334 " z (PLFLT, input) : Z-coordinate of the light source.\n"
18342 " Draws line defined by n points in x and y.\n"
18344 " Redacted form: plline(x, y)\n"
18346 " This function is used in examples 1, 3, 4, 9, 12-14, 16, 18, 20, 22,\n"
18347 " 25-27, and 29.\n"
18353 "plline(n, x, y)\n"
18357 " n (PLINT, input) : Number of points defining line.\n"
18359 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18362 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18367 "Draw a line in 3 space\n"
18371 " Draws line in 3 space defined by n points in x, y, and z. You must\n"
18372 " first set up the viewport, the 2d viewing window (in world\n"
18373 " coordinates), and the 3d normalized coordinate box. See x18c.c for\n"
18376 " Redacted form: plline3(x, y, z)\n"
18378 " This function is used in example 18.\n"
18384 "plline3(n, x, y, z)\n"
18388 " n (PLINT, input) : Number of points defining line.\n"
18390 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
18393 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
18396 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
18401 "Select line style\n"
18405 " This sets the line style according to one of eight predefined patterns\n"
18406 " (also see plstyl).\n"
18408 " Redacted form: pllsty(lin)\n"
18410 " This function is used in examples 9, 12, 22, and 25.\n"
18420 " lin (PLINT, input) : Integer value between 1 and 8. Line style 1 is\n"
18421 " a continuous line, line style 2 is a line with short dashes and\n"
18422 " gaps, line style 3 is a line with long dashes and gaps, line style\n"
18423 " 4 has long dashes and short gaps and so on.\n"
18427 "Plot surface mesh\n"
18431 " Plots a surface mesh within the environment set up by plw3d. The\n"
18432 " surface is defined by the matrix z[\n"
18434 " ny] , the point z[i][j] being the value of the function at (\n"
18436 " y[j]). Note that the points in vectors x and y do not need to be\n"
18437 " equally spaced, but must be stored in ascending order. The parameter\n"
18438 " opt controls the way in which the surface is displayed. For further\n"
18439 " details see the PLplot documentation.\n"
18441 " Redacted form: plmesh(x, y, z, opt)\n"
18443 " This function is used in example 11.\n"
18449 "plmesh(x, y, z, nx, ny, opt)\n"
18453 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18454 " which the function is evaluated.\n"
18456 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18457 " which the function is evaluated.\n"
18459 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18460 " plot. Should have dimensions of\n"
18464 " nx (PLINT, input) : Number of x values at which function has been\n"
18467 " ny (PLINT, input) : Number of y values at which function has been\n"
18470 " opt (PLINT, input) : Determines the way in which the surface is\n"
18471 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18472 " function of x for each value of y[j] .\n"
18473 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18474 " for each value of x[i] .\n"
18475 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18476 " at which function is defined.\n"
18480 "Magnitude colored plot surface mesh with contour\n"
18484 " A more powerful form of plmesh: the surface mesh can be colored\n"
18485 " accordingly to the current z value being plotted, a contour plot can\n"
18486 " be drawn at the base XY plane, and a curtain can be drawn between the\n"
18487 " plotted function border and the base XY plane.\n"
18489 " Redacted form: plmeshc(x, y, z, opt, clevel)\n"
18491 " This function is used in example 11.\n"
18497 "plmeshc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18501 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18502 " which the function is evaluated.\n"
18504 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18505 " which the function is evaluated.\n"
18507 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18508 " plot. Should have dimensions of\n"
18512 " nx (PLINT, input) : Number of x values at which function is\n"
18515 " ny (PLINT, input) : Number of y values at which function is\n"
18518 " opt (PLINT, input) : Determines the way in which the surface is\n"
18519 " represented. To specify more than one option just add the options,\n"
18520 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18521 " showing z as a function of x for each value of y[j] .\n"
18522 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18523 " for each value of x[i] .\n"
18524 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18525 " at which function is defined.\n"
18526 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18527 " the z value being plotted. The color is used from the current\n"
18529 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18530 " using parameters\n"
18533 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18534 " the borders of the plotted function.\n"
18537 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18540 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18544 "Creates a new stream and makes it the default\n"
18548 " Creates a new stream and makes it the default. Differs from using\n"
18549 " plsstrm, in that a free stream number is found, and returned.\n"
18550 " Unfortunately, I have to start at stream 1 and work upward, since\n"
18551 " stream 0 is preallocated. One of the big flaws in the PLplot API is\n"
18552 " that no initial, library-opening call is required. So stream 0 must\n"
18553 " be preallocated, and there is no simple way of determining whether it\n"
18554 " is already in use or not.\n"
18556 " Redacted form: plmkstrm(p_strm)\n"
18558 " This function is used in examples 1 and 20.\n"
18564 "plmkstrm(p_strm)\n"
18568 " p_strm (PLINT_NC_SCALAR, output) : Returned value of the stream\n"
18569 " number of the created stream.\n"
18573 "Write text relative to viewport boundaries\n"
18577 " Writes text at a specified position relative to the viewport\n"
18578 " boundaries. Text may be written inside or outside the viewport, but\n"
18579 " is clipped at the subpage boundaries. The reference point of a string\n"
18580 " lies along a line passing through the string at half the height of a\n"
18581 " capital letter. The position of the reference point along this line\n"
18582 " is determined by just, and the position of the reference point\n"
18583 " relative to the viewport is set by disp and pos.\n"
18585 " Redacted form: General: plmtex(side, disp, pos, just, text)\n"
18588 " This function is used in examples 3, 4, 6-8, 11, 12, 14, 18, 23, and\n"
18595 "plmtex(side, disp, pos, just, text)\n"
18599 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18600 " the side of the viewport along which the text is to be written.\n"
18601 " The string must be one of: b: Bottom of viewport, text written\n"
18602 " parallel to edge.\n"
18603 " bv: Bottom of viewport, text written at right angles to edge.\n"
18604 " l: Left of viewport, text written parallel to edge.\n"
18605 " lv: Left of viewport, text written at right angles to edge.\n"
18606 " r: Right of viewport, text written parallel to edge.\n"
18607 " rv: Right of viewport, text written at right angles to edge.\n"
18608 " t: Top of viewport, text written parallel to edge.\n"
18609 " tv: Top of viewport, text written at right angles to edge.\n"
18612 " disp (PLFLT, input) : Position of the reference point of string,\n"
18613 " measured outwards from the specified viewport edge in units of the\n"
18614 " current character height. Use negative disp to write within the\n"
18617 " pos (PLFLT, input) : Position of the reference point of string\n"
18618 " along the specified edge, expressed as a fraction of the length of\n"
18621 " just (PLFLT, input) : Specifies the position of the string relative\n"
18622 " to its reference point. If just=0. , the reference point is at\n"
18623 " the left and if just=1. , it is at the right of the string. Other\n"
18624 " values of just give intermediate justifications.\n"
18626 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18631 "Write text relative to viewport boundaries in 3D plots\n"
18635 " Writes text at a specified position relative to the viewport\n"
18636 " boundaries. Text may be written inside or outside the viewport, but\n"
18637 " is clipped at the subpage boundaries. The reference point of a string\n"
18638 " lies along a line passing through the string at half the height of a\n"
18639 " capital letter. The position of the reference point along this line\n"
18640 " is determined by just, and the position of the reference point\n"
18641 " relative to the viewport is set by disp and pos.\n"
18643 " Redacted form: plmtex3(side, disp, pos, just, text)\n"
18645 " This function is used in example 28.\n"
18651 "plmtex3(side, disp, pos, just, text)\n"
18655 " side (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
18656 " the side of the viewport along which the text is to be written.\n"
18657 " The string should contain one or more of the following characters:\n"
18658 " [xyz][ps][v]. Only one label is drawn at a time, i.e. xyp will\n"
18659 " only label the X axis, not both the X and Y axes. x: Label the X\n"
18661 " y: Label the Y axis.\n"
18662 " z: Label the Z axis.\n"
18663 " p: Label the primary axis. For Z this is the leftmost Z axis.\n"
18664 " For X it is the axis that starts at y-min. For Y it is the\n"
18665 " axis that starts at x-min.\n"
18666 " s: Label the secondary axis.\n"
18667 " v: Draw the text perpendicular to the axis.\n"
18670 " disp (PLFLT, input) : Position of the reference point of string,\n"
18671 " measured outwards from the specified viewport edge in units of the\n"
18672 " current character height. Use negative disp to write within the\n"
18675 " pos (PLFLT, input) : Position of the reference point of string\n"
18676 " along the specified edge, expressed as a fraction of the length of\n"
18679 " just (PLFLT, input) : Specifies the position of the string relative\n"
18680 " to its reference point. If just=0. , the reference point is at\n"
18681 " the left and if just=1. , it is at the right of the string. Other\n"
18682 " values of just give intermediate justifications.\n"
18684 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
18689 "Plot 3-d surface plot\n"
18693 " Plots a three-dimensional surface plot within the environment set up\n"
18694 " by plw3d. The surface is defined by the matrix z[\n"
18696 " ny] , the point z[i][j] being the value of the function at (\n"
18698 " y[j]). Note that the points in vectors x and y do not need to be\n"
18699 " equally spaced, but must be stored in ascending order. The parameter\n"
18700 " opt controls the way in which the surface is displayed. For further\n"
18701 " details see the PLplot documentation. The only difference between\n"
18702 " plmesh and plot3d is that plmesh draws the bottom side of the surface,\n"
18703 " while plot3d only draws the surface as viewed from the top.\n"
18705 " Redacted form: plot3d(x, y, z, opt, side)\n"
18707 " This function is used in examples 11 and 21.\n"
18713 "plot3d(x, y, z, nx, ny, opt, side)\n"
18717 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18718 " which the function is evaluated.\n"
18720 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18721 " which the function is evaluated.\n"
18723 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18724 " plot. Should have dimensions of\n"
18728 " nx (PLINT, input) : Number of x values at which function is\n"
18731 " ny (PLINT, input) : Number of y values at which function is\n"
18734 " opt (PLINT, input) : Determines the way in which the surface is\n"
18735 " represented: opt=DRAW_LINEX : Lines are drawn showing z as a\n"
18736 " function of x for each value of y[j] .\n"
18737 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18738 " for each value of x[i] .\n"
18739 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18740 " at which function is defined.\n"
18743 " side (PLBOOL, input) : Flag to indicate whether or not ``sides''\n"
18744 " should be draw on the figure. If side is true sides are drawn,\n"
18745 " otherwise no sides are drawn.\n"
18749 "Magnitude colored plot surface with contour\n"
18753 " Aside from dropping the\n"
18754 " side functionality this is a more powerful form of plot3d: the surface\n"
18755 " mesh can be colored accordingly to the current z value being plotted,\n"
18756 " a contour plot can be drawn at the base XY plane, and a curtain can be\n"
18757 " drawn between the plotted function border and the base XY plane. The\n"
18758 " arguments are identical to those of plmeshc. The only difference\n"
18759 " between plmeshc and plot3dc is that plmeshc draws the bottom side of\n"
18760 " the surface, while plot3dc only draws the surface as viewed from the\n"
18763 " Redacted form: General: plot3dc(x, y, z, opt, clevel)\n"
18766 " This function is used in example 21.\n"
18772 "plot3dc(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18776 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18777 " which the function is evaluated.\n"
18779 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18780 " which the function is evaluated.\n"
18782 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18783 " plot. Should have dimensions of\n"
18787 " nx (PLINT, input) : Number of x values at which function is\n"
18790 " ny (PLINT, input) : Number of y values at which function is\n"
18793 " opt (PLINT, input) : Determines the way in which the surface is\n"
18794 " represented. To specify more than one option just add the options,\n"
18795 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18796 " showing z as a function of x for each value of y[j] .\n"
18797 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18798 " for each value of x[i] .\n"
18799 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18800 " at which function is defined.\n"
18801 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18802 " the z value being plotted. The color is used from the current\n"
18804 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18805 " using parameters\n"
18808 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18809 " the borders of the plotted function.\n"
18812 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18815 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18819 "Magnitude colored plot surface with contour for z[x][y] with y index limits\n"
18823 " When the implementation is completed this variant of plot3dc (see that\n"
18824 " function's documentation for more details) should be suitable for the\n"
18825 " case where the area of the x, y coordinate grid where z is defined can\n"
18826 " be non-rectangular. The implementation is incomplete so the last 4\n"
18827 " parameters of plot3dcl; indexxmin, indexxmax, indexymin, and\n"
18828 " indexymax; are currently ignored and the functionality is otherwise\n"
18829 " identical to that of plot3dc.\n"
18831 " Redacted form: General: plot3dcl(x, y, z, opt, clevel, indexxmin,\n"
18832 " indexymin, indexymax)\n"
18835 " This function is not used in any example.\n"
18841 "plot3dcl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
18845 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18846 " which the function is evaluated.\n"
18848 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18849 " which the function is evaluated.\n"
18851 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18852 " plot. Should have dimensions of\n"
18856 " nx (PLINT, input) : Number of x values at which the function is\n"
18859 " ny (PLINT, input) : Number of y values at which the function is\n"
18862 " opt (PLINT, input) : Determines the way in which the surface is\n"
18863 " represented. To specify more than one option just add the options,\n"
18864 " e.g. DRAW_LINEXY + MAG_COLOR opt=DRAW_LINEX : Lines are drawn\n"
18865 " showing z as a function of x for each value of y[j] .\n"
18866 " opt=DRAW_LINEY : Lines are drawn showing z as a function of y\n"
18867 " for each value of x[i] .\n"
18868 " opt=DRAW_LINEXY : Network of lines is drawn connecting points\n"
18869 " at which function is defined.\n"
18870 " opt=MAG_COLOR : Each line in the mesh is colored according to\n"
18871 " the z value being plotted. The color is used from the current\n"
18873 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18874 " using parameters\n"
18877 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18878 " the borders of the plotted function.\n"
18881 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18884 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18886 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
18887 " corresponds to the first x index where z is defined.\n"
18889 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
18890 " which corresponds (by convention) to one more than the last x\n"
18891 " index value where z is defined.\n"
18893 " indexymin (PLINT_VECTOR, input) : A vector containing y index\n"
18894 " values which all must be ≥ 0. These values are the first y index\n"
18895 " where z is defined for a particular x index in the range from\n"
18896 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
18899 " indexymax (PLINT_VECTOR, input) : A vector containing y index\n"
18900 " values which all must be ≤ ny. These values correspond (by\n"
18901 " convention) to one more than the last y index where z is defined\n"
18902 " for a particular x index in the range from indexxmin to indexxmax\n"
18903 " - 1. The dimension of indexymax is indexxmax.\n"
18907 "Plot shaded 3-d surface plot\n"
18911 " Plots a three-dimensional shaded surface plot within the environment\n"
18912 " set up by plw3d. The surface is defined by the two-dimensional matrix\n"
18915 " ny], the point z[i][j] being the value of the function at (\n"
18917 " y[j]). Note that the points in vectors x and y do not need to be\n"
18918 " equally spaced, but must be stored in ascending order. For further\n"
18919 " details see the PLplot documentation.\n"
18921 " Redacted form: plsurf3d(x, y, z, opt, clevel)\n"
18923 " This function is not used in any examples.\n"
18929 "plsurf3d(x, y, z, nx, ny, opt, clevel, nlevel)\n"
18933 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
18934 " which the function is evaluated.\n"
18936 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
18937 " which the function is evaluated.\n"
18939 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
18940 " plot. Should have dimensions of\n"
18944 " nx (PLINT, input) : Number of x values at which function is\n"
18947 " ny (PLINT, input) : Number of y values at which function is\n"
18950 " opt (PLINT, input) : Determines the way in which the surface is\n"
18951 " represented. To specify more than one option just add the options,\n"
18952 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
18953 " connecting points at which function is defined.\n"
18954 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
18955 " using parameters\n"
18958 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
18959 " using parameters\n"
18962 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
18963 " the borders of the plotted function.\n"
18964 " opt=MAG_COLOR : the surface is colored according to the value\n"
18965 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
18966 " according to the intensity of the reflected light in the\n"
18967 " surface from a light source whose position is set using\n"
18968 " pllightsource.\n"
18971 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
18974 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
18978 "Plot shaded 3-d surface plot for z[x][y] with y index limits\n"
18982 " This variant of plsurf3d (see that function's documentation for more\n"
18983 " details) should be suitable for the case where the area of the x, y\n"
18984 " coordinate grid where z is defined can be non-rectangular. The limits\n"
18985 " of that grid are provided by the parameters indexxmin, indexxmax,\n"
18986 " indexymin, and indexymax.\n"
18988 " Redacted form: plsurf3dl(x, y, z, opt, clevel, indexxmin, indexymin,\n"
18991 " This function is used in example 8.\n"
18997 "plsurf3dl(x, y, z, nx, ny, opt, clevel, nlevel, indexxmin, indexxmax, indexymin, indexymax)\n"
19001 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates at\n"
19002 " which the function is evaluated.\n"
19004 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates at\n"
19005 " which the function is evaluated.\n"
19007 " z (PLFLT_MATRIX, input) : A matrix containing function values to\n"
19008 " plot. Should have dimensions of\n"
19012 " nx (PLINT, input) : Number of x values at which function is\n"
19015 " ny (PLINT, input) : Number of y values at which function is\n"
19018 " opt (PLINT, input) : Determines the way in which the surface is\n"
19019 " represented. To specify more than one option just add the options,\n"
19020 " e.g. FACETED + SURF_CONT opt=FACETED : Network of lines is drawn\n"
19021 " connecting points at which function is defined.\n"
19022 " opt=BASE_CONT : A contour plot is drawn at the base XY plane\n"
19023 " using parameters\n"
19026 " opt=SURF_CONT : A contour plot is drawn at the surface plane\n"
19027 " using parameters\n"
19030 " opt=DRAW_SIDES : draws a curtain between the base XY plane and\n"
19031 " the borders of the plotted function.\n"
19032 " opt=MAG_COLOR : the surface is colored according to the value\n"
19033 " of Z; if MAG_COLOR is not used, then the surface is colored\n"
19034 " according to the intensity of the reflected light in the\n"
19035 " surface from a light source whose position is set using\n"
19036 " pllightsource.\n"
19039 " clevel (PLFLT_VECTOR, input) : A vector containing the contour\n"
19042 " nlevel (PLINT, input) : Number of elements in the clevel vector.\n"
19044 " indexxmin (PLINT, input) : The index value (which must be ≥ 0) that\n"
19045 " corresponds to the first x index where z is defined.\n"
19047 " indexxmax (PLINT, input) : The index value (which must be ≤ nx)\n"
19048 " which corresponds (by convention) to one more than the last x\n"
19049 " index value where z is defined.\n"
19051 " indexymin (PLINT_VECTOR, input) : A vector containing the y index\n"
19052 " values which all must be ≥ 0. These values are the first y index\n"
19053 " where z is defined for a particular x index in the range from\n"
19054 " indexxmin to indexxmax - 1. The dimension of indexymin is\n"
19057 " indexymax (PLINT_VECTOR, input) : A vector containing the y index\n"
19058 " values which all must be ≤ ny. These values correspond (by\n"
19059 " convention) to one more than the last y index where z is defined\n"
19060 " for a particular x index in the range from indexxmin to indexxmax\n"
19061 " - 1. The dimension of indexymax is indexxmax.\n"
19065 "Parse command-line arguments\n"
19069 " Parse command-line arguments.\n"
19071 " plparseopts removes all recognized flags (decreasing argc\n"
19072 " accordingly), so that invalid input may be readily detected. It can\n"
19073 " also be used to process user command line flags. The user can merge\n"
19074 " an option table of type PLOptionTable into the internal option table\n"
19075 " info structure using plMergeOpts. Or, the user can specify that ONLY\n"
19076 " the external table(s) be parsed by calling plClearOpts before\n"
19079 " The default action taken by plparseopts is as follows:\n"
19080 " Returns with an error if an unrecognized option or badly formed\n"
19081 " option-value pair are encountered.\n"
19082 " Returns immediately (return code 0) when the first non-option command\n"
19083 " line argument is found.\n"
19084 " Returns with the return code of the option handler, if one was called.\n"
19086 " Deletes command line arguments from argv list as they are found, and\n"
19087 " decrements argc accordingly.\n"
19088 " Does not show \"invisible\" options in usage or help messages.\n"
19089 " Assumes the program name is contained in argv[0].\n"
19091 " These behaviors may be controlled through the\n"
19092 " mode argument.\n"
19094 " Redacted form: General: plparseopts(argv, mode)\n"
19097 " This function is used in all of the examples.\n"
19103 "PLINT plparseopts(p_argc, argv, mode)\n"
19107 " p_argc (int *, input/output) : Number of arguments.\n"
19109 " argv (PLCHAR_NC_MATRIX, input/output) : A vector of character\n"
19110 " strings containing *p_argc command-line arguments.\n"
19112 " mode (PLINT, input) : Parsing mode with the following\n"
19113 " possibilities: PL_PARSE_FULL (1) -- Full parsing of command line\n"
19114 " and all error messages enabled, including program exit when an\n"
19115 " error occurs. Anything on the command line that isn't recognized\n"
19116 " as a valid option or option argument is flagged as an error.\n"
19117 " PL_PARSE_QUIET (2) -- Turns off all output except in the case\n"
19119 " PL_PARSE_NODELETE (4) -- Turns off deletion of processed\n"
19121 " PL_PARSE_SHOWALL (8) -- Show invisible options\n"
19122 " PL_PARSE_NOPROGRAM (32) -- Specified if argv[0] is NOT a\n"
19123 " pointer to the program name.\n"
19124 " PL_PARSE_NODASH (64) -- Set if leading dash is NOT required.\n"
19125 " PL_PARSE_SKIP (128) -- Set to quietly skip over any\n"
19126 " unrecognized arguments.\n"
19130 "Set area line fill pattern\n"
19134 " Sets the area line fill pattern to be used, e.g., for calls to plfill.\n"
19135 " The pattern consists of 1 or 2 sets of parallel lines with specified\n"
19136 " inclinations and spacings. The arguments to this routine are the\n"
19137 " number of sets to use (1 or 2) followed by two vectors (with 1 or 2\n"
19138 " elements) specifying the inclinations in tenths of a degree and the\n"
19139 " spacing in micrometers. (See also plpsty)\n"
19141 " Redacted form: General: plpat(inc, del)\n"
19144 " This function is used in example 15.\n"
19150 "plpat(nlin, inc, del)\n"
19154 " nlin (PLINT, input) : Number of sets of lines making up the\n"
19155 " pattern, either 1 or 2.\n"
19157 " inc (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19158 " inclination in tenths of a degree. (Should be between -900 and\n"
19161 " del (PLINT_VECTOR, input) : A vector containing nlin values of the\n"
19162 " spacing in micrometers between the lines making up the pattern.\n"
19166 "Draw a line between two points, accounting for coordinate transforms\n"
19170 " Joins the point (\n"
19174 " y2) . If a global coordinate transform is defined then the line is\n"
19175 " broken in to n segments to approximate the path. If no transform is\n"
19176 " defined then this simply acts like a call to pljoin.\n"
19178 " Redacted form: plpath(n,x1,y1,x2,y2)\n"
19180 " This function is used in example 22.\n"
19186 "plpath(n, x1, y1, x2, y2)\n"
19190 " n (PLINT, input) : number of points to use to approximate the path.\n"
19192 " x1 (PLFLT, input) : x coordinate of first point.\n"
19194 " y1 (PLFLT, input) : y coordinate of first point.\n"
19196 " x2 (PLFLT, input) : x coordinate of second point.\n"
19198 " y2 (PLFLT, input) : y coordinate of second point.\n"
19202 "Plot a glyph at the specified points\n"
19206 " Plot a glyph at the specified points. (This function is largely\n"
19207 " superseded by plstring which gives access to many[!] more glyphs.)\n"
19208 " code=-1 means try to just draw a point. Right now it's just a move\n"
19209 " and a draw at the same place. Not ideal, since a sufficiently\n"
19210 " intelligent output device may optimize it away, or there may be faster\n"
19211 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19212 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19213 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19214 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19215 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19217 " Redacted form: plpoin(x, y, code)\n"
19219 " This function is used in examples 1, 6, 14, and 29.\n"
19225 "plpoin(n, x, y, code)\n"
19229 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19231 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19234 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19237 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19238 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19239 " each of the n points.\n"
19243 "Plot a glyph at the specified 3D points\n"
19247 " Plot a glyph at the specified 3D points. (This function is largely\n"
19248 " superseded by plstring3 which gives access to many[!] more glyphs.)\n"
19249 " Set up the call to this function similar to what is done for plline3.\n"
19250 " code=-1 means try to just draw a point. Right now it's just a move\n"
19251 " and a draw at the same place. Not ideal, since a sufficiently\n"
19252 " intelligent output device may optimize it away, or there may be faster\n"
19253 " ways of doing it. This is OK for now, though, and offers a 4X speedup\n"
19254 " over drawing a Hershey font \"point\" (which is actually diamond shaped\n"
19255 " and therefore takes 4 strokes to draw). If 0 < code < 32, then a\n"
19256 " useful (but small subset) of Hershey symbols is plotted. If 32 <=\n"
19257 " code <= 127 the corresponding printable ASCII character is plotted.\n"
19259 " Redacted form: plpoin3(x, y, z, code)\n"
19261 " This function is not used in any example.\n"
19267 "plpoin3(n, x, y, z, code)\n"
19271 " n (PLINT, input) : Number of points in the x and y vectors.\n"
19273 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
19276 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
19279 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
19282 " code (PLINT, input) : Hershey symbol code (in \"ascii-indexed\" form\n"
19283 " with -1 <= code <= 127) corresponding to a glyph to be plotted at\n"
19284 " each of the n points.\n"
19288 "Draw a polygon in 3 space\n"
19292 " Draws a polygon in 3 space defined by n points in x, y, and z. Setup\n"
19293 " like plline3, but differs from that function in that plpoly3 attempts\n"
19294 " to determine if the polygon is viewable depending on the order of the\n"
19295 " points within the vector and the value of ifcc. If the back of\n"
19296 " polygon is facing the viewer, then it isn't drawn. If this isn't what\n"
19297 " you want, then use plline3 instead.\n"
19299 " The points are assumed to be in a plane, and the directionality of the\n"
19300 " plane is determined from the first three points. Additional points do\n"
19301 " not have to lie on the plane defined by the first three, but if they\n"
19302 " do not, then the determination of visibility obviously can't be 100%\n"
19303 " accurate... So if you're 3 space polygons are too far from planar,\n"
19304 " consider breaking them into smaller polygons. 3 points define a plane\n"
19307 " Bugs: If one of the first two segments is of zero length, or if they\n"
19308 " are co-linear, the calculation of visibility has a 50/50 chance of\n"
19309 " being correct. Avoid such situations :-). See x18c.c for an example\n"
19310 " of this problem. (Search for 20.1).\n"
19312 " Redacted form: plpoly3(x, y, z, code)\n"
19314 " This function is used in example 18.\n"
19320 "plpoly3(n, x, y, z, draw, ifcc)\n"
19324 " n (PLINT, input) : Number of points defining line.\n"
19326 " x (PLFLT_VECTOR, input) : A vector containing\n"
19327 " n x coordinates of points.\n"
19329 " y (PLFLT_VECTOR, input) : A vector containing\n"
19330 " n y coordinates of points.\n"
19332 " z (PLFLT_VECTOR, input) : A vector containing\n"
19333 " n z coordinates of points.\n"
19335 " draw (PLBOOL_VECTOR, input) : A vector containing\n"
19336 " n-1 Boolean values which control drawing the segments of the polygon.\n"
19337 " If draw[i] is true, then the polygon segment from index [i] to\n"
19338 " [i+1] is drawn, otherwise, not.\n"
19340 " ifcc (PLBOOL, input) : If ifcc is true the directionality of the\n"
19341 " polygon is determined by assuming the points are laid out in a\n"
19342 " counter-clockwise order. Otherwise, the directionality of the\n"
19343 " polygon is determined by assuming the points are laid out in a\n"
19344 " clockwise order.\n"
19348 "Set precision in numeric labels\n"
19352 " Sets the number of places after the decimal point in numeric labels.\n"
19354 " Redacted form: plprec(setp, prec)\n"
19356 " This function is used in example 29.\n"
19362 "plprec(setp, prec)\n"
19366 " setp (PLINT, input) : If setp is equal to 0 then PLplot\n"
19367 " automatically determines the number of places to use after the\n"
19368 " decimal point in numeric labels (like those used to label axes).\n"
19369 " If setp is 1 then prec sets the number of places.\n"
19371 " prec (PLINT, input) : The number of characters to draw after the\n"
19372 " decimal point in numeric labels.\n"
19376 "Select area fill pattern\n"
19381 " patt is zero or less use either a hardware solid fill if the drivers\n"
19382 " have that capability (virtually all do) or fall back to a software\n"
19383 " emulation of a solid fill using the eighth area line fill pattern. If\n"
19385 " patt <= 8, then select one of eight predefined area line fill patterns\n"
19386 " to use (see plpat if you desire other patterns).\n"
19388 " Redacted form: plpsty(patt)\n"
19390 " This function is used in examples 12, 13, 15, 16, and 25.\n"
19400 " patt (PLINT, input) : The desired pattern index. If\n"
19401 " patt is zero or less, then a solid fill is (normally, see qualifiers\n"
19402 " above) used. For\n"
19403 " patt in the range from 1 to 8 and assuming the driver has not supplied\n"
19404 " line fill capability itself (most deliberately do not so that line\n"
19405 " fill patterns look identical for those drivers), the patterns\n"
19406 " consist of (1) horizontal lines, (2) vertical lines, (3) lines at\n"
19407 " 45 degrees, (4) lines at -45 degrees, (5) lines at 30 degrees, (6)\n"
19408 " lines at -30 degrees, (7) both vertical and horizontal lines, and\n"
19409 " (8) lines at both 45 degrees and -45 degrees.\n"
19413 "Write text inside the viewport\n"
19417 " Writes text at a specified position and inclination within the\n"
19418 " viewport. Text is clipped at the viewport boundaries. The reference\n"
19419 " point of a string lies along a line passing through the string at half\n"
19420 " the height of a capital letter. The position of the reference point\n"
19421 " along this line is determined by just, the reference point is placed\n"
19422 " at world coordinates (\n"
19424 " y) within the viewport. The inclination of the string is specified\n"
19425 " in terms of differences of world coordinates making it easy to write\n"
19426 " text parallel to a line in a graph.\n"
19428 " Redacted form: plptex(x, y, dx, dy, just, text)\n"
19430 " This function is used in example 2-4,10,12-14,20,23,24,26.\n"
19436 "plptex(x, y, dx, dy, just, text)\n"
19440 " x (PLFLT, input) : x coordinate of reference point of string.\n"
19442 " y (PLFLT, input) : y coordinate of reference point of string.\n"
19444 " dx (PLFLT, input) : Together with dy, this specifies the\n"
19445 " inclination of the string. The baseline of the string is parallel\n"
19446 " to a line joining (\n"
19454 " dy (PLFLT, input) : Together with dx, this specifies the\n"
19455 " inclination of the string.\n"
19457 " just (PLFLT, input) : Specifies the position of the string relative\n"
19458 " to its reference point. If just=0. , the reference point is at\n"
19459 " the left and if just=1. , it is at the right of the string. Other\n"
19460 " values of just give intermediate justifications.\n"
19462 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19467 "Write text inside the viewport of a 3D plot\n"
19471 " Writes text at a specified position and inclination and with a\n"
19472 " specified shear within the viewport. Text is clipped at the viewport\n"
19473 " boundaries. The reference point of a string lies along a line passing\n"
19474 " through the string at half the height of a capital letter. The\n"
19475 " position of the reference point along this line is determined by just,\n"
19476 " and the reference point is placed at world coordinates (\n"
19479 " wz) within the viewport. The inclination and shear of the string is\n"
19480 " specified in terms of differences of world coordinates making it easy\n"
19481 " to write text parallel to a line in a graph.\n"
19483 " Redacted form: plptex3(x, y, z, dx, dy, dz, sx, sy, sz, just, text)\n"
19485 " This function is used in example 28.\n"
19491 "plptex3(wx, wy, wz, dx, dy, dz, sx, sy, sz, just, text)\n"
19495 " wx (PLFLT, input) : x world coordinate of reference point of\n"
19498 " wy (PLFLT, input) : y world coordinate of reference point of\n"
19501 " wz (PLFLT, input) : z world coordinate of reference point of\n"
19504 " dx (PLFLT, input) : Together with dy and\n"
19505 " dz , this specifies the inclination of the string. The baseline of\n"
19506 " the string is parallel to a line joining (\n"
19517 " dy (PLFLT, input) : Together with dx and\n"
19518 " dz, this specifies the inclination of the string.\n"
19520 " dz (PLFLT, input) : Together with dx and\n"
19521 " dy, this specifies the inclination of the string.\n"
19523 " sx (PLFLT, input) : Together with sy and\n"
19524 " sz , this specifies the shear of the string. The string is sheared so\n"
19525 " that the characters are vertically parallel to a line joining (\n"
19536 " sz = 0.) then the text is not sheared.\n"
19538 " sy (PLFLT, input) : Together with sx and\n"
19539 " sz, this specifies shear of the string.\n"
19541 " sz (PLFLT, input) : Together with sx and\n"
19542 " sy, this specifies shear of the string.\n"
19544 " just (PLFLT, input) : Specifies the position of the string relative\n"
19545 " to its reference point. If just=0. , the reference point is at\n"
19546 " the left and if just=1. , it is at the right of the string. Other\n"
19547 " values of just give intermediate justifications.\n"
19549 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
19554 "Random number generator returning a real random number in the range [0,1]\n"
19558 " Random number generator returning a real random number in the range\n"
19559 " [0,1]. The generator is based on the Mersenne Twister. Most languages\n"
19560 " / compilers provide their own random number generator, and so this is\n"
19561 " provided purely for convenience and to give a consistent random number\n"
19562 " generator across all languages supported by PLplot. This is\n"
19563 " particularly useful for comparing results from the test suite of\n"
19566 " Redacted form: plrandd()\n"
19568 " This function is used in examples 17 and 21.\n"
19578 "Replays contents of plot buffer to current device/file\n"
19582 " Replays contents of plot buffer to current device/file.\n"
19584 " Redacted form: plreplot()\n"
19586 " This function is used in example 1,20.\n"
19596 "Convert RGB color to HLS\n"
19600 " Convert RGB color coordinates to HLS\n"
19602 " Redacted form: General: plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19605 " This function is used in example 2.\n"
19611 "plrgbhls(r, g, b, p_h, p_l, p_s)\n"
19615 " r (PLFLT, input) : Red intensity (0.0-1.0) of the color.\n"
19617 " g (PLFLT, input) : Green intensity (0.0-1.0) of the color.\n"
19619 " b (PLFLT, input) : Blue intensity (0.0-1.0) of the color.\n"
19621 " p_h (PLFLT_NC_SCALAR, output) : Returned value of the hue in\n"
19622 " degrees (0.0-360.0) on the color cylinder.\n"
19624 " p_l (PLFLT_NC_SCALAR, output) : Returned value of the lightness\n"
19625 " expressed as a fraction (0.0-1.0) of the axis of the color\n"
19628 " p_s (PLFLT_NC_SCALAR, output) : Returned value of the saturation\n"
19629 " expressed as a fraction (0.0-1.0) of the radius of the color\n"
19634 "Set character size\n"
19638 " This sets up the size of all subsequent characters drawn. The actual\n"
19639 " height of a character is the product of the default character size and\n"
19640 " a scaling factor.\n"
19642 " Redacted form: plschr(def, scale)\n"
19644 " This function is used in examples 2, 13, 23, and 24.\n"
19650 "plschr(def, scale)\n"
19654 " def (PLFLT, input) : The default height of a character in\n"
19655 " millimeters, should be set to zero if the default height is to\n"
19656 " remain unchanged. For rasterized drivers the dx and dy values\n"
19657 " specified in plspage are used to convert from mm to pixels (note\n"
19658 " the different unit systems used). This dpi aware scaling is not\n"
19659 " implemented for all drivers yet.\n"
19661 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
19662 " actual character height.\n"
19666 "Set cmap0 colors by 8-bit RGB values\n"
19670 " Set cmap0 colors using 8-bit RGB values (see the PLplot\n"
19671 " documentation). This sets the entire color map -- only as many colors\n"
19672 " as specified will be allocated.\n"
19674 " Redacted form: plscmap0(r, g, b)\n"
19676 " This function is used in examples 2 and 24.\n"
19682 "plscmap0(r, g, b, ncol0)\n"
19686 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19687 " integers (0-255) representing the degree of red in the color.\n"
19689 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19690 " integers (0-255) representing the degree of green in the color.\n"
19692 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19693 " integers (0-255) representing the degree of blue in the color.\n"
19695 " ncol0 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19699 "Set cmap0 colors by 8-bit RGB values and PLFLT alpha transparency value\n"
19703 " Set cmap0 colors using 8-bit RGB values (see the PLplot documentation)\n"
19704 " and PLFLT alpha transparency value. This sets the entire color map --\n"
19705 " only as many colors as specified will be allocated.\n"
19707 " Redacted form: plscmap0a(r, g, b, alpha)\n"
19709 " This function is used in examples 30.\n"
19715 "plscmap0a(r, g, b, alpha, ncol0)\n"
19719 " r (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19720 " integers (0-255) representing the degree of red in the color.\n"
19722 " g (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19723 " integers (0-255) representing the degree of green in the color.\n"
19725 " b (PLINT_VECTOR, input) : A vector containing unsigned 8-bit\n"
19726 " integers (0-255) representing the degree of blue in the color.\n"
19728 " alpha (PLFLT_VECTOR, input) : A vector containing values (0.0-1.0)\n"
19729 " representing the alpha transparency of the color.\n"
19731 " ncol0 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19736 "Set number of colors in cmap0\n"
19740 " Set number of colors in cmap0 (see the PLplot documentation). Allocate\n"
19741 " (or reallocate) cmap0, and fill with default values for those colors\n"
19742 " not previously allocated. The first 16 default colors are given in\n"
19743 " the plcol0 documentation. For larger indices the default color is\n"
19746 " The drivers are not guaranteed to support more than 16 colors.\n"
19748 " Redacted form: plscmap0n(ncol0)\n"
19750 " This function is used in examples 15, 16, and 24.\n"
19756 "plscmap0n(ncol0)\n"
19760 " ncol0 (PLINT, input) : Number of colors that will be allocated in\n"
19761 " the cmap0 palette. If this number is zero or less, then the value\n"
19762 " from the previous call to plscmap0n is used and if there is no\n"
19763 " previous call, then a default value is used.\n"
19767 "Set opaque RGB cmap1 colors values\n"
19771 " Set opaque cmap1 colors (see the PLplot documentation) using RGB\n"
19772 " vector values. This function also sets the number of cmap1 colors.\n"
19773 " N.B. Continuous cmap1 colors are indexed with a floating-point index\n"
19774 " in the range from 0.0-1.0 which is linearly transformed (e.g., by\n"
19775 " plcol1) to an integer index of these RGB vectors in the range from 0\n"
19777 " ncol1-1. So in order for this continuous color model to work\n"
19778 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19779 " that these RGB vectors are continuous functions of their integer\n"
19782 " Redacted form: plscmap1(r, g, b)\n"
19784 " This function is used in example 31.\n"
19790 "plscmap1(r, g, b, ncol1)\n"
19794 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19795 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19796 " color as a continuous function of the integer index of the vector.\n"
19798 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19799 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19800 " color as a continuous function of the integer index of the vector.\n"
19802 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19803 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19804 " color as a continuous function of the integer index of the vector.\n"
19806 " ncol1 (PLINT, input) : Number of items in the r, g, and b vectors.\n"
19810 "Set semitransparent cmap1 RGBA colors.\n"
19814 " Set semitransparent cmap1 colors (see the PLplot documentation) using\n"
19815 " RGBA vector values. This function also sets the number of cmap1\n"
19816 " colors. N.B. Continuous cmap1 colors are indexed with a\n"
19817 " floating-point index in the range from 0.0-1.0 which is linearly\n"
19818 " transformed (e.g., by plcol1) to an integer index of these RGBA\n"
19819 " vectors in the range from 0 to\n"
19820 " ncol1-1. So in order for this continuous color model to work\n"
19821 " properly, it is the responsibility of the user of plscmap1 to insure\n"
19822 " that these RGBA vectors are continuous functions of their integer\n"
19825 " Redacted form: plscmap1a(r, g, b, alpha)\n"
19827 " This function is used in example 31.\n"
19833 "plscmap1a(r, g, b, alpha, ncol1)\n"
19837 " r (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19838 " 8-bit integers in the range from 0-255) the degree of red in the\n"
19839 " color as a continuous function of the integer index of the vector.\n"
19841 " g (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19842 " 8-bit integers in the range from 0-255) the degree of green in the\n"
19843 " color as a continuous function of the integer index of the vector.\n"
19845 " b (PLINT_VECTOR, input) : A vector that represents (using unsigned\n"
19846 " 8-bit integers in the range from 0-255) the degree of blue in the\n"
19847 " color as a continuous function of the integer index of the vector.\n"
19849 " alpha (PLFLT_VECTOR, input) : A vector that represents (using PLFLT\n"
19850 " values in the range from 0.0-1.0 where 0.0 corresponds to\n"
19851 " completely transparent and 1.0 corresponds to completely opaque)\n"
19852 " the alpha transparency of the color as a continuous function of\n"
19853 " the integer index of the vector.\n"
19855 " ncol1 (PLINT, input) : Number of items in the r, g, b, and alpha\n"
19860 "Set cmap1 colors using a piece-wise linear relationship\n"
19864 " Set cmap1 colors using a piece-wise linear relationship between the\n"
19865 " cmap1 intensity index (0.0-1.0) and position in HLS or RGB color space\n"
19866 " (see the PLplot documentation). May be called at any time.\n"
19868 " The idea here is to specify a number of control points that define the\n"
19869 " mapping between input cmap1 intensity indices and HLS or RGB. Between\n"
19870 " these points, linear interpolation is used which gives a smooth\n"
19871 " variation of color with intensity index. Any number of control points\n"
19872 " may be specified, located at arbitrary positions, although typically 2\n"
19873 " - 4 are enough. Another way of stating this is that we are traversing\n"
19874 " a given number of lines through HLS or RGB space as we move through\n"
19875 " cmap1 intensity indices. The control points at the minimum and\n"
19876 " maximum position (0 and 1) must always be specified. By adding more\n"
19877 " control points you can get more variation. One good technique for\n"
19878 " plotting functions that vary about some expected average is to use an\n"
19879 " additional 2 control points in the center (position ~= 0.5) that are\n"
19880 " the same lightness as the background (typically white for paper\n"
19881 " output, black for crt), and same hue as the boundary control points.\n"
19882 " This allows the highs and lows to be very easily distinguished.\n"
19884 " Each control point must specify the cmap1 intensity index and the\n"
19885 " associated three coordinates in HLS or RGB space. The first point\n"
19886 " must correspond to position = 0, and the last to position = 1.\n"
19888 " If RGB colors are provided then the interpolation takes place in RGB\n"
19889 " space and is trivial. However if HLS colors are provided then, because\n"
19890 " of the circular nature of the color wheel for the hue coordinate, the\n"
19891 " interpolation could be performed in either direction around the color\n"
19892 " wheel. The default behaviour is for the hue to be linearly\n"
19893 " interpolated ignoring this circular property of hue. So for example,\n"
19894 " the hues 0 (red) and 240 (blue) will get interpolated via yellow,\n"
19895 " green and cyan. If instead you wish to interpolate the other way\n"
19896 " around the color wheel you have two options. You may provide hues\n"
19897 " outside the range [0, 360), so by using a hue of -120 for blue or 360\n"
19898 " for red the interpolation will proceed via magenta. Alternatively you\n"
19899 " can utilise the alt_hue_path variable to reverse the direction of\n"
19900 " interpolation if you need to provide hues within the [0-360) range.\n"
19902 " Examples of interpolation Huealt_hue_pathcolor scheme[120\n"
19903 " 240]falsegreen-cyan-blue[240 120]falseblue-cyan-green[120\n"
19904 " -120]falsegreen-yellow-red-magenta-blue[240\n"
19905 " 480]falseblue-magenta-red-yellow-green[120\n"
19906 " 240]truegreen-yellow-red-magenta-blue[240\n"
19907 " 120]trueblue-magenta-red-yellow-green\n"
19909 " Bounds on coordinatesRGBR[0, 1]magnitudeRGBG[0, 1]magnitudeRGBB[0,\n"
19910 " 1]magnitudeHLShue[0, 360]degreesHLSlightness[0,\n"
19911 " 1]magnitudeHLSsaturation[0, 1]magnitude\n"
19913 " Redacted form: plscmap1l(itype, intensity, coord1, coord2, coord3,\n"
19916 " This function is used in examples 8, 11, 12, 15, 20, and 21.\n"
19922 "plscmap1l(itype, npts, intensity, coord1, coord2, coord3, alt_hue_path)\n"
19926 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19928 " npts (PLINT, input) : number of control points\n"
19930 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19931 " intensity index (0.0-1.0) in ascending order for each control\n"
19934 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19935 " coordinate (H or R) for each control point.\n"
19937 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19938 " coordinate (L or G) for each control point.\n"
19940 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19941 " coordinate (S or B) for each control point.\n"
19943 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19944 " npts - 1 elements), each containing either true to use the reversed\n"
19945 " HLS interpolation or false to use the regular HLS interpolation.\n"
19946 " (alt_hue_path[i] refers to the interpolation interval between the\n"
19947 " i and i + 1 control points). This parameter is not used for RGB\n"
19949 " itype = true).\n"
19953 "Set cmap1 colors and alpha transparency using a piece-wise linear relationship\n"
19957 " This is a variant of plscmap1l that supports alpha channel\n"
19958 " transparency. It sets cmap1 colors using a piece-wise linear\n"
19959 " relationship between cmap1 intensity index (0.0-1.0) and position in\n"
19960 " HLS or RGB color space (see the PLplot documentation) with alpha\n"
19961 " transparency value (0.0-1.0). It may be called at any time.\n"
19963 " Redacted form: plscmap1la(itype, intensity, coord1, coord2, coord3,\n"
19964 " alpha, alt_hue_path)\n"
19966 " This function is used in example 30.\n"
19972 "plscmap1la(itype, npts, intensity, coord1, coord2, coord3, alpha, alt_hue_path)\n"
19976 " itype (PLBOOL, input) : true: RGB, false: HLS.\n"
19978 " npts (PLINT, input) : number of control points.\n"
19980 " intensity (PLFLT_VECTOR, input) : A vector containing the cmap1\n"
19981 " intensity index (0.0-1.0) in ascending order for each control\n"
19984 " coord1 (PLFLT_VECTOR, input) : A vector containing the first\n"
19985 " coordinate (H or R) for each control point.\n"
19987 " coord2 (PLFLT_VECTOR, input) : A vector containing the second\n"
19988 " coordinate (L or G) for each control point.\n"
19990 " coord3 (PLFLT_VECTOR, input) : A vector containing the third\n"
19991 " coordinate (S or B) for each control point.\n"
19993 " alpha (PLFLT_VECTOR, input) : A vector containing the alpha\n"
19994 " transparency value (0.0-1.0) for each control point.\n"
19996 " alt_hue_path (PLBOOL_VECTOR, input) : A vector (with\n"
19997 " npts - 1 elements) containing the alternative interpolation method\n"
19998 " Boolean value for each control point interval. (alt_hue_path[i]\n"
19999 " refers to the interpolation interval between the i and i + 1\n"
20000 " control points).\n"
20004 "Set number of colors in cmap1\n"
20008 " Set number of colors in cmap1, (re-)allocate cmap1, and set default\n"
20009 " values if this is the first allocation (see the PLplot documentation).\n"
20011 " Redacted form: plscmap1n(ncol1)\n"
20013 " This function is used in examples 8, 11, 20, and 21.\n"
20019 "plscmap1n(ncol1)\n"
20023 " ncol1 (PLINT, input) : Number of colors that will be allocated in\n"
20024 " the cmap1 palette. If this number is zero or less, then the value\n"
20025 " from the previous call to plscmap1n is used and if there is no\n"
20026 " previous call, then a default value is used.\n"
20030 "Set the cmap1 argument range for continuous color plots\n"
20034 " Set the cmap1 argument range for continuous color plots that\n"
20035 " corresponds to the range of data values. The maximum range\n"
20036 " corresponding to the entire cmap1 palette is 0.0-1.0, and the smaller\n"
20037 " the cmap1 argument range that is specified with this routine, the\n"
20038 " smaller the subset of the cmap1 color palette that is used to\n"
20039 " represent the continuous data being plotted. If\n"
20040 " min_color is greater than\n"
20042 " max_color is greater than 1.0 or\n"
20043 " min_color is less than 0.0 then no change is made to the cmap1\n"
20044 " argument range. (Use plgcmap1_range to get the cmap1 argument range.)\n"
20046 " Redacted form: plscmap1_range(min_color, max_color)\n"
20048 " This function is currently used in example 33.\n"
20054 "plscmap1_range(min_color, max_color)\n"
20058 " min_color (PLFLT, input) : The minimum cmap1 argument. If less\n"
20059 " than 0.0, then 0.0 is used instead.\n"
20061 " max_color (PLFLT, input) : The maximum cmap1 argument. If greater\n"
20062 " than 1.0, then 1.0 is used instead.\n"
20066 "Get the cmap1 argument range for continuous color plots\n"
20070 " Get the cmap1 argument range for continuous color plots. (Use\n"
20071 " plscmap1_range to set the cmap1 argument range.)\n"
20073 " Redacted form: plgcmap1_range(min_color, max_color)\n"
20075 " This function is currently not used in any example.\n"
20081 "plgcmap1_range(min_color, max_color)\n"
20085 " min_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20086 " minimum cmap1 argument.\n"
20088 " max_color (PLFLT_NC_SCALAR, output) : Returned value of the current\n"
20089 " maximum cmap1 argument.\n"
20093 "Set 8-bit RGB values for given cmap0 color index\n"
20097 " Set 8-bit RGB values for given cmap0 (see the PLplot documentation)\n"
20098 " index. Overwrites the previous color value for the given index and,\n"
20099 " thus, does not result in any additional allocation of space for\n"
20102 " Redacted form: plscol0(icol0, r, g, b)\n"
20104 " This function is used in any example 31.\n"
20110 "plscol0(icol0, r, g, b)\n"
20114 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20115 " number of colors (which is set by default, by plscmap0n, or even\n"
20118 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20119 " degree of red in the color.\n"
20121 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20122 " degree of green in the color.\n"
20124 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20125 " degree of blue in the color.\n"
20129 "Set 8-bit RGB values and PLFLT alpha transparency value for given cmap0 color index\n"
20133 " Set 8-bit RGB value and PLFLT alpha transparency value for given cmap0\n"
20134 " (see the PLplot documentation) index. Overwrites the previous color\n"
20135 " value for the given index and, thus, does not result in any additional\n"
20136 " allocation of space for colors.\n"
20138 " This function is used in example 30.\n"
20144 "plscol0a(icol0, r, g, b, alpha)\n"
20148 " icol0 (PLINT, input) : Color index. Must be less than the maximum\n"
20149 " number of colors (which is set by default, by plscmap0n, or even\n"
20152 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20153 " degree of red in the color.\n"
20155 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20156 " degree of green in the color.\n"
20158 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20159 " degree of blue in the color.\n"
20161 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20166 "Set the background color by 8-bit RGB value\n"
20170 " Set the background color (color 0 in cmap0) by 8-bit RGB value (see\n"
20171 " the PLplot documentation).\n"
20173 " Redacted form: plscolbg(r, g, b)\n"
20175 " This function is used in examples 15 and 31.\n"
20181 "plscolbg(r, g, b)\n"
20185 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20186 " degree of red in the color.\n"
20188 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20189 " degree of green in the color.\n"
20191 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20192 " degree of blue in the color.\n"
20196 "Set the background color by 8-bit RGB value and PLFLT alpha transparency value.\n"
20200 " Set the background color (color 0 in cmap0) by 8-bit RGB value and\n"
20201 " PLFLT alpha transparency value (see the PLplot documentation).\n"
20203 " This function is used in example 31.\n"
20209 "plscolbga(r, g, b, alpha)\n"
20213 " r (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20214 " degree of red in the color.\n"
20216 " g (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20217 " degree of green in the color.\n"
20219 " b (PLINT, input) : Unsigned 8-bit integer (0-255) representing the\n"
20220 " degree of blue in the color.\n"
20222 " alpha (PLFLT, input) : Value of the alpha transparency in the range\n"
20227 "Used to globally turn color output on/off\n"
20231 " Used to globally turn color output on/off for those drivers/devices\n"
20232 " that support it.\n"
20234 " Redacted form: plscolor(color)\n"
20236 " This function is used in example 31.\n"
20242 "plscolor(color)\n"
20246 " color (PLINT, input) : Color flag (Boolean). If zero, color is\n"
20247 " turned off. If non-zero, color is turned on.\n"
20251 "Set device-compression level\n"
20255 " Set device-compression level. Only used for drivers that provide\n"
20256 " compression. This function, if used, should be invoked before a call\n"
20259 " Redacted form: plscompression(compression)\n"
20261 " This function is used in example 31.\n"
20267 "plscompression(compression)\n"
20271 " compression (PLINT, input) : The desired compression level. This is\n"
20272 " a device-dependent value. Currently only the jpeg and png devices\n"
20273 " use these values. For jpeg value is the jpeg quality which should\n"
20274 " normally be in the range 0-95. Higher values denote higher quality\n"
20275 " and hence larger image sizes. For png values are in the range -1\n"
20276 " to 99. Values of 0-9 are taken as the compression level for zlib.\n"
20277 " A value of -1 denotes the default zlib compression level. Values\n"
20278 " in the range 10-99 are divided by 10 and then used as the zlib\n"
20279 " compression level. Higher compression levels correspond to greater\n"
20280 " compression and small file sizes at the expense of more\n"
20285 "Set the device (keyword) name\n"
20289 " Set the device (keyword) name.\n"
20291 " Redacted form: plsdev(devname)\n"
20293 " This function is used in examples 1, 14, and 20.\n"
20299 "plsdev(devname)\n"
20303 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
20304 " containing the device name keyword of the required output device.\n"
20306 " devname is NULL or if the first character of the string is a ``?'',\n"
20307 " the normal (prompted) start up is used.\n"
20311 "Set parameters that define current device-space window\n"
20315 " Set relative margin width, aspect ratio, and relative justification\n"
20316 " that define current device-space window. If you want to just use the\n"
20317 " previous value for any of these, just pass in the magic value\n"
20318 " PL_NOTSET. It is unlikely that one should ever need to change the\n"
20319 " aspect ratio but it's in there for completeness. If plsdidev is not\n"
20320 " called the default values of mar, jx, and jy are all 0. aspect is set\n"
20321 " to a device-specific value.\n"
20323 " Redacted form: plsdidev(mar, aspect, jx, jy)\n"
20325 " This function is used in example 31.\n"
20331 "plsdidev(mar, aspect, jx, jy)\n"
20335 " mar (PLFLT, input) : Relative margin width.\n"
20337 " aspect (PLFLT, input) : Aspect ratio.\n"
20339 " jx (PLFLT, input) : Relative justification in x. Value must lie in\n"
20340 " the range -0.5 to 0.5.\n"
20342 " jy (PLFLT, input) : Relative justification in y. Value must lie in\n"
20343 " the range -0.5 to 0.5.\n"
20347 "Set up transformation from metafile coordinates\n"
20351 " Set up transformation from metafile coordinates. The size of the plot\n"
20352 " is scaled so as to preserve aspect ratio. This isn't intended to be a\n"
20353 " general-purpose facility just yet (not sure why the user would need\n"
20356 " Redacted form: plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm,\n"
20359 " This function is not used in any examples.\n"
20365 "plsdimap(dimxmin, dimxmax, dimymin, dimymax, dimxpmm, dimypmm)\n"
20369 " dimxmin (PLINT, input) : NEEDS DOCUMENTATION\n"
20371 " dimxmax (PLINT, input) : NEEDS DOCUMENTATION\n"
20373 " dimymin (PLINT, input) : NEEDS DOCUMENTATION\n"
20375 " dimymax (PLINT, input) : NEEDS DOCUMENTATION\n"
20377 " dimxpmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20379 " dimypmm (PLFLT, input) : NEEDS DOCUMENTATION\n"
20383 "Set plot orientation\n"
20387 " Set plot orientation parameter which is multiplied by 90 degrees to\n"
20388 " obtain the angle of rotation. Note, arbitrary rotation parameters\n"
20389 " such as 0.2 (corresponding to 18 degrees) are possible, but the usual\n"
20390 " values for the rotation parameter are 0., 1., 2., and 3. corresponding\n"
20391 " to 0 degrees (landscape mode), 90 degrees (portrait mode), 180 degrees\n"
20392 " (seascape mode), and 270 degrees (upside-down mode). If plsdiori is\n"
20393 " not called the default value of rot is 0.\n"
20395 " N.B. aspect ratio is unaffected by calls to plsdiori. So you will\n"
20396 " probably want to change the aspect ratio to a value suitable for the\n"
20397 " plot orientation using a call to plsdidev or the command-line options\n"
20398 " -a or -freeaspect. For more documentation of those options see the\n"
20399 " PLplot documentation. Such command-line options can be set internally\n"
20400 " using plsetopt or set directly using the command line and parsed using\n"
20401 " a call to plparseopts.\n"
20403 " Redacted form: plsdiori(rot)\n"
20405 " This function is not used in any examples.\n"
20415 " rot (PLFLT, input) : Plot orientation parameter.\n"
20419 "Set parameters that define current plot-space window\n"
20423 " Set relative minima and maxima that define the current plot-space\n"
20424 " window. If plsdiplt is not called the default values of xmin, ymin,\n"
20425 " xmax, and ymax are 0., 0., 1., and 1.\n"
20427 " Redacted form: plsdiplt(xmin, ymin, xmax, ymax)\n"
20429 " This function is used in example 31.\n"
20435 "plsdiplt(xmin, ymin, xmax, ymax)\n"
20439 " xmin (PLFLT, input) : Relative minimum in x.\n"
20441 " ymin (PLFLT, input) : Relative minimum in y.\n"
20443 " xmax (PLFLT, input) : Relative maximum in x.\n"
20445 " ymax (PLFLT, input) : Relative maximum in y.\n"
20449 "Set parameters incrementally (zoom mode) that define current plot-space window\n"
20453 " Set relative minima and maxima incrementally (zoom mode) that define\n"
20454 " the current plot-space window. This function has the same effect as\n"
20455 " plsdiplt if that function has not been previously called. Otherwise,\n"
20456 " this function implements zoom mode using the transformation min_used =\n"
20457 " old_min + old_length*min and max_used = old_min + old_length*max for\n"
20458 " each axis. For example, if min = 0.05 and max = 0.95 for each axis,\n"
20459 " repeated calls to plsdiplz will zoom in by 10 per cent for each call.\n"
20461 " Redacted form: plsdiplz(xmin, ymin, xmax, ymax)\n"
20463 " This function is used in example 31.\n"
20469 "plsdiplz(xmin, ymin, xmax, ymax)\n"
20473 " xmin (PLFLT, input) : Relative (incremental) minimum in x.\n"
20475 " ymin (PLFLT, input) : Relative (incremental) minimum in y.\n"
20477 " xmax (PLFLT, input) : Relative (incremental) maximum in x.\n"
20479 " ymax (PLFLT, input) : Relative (incremental) maximum in y.\n"
20483 "Set seed for internal random number generator.\n"
20487 " Set the seed for the internal random number generator. See plrandd for\n"
20488 " further details.\n"
20490 " Redacted form: plseed(seed)\n"
20492 " This function is used in example 21.\n"
20502 " seed (unsigned int, input) : Seed for random number generator.\n"
20506 "Set the escape character for text strings\n"
20510 " Set the escape character for text strings. From C (in contrast to\n"
20511 " Fortran, see plsescfortran) you pass esc as a character. Only selected\n"
20512 " characters are allowed to prevent the user from shooting himself in\n"
20513 " the foot (For example, a \\ isn't allowed since it conflicts with C's\n"
20514 " use of backslash as a character escape). Here are the allowed escape\n"
20515 " characters and their corresponding decimal ASCII values: !, ASCII 33\n"
20526 " Redacted form: General: plsesc(esc)\n"
20529 " This function is used in example 29.\n"
20539 " esc (char, input) : Escape character.\n"
20543 "Set any command-line option\n"
20547 " Set any command-line option internally from a program before it\n"
20548 " invokes plinit. opt is the name of the command-line option and optarg\n"
20549 " is the corresponding command-line option argument.\n"
20551 " This function returns 0 on success.\n"
20553 " Redacted form: plsetopt(opt, optarg)\n"
20555 " This function is used in example 14.\n"
20561 "PLINT plsetopt(opt, optarg)\n"
20565 " opt (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20566 " the command-line option.\n"
20568 " optarg (PLCHAR_VECTOR, input) : An ascii character string\n"
20569 " containing the argument of the command-line option.\n"
20573 "Set family file parameters\n"
20577 " Sets variables dealing with output file familying. Does nothing if\n"
20578 " familying not supported by the driver. This routine, if used, must be\n"
20579 " called before initializing PLplot. See the PLplot documentation for\n"
20580 " more information.\n"
20582 " Redacted form: plsfam(fam, num, bmax)\n"
20584 " This function is used in examples 14 and 31.\n"
20590 "plsfam(fam, num, bmax)\n"
20594 " fam (PLINT, input) : Family flag (Boolean). If nonzero, familying\n"
20597 " num (PLINT, input) : Current family file number.\n"
20599 " bmax (PLINT, input) : Maximum file size (in bytes) for a family\n"
20604 "Set FCI (font characterization integer)\n"
20608 " Sets font characteristics to be used at the start of the next string\n"
20609 " using the FCI approach. See the PLplot documentation for more\n"
20610 " information. Note, plsfont (which calls plsfci internally) provides a\n"
20611 " more user-friendly API for setting the font characterisitics.\n"
20613 " Redacted form: General: plsfci(fci)\n"
20616 " This function is used in example 23.\n"
20626 " fci (PLUNICODE, input) : PLUNICODE (unsigned 32-bit integer) value\n"
20631 "Set output file name\n"
20635 " Sets the current output file name, if applicable. If the file name\n"
20636 " has not been specified and is required by the driver, the user will be\n"
20637 " prompted for it. If using the X-windows output driver, this sets the\n"
20638 " display name. This routine, if used, must be called before\n"
20639 " initializing PLplot.\n"
20641 " Redacted form: plsfnam(fnam)\n"
20643 " This function is used in examples 1 and 20.\n"
20653 " fnam (PLCHAR_VECTOR, input) : An ascii character string containing\n"
20654 " the file name.\n"
20658 "Set family, style and weight of the current font\n"
20662 " Sets the current font. See the PLplot documentation for more\n"
20663 " information on font selection.\n"
20665 " Redacted form: plsfont(family, style, weight)\n"
20667 " This function is used in example 23.\n"
20673 "plsfont(family, style, weight)\n"
20677 " family (PLINT, input) : Font family to select for the current font.\n"
20678 " The available values are given by the PL_FCI_* constants in\n"
20679 " plplot.h. Current options are PL_FCI_SANS, PL_FCI_SERIF,\n"
20680 " PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. A negative value\n"
20681 " signifies that the font family should not be altered.\n"
20683 " style (PLINT, input) : Font style to select for the current font.\n"
20684 " The available values are given by the PL_FCI_* constants in\n"
20685 " plplot.h. Current options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and\n"
20686 " PL_FCI_OBLIQUE. A negative value signifies that the font style\n"
20687 " should not be altered.\n"
20689 " weight (PLINT, input) : Font weight to select for the current font.\n"
20690 " The available values are given by the PL_FCI_* constants in\n"
20691 " plplot.h. Current options are PL_FCI_MEDIUM and PL_FCI_BOLD. A\n"
20692 " negative value signifies that the font weight should not be\n"
20697 "Shade regions on the basis of value\n"
20701 " Shade regions on the basis of value. This is the high-level routine\n"
20702 " for making continuous color shaded plots with cmap1 while plshade\n"
20703 " should be used to plot individual shaded regions using either cmap0 or\n"
20704 " cmap1. examples/;<language>/x16* shows how to use plshades for each of\n"
20705 " our supported languages.\n"
20707 " Redacted form: General: plshades(a, defined, xmin, xmax, ymin, ymax,\n"
20708 " clevel, fill_width, cont_color, cont_width, fill, rectangular, pltr,\n"
20712 " This function is used in examples 16, 21, and 22.\n"
20718 "plshades(a, nx, ny, defined, xmin, xmax, ymin, ymax, clevel, nlevel, fill_width, cont_color, cont_width, fill, rectangular, pltr, pltr_data)\n"
20722 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20723 " plot. Should have dimensions of\n"
20727 " nx (PLINT, input) : First dimension of matrix \"a\".\n"
20729 " ny (PLINT, input) : Second dimension of matrix \"a\".\n"
20731 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20732 " the region that should be plotted in the shade plot. This\n"
20733 " function accepts x and y coordinates as input arguments and must\n"
20734 " return 1 if the point is to be included in the shade plot and 0\n"
20735 " otherwise. If you want to plot the entire shade plot (the usual\n"
20736 " case), this argument should be set to NULL.\n"
20738 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20739 " pltr below for how these arguments are used (only for the special case\n"
20740 " when the callback function\n"
20741 " pltr is not supplied).\n"
20743 " clevel (PLFLT_VECTOR, input) : A vector containing the data levels\n"
20744 " corresponding to the edges of each shaded region that will be\n"
20745 " plotted by this function. To work properly the levels should be\n"
20748 " nlevel (PLINT, input) : Number of shades plus 1 (i.e., the number\n"
20749 " of shade edge values in clevel).\n"
20751 " fill_width (PLFLT, input) : Defines the line width used by the fill\n"
20754 " cont_color (PLINT, input) : Defines cmap0 pen color used for\n"
20755 " contours defining edges of shaded regions. The pen color is only\n"
20756 " temporary set for the contour drawing. Set this value to zero or\n"
20757 " less if no shade edge contours are wanted.\n"
20759 " cont_width (PLFLT, input) : Defines line width used for contours\n"
20760 " defining edges of shaded regions. This value may not be honored\n"
20761 " by all drivers. The pen width is only temporary set for the\n"
20762 " contour drawing. Set this value to zero or less if no shade edge\n"
20763 " contours are wanted.\n"
20765 " fill (PLFILL_callback, input) : Callback routine used to fill the\n"
20766 " region. Use plfill for this purpose.\n"
20768 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20769 " map to rectangles after coordinate transformation with pltrl.\n"
20770 " Otherwise, set rectangular to false. If rectangular is set to\n"
20771 " true, plshade tries to save time by filling large rectangles.\n"
20772 " This optimization fails if the coordinate transformation distorts\n"
20773 " the shape of rectangles. For example a plot in polar coordinates\n"
20774 " has to have rectangular set to false.\n"
20776 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20777 " defines the transformation between the zero-based indices of the\n"
20778 " matrix a and world coordinates. If\n"
20779 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20780 " indices of a are mapped to the range\n"
20782 " xmax and the y indices of a are mapped to the range\n"
20784 " ymax.For the C case, transformation functions are provided in the\n"
20785 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20786 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20787 " matrices. In addition, C callback routines for the transformation\n"
20788 " can be supplied by the user such as the mypltr function in\n"
20789 " examples/c/x09c.c which provides a general linear transformation\n"
20790 " between index coordinates and world coordinates.For languages\n"
20791 " other than C you should consult the PLplot documentation for the\n"
20792 " details concerning how PLTRANSFORM_callback arguments are\n"
20793 " interfaced. However, in general, a particular pattern of\n"
20794 " callback-associated arguments such as a tr vector with 6 elements;\n"
20795 " xg and yg vectors; or xg and yg matrices are respectively\n"
20796 " interfaced to a linear-transformation routine similar to the above\n"
20797 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20798 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20799 " support native language callbacks for handling index to\n"
20800 " world-coordinate transformations. Examples of these various\n"
20801 " approaches are given in examples/<language>x09*,\n"
20802 " examples/<language>x16*, examples/<language>x20*,\n"
20803 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20804 " supported languages.\n"
20806 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20807 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20808 " externally supplied.\n"
20812 "Shade individual region on the basis of value\n"
20816 " Shade individual region on the basis of value. Use plshades if you\n"
20817 " want to shade a number of contiguous regions using continuous colors.\n"
20818 " In particular the edge contours are treated properly in plshades. If\n"
20819 " you attempt to do contiguous regions with plshade the contours at the\n"
20820 " edge of the shade are partially obliterated by subsequent plots of\n"
20821 " contiguous shaded regions.\n"
20823 " Redacted form: General: plshade(a, defined, xmin, xmax, ymin, ymax,\n"
20824 " shade_min, shade_max, sh_cmap, sh_color, sh_width, min_color,\n"
20825 " min_width, max_color, max_width, fill, rectangular, pltr, pltr_data)\n"
20828 " This function is used in example 15.\n"
20834 "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"
20838 " a (PLFLT_MATRIX, input) : A matrix containing function values to\n"
20839 " plot. Should have dimensions of\n"
20843 " nx (PLINT, input) : First dimension of the matrix \"a\".\n"
20845 " ny (PLINT, input) : Second dimension of the matrix \"a\".\n"
20847 " defined (PLDEFINED_callback, input) : Callback function specifying\n"
20848 " the region that should be plotted in the shade plot. This\n"
20849 " function accepts x and y coordinates as input arguments and must\n"
20850 " return 1 if the point is to be included in the shade plot and 0\n"
20851 " otherwise. If you want to plot the entire shade plot (the usual\n"
20852 " case), this argument should be set to NULL.\n"
20854 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
20855 " pltr below for how these arguments are used (only for the special case\n"
20856 " when the callback function\n"
20857 " pltr is not supplied).\n"
20859 " shade_min (PLFLT, input) : Defines the lower end of the interval to\n"
20860 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20862 " shade_max (PLFLT, input) : Defines the upper end of the interval to\n"
20863 " be shaded. If shade_max <= shade_min, plshade does nothing.\n"
20865 " sh_cmap (PLINT, input) : Defines color map. If sh_cmap=0, then\n"
20866 " sh_color is interpreted as a cmap0 (integer) index. If sh_cmap=1,\n"
20867 " then sh_color is interpreted as a cmap1 argument in the range\n"
20870 " sh_color (PLFLT, input) : Defines color map index with integer\n"
20871 " value if cmap0 or value in range (0.0-1.0) if cmap1.\n"
20873 " sh_width (PLFLT, input) : Defines width used by the fill pattern.\n"
20875 " min_color (PLINT, input) : Defines pen color, width used by the\n"
20876 " boundary of shaded region. The min values are used for the\n"
20877 " shade_min boundary, and the max values are used on the shade_max\n"
20878 " boundary. Set color and width to zero for no plotted boundaries.\n"
20880 " min_width (PLFLT, input) : Defines pen color, width used by the\n"
20881 " boundary of shaded region. The min values are used for the\n"
20882 " shade_min boundary, and the max values are used on the shade_max\n"
20883 " boundary. Set color and width to zero for no plotted boundaries.\n"
20885 " max_color (PLINT, input) : Defines pen color, width used by the\n"
20886 " boundary of shaded region. The min values are used for the\n"
20887 " shade_min boundary, and the max values are used on the shade_max\n"
20888 " boundary. Set color and width to zero for no plotted boundaries.\n"
20890 " max_width (PLFLT, input) : Defines pen color, width used by the\n"
20891 " boundary of shaded region. The min values are used for the\n"
20892 " shade_min boundary, and the max values are used on the shade_max\n"
20893 " boundary. Set color and width to zero for no plotted boundaries.\n"
20895 " fill (PLFILL_callback, input) : Routine used to fill the region.\n"
20896 " Use plfill. Future version of PLplot may have other fill\n"
20899 " rectangular (PLBOOL, input) : Set rectangular to true if rectangles\n"
20900 " map to rectangles after coordinate transformation with pltrl.\n"
20901 " Otherwise, set rectangular to false. If rectangular is set to\n"
20902 " true, plshade tries to save time by filling large rectangles.\n"
20903 " This optimization fails if the coordinate transformation distorts\n"
20904 " the shape of rectangles. For example a plot in polar coordinates\n"
20905 " has to have rectangular set to false.\n"
20907 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
20908 " defines the transformation between the zero-based indices of the\n"
20909 " matrix a and world coordinates. If\n"
20910 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
20911 " indices of a are mapped to the range\n"
20913 " xmax and the y indices of a are mapped to the range\n"
20915 " ymax.For the C case, transformation functions are provided in the\n"
20916 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
20917 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
20918 " matrices. In addition, C callback routines for the transformation\n"
20919 " can be supplied by the user such as the mypltr function in\n"
20920 " examples/c/x09c.c which provides a general linear transformation\n"
20921 " between index coordinates and world coordinates.For languages\n"
20922 " other than C you should consult the PLplot documentation for the\n"
20923 " details concerning how PLTRANSFORM_callback arguments are\n"
20924 " interfaced. However, in general, a particular pattern of\n"
20925 " callback-associated arguments such as a tr vector with 6 elements;\n"
20926 " xg and yg vectors; or xg and yg matrices are respectively\n"
20927 " interfaced to a linear-transformation routine similar to the above\n"
20928 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
20929 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
20930 " support native language callbacks for handling index to\n"
20931 " world-coordinate transformations. Examples of these various\n"
20932 " approaches are given in examples/<language>x09*,\n"
20933 " examples/<language>x16*, examples/<language>x20*,\n"
20934 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
20935 " supported languages.\n"
20937 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
20938 " information to pltr0, pltr1, pltr2, or whatever routine that is\n"
20939 " externally supplied.\n"
20943 "Assign a function to use for generating custom axis labels\n"
20947 " This function allows a user to provide their own function to provide\n"
20948 " axis label text. The user function is given the numeric value for a\n"
20949 " point on an axis and returns a string label to correspond with that\n"
20950 " value. Custom axis labels can be enabled by passing appropriate\n"
20951 " arguments to plenv, plbox, plbox3 and similar functions.\n"
20953 " This function is used in example 19.\n"
20959 "plslabelfunc(label_func, label_data)\n"
20963 " label_func (PLLABEL_FUNC_callback, input) : This is the custom\n"
20964 " label function. In order to reset to the default labelling, set\n"
20965 " this to NULL. The labelling function parameters are, in order:\n"
20966 " axis: This indicates which axis a label is being requested for.\n"
20967 " The value will be one of PL_X_AXIS, PL_Y_AXIS or PL_Z_AXIS.\n"
20969 " value: This is the value along the axis which is being labelled.\n"
20971 " label_text: The string representation of the label value.\n"
20973 " length: The maximum length in characters allowed for label_text.\n"
20976 " label_data (PLPointer, input) : This parameter may be used to pass\n"
20977 " data to the label_func function.\n"
20981 "Set length of major ticks\n"
20985 " This sets up the length of the major ticks. The actual length is the\n"
20986 " product of the default length and a scaling factor as for character\n"
20989 " Redacted form: plsmaj(def, scale)\n"
20991 " This function is used in example 29.\n"
20997 "plsmaj(def, scale)\n"
21001 " def (PLFLT, input) : The default length of a major tick in\n"
21002 " millimeters, should be set to zero if the default length is to\n"
21003 " remain unchanged.\n"
21005 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21006 " actual tick length.\n"
21010 "Set the memory area to be plotted (RGB)\n"
21014 " Set the memory area to be plotted (with the mem or memcairo driver) as\n"
21015 " the dev member of the stream structure. Also set the number of pixels\n"
21016 " in the memory passed in\n"
21017 " plotmem, which is a block of memory\n"
21019 " maxx by 3 bytes long, say: 480 x 640 x 3 (Y, X, RGB)\n"
21021 " This memory will have to be freed by the user!\n"
21023 " Redacted form: plsmem(maxx, maxy, plotmem)\n"
21025 " This function is not used in any examples.\n"
21031 "plsmem(maxx, maxy, plotmem)\n"
21035 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21037 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21039 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21040 " user-supplied writeable memory area.\n"
21044 "Set the memory area to be plotted (RGBA)\n"
21048 " Set the memory area to be plotted (with the memcairo driver) as the\n"
21049 " dev member of the stream structure. Also set the number of pixels in\n"
21050 " the memory passed in\n"
21051 " plotmem, which is a block of memory\n"
21053 " maxx by 4 bytes long, say: 480 x 640 x 4 (Y, X, RGBA)\n"
21055 " This memory will have to be freed by the user!\n"
21057 " Redacted form: plsmema(maxx, maxy, plotmem)\n"
21059 " This function is not used in any examples.\n"
21065 "plsmema(maxx, maxy, plotmem)\n"
21069 " maxx (PLINT, input) : Size of memory area in the X coordinate.\n"
21071 " maxy (PLINT, input) : Size of memory area in the Y coordinate.\n"
21073 " plotmem (PLPointer, input) : Pointer to the beginning of a\n"
21074 " user-supplied writeable memory area.\n"
21078 "Set length of minor ticks\n"
21082 " This sets up the length of the minor ticks and the length of the\n"
21083 " terminals on error bars. The actual length is the product of the\n"
21084 " default length and a scaling factor as for character height.\n"
21086 " Redacted form: plsmin(def, scale)\n"
21088 " This function is used in example 29.\n"
21094 "plsmin(def, scale)\n"
21098 " def (PLFLT, input) : The default length of a minor tick in\n"
21099 " millimeters, should be set to zero if the default length is to\n"
21100 " remain unchanged.\n"
21102 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21103 " actual tick length.\n"
21107 "Set orientation\n"
21111 " Set integer plot orientation parameter. This function is identical to\n"
21112 " plsdiori except for the type of the argument, and should be used in\n"
21113 " the same way. See the documentation of plsdiori for details.\n"
21115 " Redacted form: plsori(ori)\n"
21117 " This function is used in example 3.\n"
21127 " ori (PLINT, input) : Orientation value (0 for landscape, 1 for\n"
21128 " portrait, etc.) The value is multiplied by 90 degrees to get the\n"
21133 "Set page parameters\n"
21137 " Sets the page configuration (optional). If an individual parameter is\n"
21138 " zero then that parameter value is not updated. Not all parameters are\n"
21139 " recognized by all drivers and the interpretation is device-dependent.\n"
21140 " The X-window driver uses the length and offset parameters to determine\n"
21141 " the window size and location. The length and offset values are\n"
21142 " expressed in units that are specific to the current driver. For\n"
21143 " instance: screen drivers will usually interpret them as number of\n"
21144 " pixels, whereas printer drivers will usually use mm.\n"
21146 " This routine, if used, must be called before initializing PLplot. It\n"
21147 " may be called at later times for interactive drivers to change only\n"
21148 " the dpi for subsequent redraws which you can force via a call to\n"
21149 " plreplot. If this function is not called then the page size defaults\n"
21150 " to landscape A4 for drivers which use real world page sizes and 744\n"
21151 " pixels wide by 538 pixels high for raster drivers. The default value\n"
21152 " for dx and dy is 90 pixels per inch for raster drivers.\n"
21156 " Redacted form: plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21158 " This function is used in examples 14 and 31.\n"
21164 "plspage(xp, yp, xleng, yleng, xoff, yoff)\n"
21168 " xp (PLFLT, input) : Number of pixels per inch (DPI), x. Used only\n"
21169 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21172 " yp (PLFLT, input) : Number of pixels per inch (DPI), y. Used only\n"
21173 " by raster drivers, ignored by drivers which use \"real world\" units\n"
21176 " xleng (PLINT, input) : Page length, x.\n"
21178 " yleng (PLINT, input) : Page length, y.\n"
21180 " xoff (PLINT, input) : Page offset, x.\n"
21182 " yoff (PLINT, input) : Page offset, y.\n"
21186 "Set the cmap0 palette using the specified cmap0*.pal format file\n"
21190 " Set the cmap0 palette using the specified cmap0*.pal format file.\n"
21192 " Redacted form: plspal0(filename)\n"
21194 " This function is in example 16.\n"
21200 "plspal0(filename)\n"
21204 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21205 " containing the name of the cmap0*.pal file. If this string is\n"
21206 " empty, use the default cmap0*.pal file.\n"
21210 "Set the cmap1 palette using the specified cmap1*.pal format file\n"
21214 " Set the cmap1 palette using the specified cmap1*.pal format file.\n"
21216 " Redacted form: plspal1(filename, interpolate)\n"
21218 " This function is used in example 16.\n"
21224 "plspal1(filename, interpolate)\n"
21228 " filename (PLCHAR_VECTOR, input) : An ascii character string\n"
21229 " containing the name of the cmap1*.pal file. If this string is\n"
21230 " empty, use the default cmap1*.pal file.\n"
21232 " interpolate (PLBOOL, input) : If this parameter is true, the\n"
21233 " columns containing the intensity index, r, g, b, alpha and\n"
21234 " alt_hue_path in the cmap1*.pal file are used to set the cmap1\n"
21235 " palette with a call to plscmap1la. (The cmap1*.pal header contains\n"
21236 " a flag which controls whether the r, g, b data sent to plscmap1la\n"
21237 " are interpreted as HLS or RGB.) If this parameter is false, the\n"
21238 " intensity index and alt_hue_path columns are ignored and the r, g,\n"
21239 " b (interpreted as RGB), and alpha columns of the cmap1*.pal file\n"
21240 " are used instead to set the cmap1 palette directly with a call to\n"
21245 "Set the pause (on end-of-page) status\n"
21249 " Set the pause (on end-of-page) status.\n"
21251 " Redacted form: plspause(pause)\n"
21253 " This function is in examples 14,20.\n"
21259 "plspause(pause)\n"
21263 " pause (PLBOOL, input) : If pause is true there will be a pause on\n"
21264 " end-of-page for those drivers which support this. Otherwise there\n"
21269 "Set current output stream\n"
21273 " Sets the number of the current output stream. The stream number\n"
21274 " defaults to 0 unless changed by this routine. The first use of this\n"
21275 " routine must be followed by a call initializing PLplot (e.g. plstar).\n"
21277 " Redacted form: plsstrm(strm)\n"
21279 " This function is examples 1,14,20.\n"
21289 " strm (PLINT, input) : The current stream number.\n"
21293 "Set the number of subpages in x and y\n"
21297 " Set the number of subpages in x and y.\n"
21299 " Redacted form: plssub(nx, ny)\n"
21301 " This function is examples 1,2,14,21,25,27.\n"
21311 " nx (PLINT, input) : Number of windows in x direction (i.e., number\n"
21312 " of window columns).\n"
21314 " ny (PLINT, input) : Number of windows in y direction (i.e., number\n"
21315 " of window rows).\n"
21319 "Set symbol size\n"
21323 " This sets up the size of all subsequent symbols drawn by plpoin and\n"
21324 " plsym. The actual height of a symbol is the product of the default\n"
21325 " symbol size and a scaling factor as for the character height.\n"
21327 " Redacted form: plssym(def, scale)\n"
21329 " This function is used in example 29.\n"
21335 "plssym(def, scale)\n"
21339 " def (PLFLT, input) : The default height of a symbol in millimeters,\n"
21340 " should be set to zero if the default height is to remain\n"
21343 " scale (PLFLT, input) : Scale factor to be applied to default to get\n"
21344 " actual symbol height.\n"
21352 " Initializing the plotting package. The program prompts for the device\n"
21353 " keyword or number of the desired output device. Hitting a RETURN in\n"
21354 " response to the prompt is the same as selecting the first device. If\n"
21355 " only one device is enabled when PLplot is installed, plstar will issue\n"
21356 " no prompt. The output device is divided into nx by ny subpages, each\n"
21357 " of which may be used independently. The subroutine pladv is used to\n"
21358 " advance from one subpage to the next.\n"
21360 " Redacted form: plstar(nx, ny)\n"
21362 " This function is used in example 1.\n"
21372 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21375 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21384 " Alternative to plstar for initializing the plotting package. The\n"
21385 " device name keyword for the desired output device must be supplied as\n"
21386 " an argument. These keywords are the same as those printed out by\n"
21387 " plstar. If the requested device is not available, or if the input\n"
21388 " string is empty or begins with ``?'', the prompted start up of plstar\n"
21389 " is used. This routine also divides the output device page into nx by\n"
21390 " ny subpages, each of which may be used independently. The subroutine\n"
21391 " pladv is used to advance from one subpage to the next.\n"
21393 " Redacted form: General: plstart(devname, nx, ny)\n"
21396 " This function is not used in any examples.\n"
21402 "plstart(devname, nx, ny)\n"
21406 " devname (PLCHAR_VECTOR, input) : An ascii character string\n"
21407 " containing the device name keyword of the required output device.\n"
21409 " devname is NULL or if the first character of the string is a ``?'',\n"
21410 " the normal (prompted) start up is used.\n"
21412 " nx (PLINT, input) : Number of subpages to divide output page in the\n"
21415 " ny (PLINT, input) : Number of subpages to divide output page in the\n"
21420 "Set a global coordinate transform function\n"
21424 " This function can be used to define a coordinate transformation which\n"
21425 " affects all elements drawn within the current plot window. The\n"
21426 " coordinate_transform callback function is similar to that provided for\n"
21427 " the plmap and plmeridians functions. The coordinate_transform_data\n"
21428 " parameter may be used to pass extra data to coordinate_transform.\n"
21430 " Redacted form: General: plstransform(coordinate_transform,\n"
21431 " coordinate_transform_data)\n"
21434 " This function is used in examples 19 and 22.\n"
21440 "plstransform(coordinate_transform, coordinate_transform_data)\n"
21444 " coordinate_transform (PLTRANSFORM_callback, input) : A callback\n"
21445 " function that defines the transformation from the input (x, y)\n"
21446 " world coordinates to new PLplot world coordinates. If\n"
21447 " coordinate_transform is not supplied (e.g., is set to NULL in the C\n"
21448 " case), then no transform is applied.\n"
21450 " coordinate_transform_data (PLPointer, input) : Optional extra data\n"
21452 " coordinate_transform.\n"
21456 "Plot a glyph at the specified points\n"
21460 " Plot a glyph at the specified points. (Supersedes plpoin and plsym\n"
21461 " because many[!] more glyphs are accessible with plstring.) The glyph\n"
21462 " is specified with a PLplot user string. Note that the user string is\n"
21463 " not actually limited to one glyph so it is possible (but not normally\n"
21464 " useful) to plot more than one glyph at the specified points with this\n"
21465 " function. As with plmtex and plptex, the user string can contain FCI\n"
21466 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21467 " else PLplot escapes for Hershey or unicode text to determine the\n"
21470 " Redacted form: plstring(x, y, string)\n"
21472 " This function is used in examples 4, 21 and 26.\n"
21478 "plstring(n, x, y, string)\n"
21482 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21484 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21487 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21490 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21491 " the glyph(s) to be plotted at each of the n points.\n"
21495 "Plot a glyph at the specified 3D points\n"
21499 " Plot a glyph at the specified 3D points. (Supersedes plpoin3 because\n"
21500 " many[!] more glyphs are accessible with plstring3.) Set up the call to\n"
21501 " this function similar to what is done for plline3. The glyph is\n"
21502 " specified with a PLplot user string. Note that the user string is not\n"
21503 " actually limited to one glyph so it is possible (but not normally\n"
21504 " useful) to plot more than one glyph at the specified points with this\n"
21505 " function. As with plmtex and plptex, the user string can contain FCI\n"
21506 " escapes to determine the font, UTF-8 code to determine the glyph or\n"
21507 " else PLplot escapes for Hershey or unicode text to determine the\n"
21510 " Redacted form: plstring3(x, y, z, string)\n"
21512 " This function is used in example 18.\n"
21518 "plstring3(n, x, y, z, string)\n"
21522 " n (PLINT, input) : Number of points in the x, y, and z vectors.\n"
21524 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21527 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21530 " z (PLFLT_VECTOR, input) : A vector containing the z coordinates of\n"
21533 " string (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21534 " the glyph(s) to be plotted at each of the n points. points.\n"
21538 "Add a point to a strip chart\n"
21542 " Add a point to a given pen of a given strip chart. There is no need\n"
21543 " for all pens to have the same number of points or to be equally\n"
21544 " sampled in the x coordinate. Allocates memory and rescales as\n"
21547 " Redacted form: plstripa(id, pen, x, y)\n"
21549 " This function is used in example 17.\n"
21555 "plstripa(id, pen, x, y)\n"
21559 " id (PLINT, input) : Identification number of the strip chart (set\n"
21560 " up in plstripc).\n"
21562 " pen (PLINT, input) : Pen number (ranges from 0 to 3).\n"
21564 " x (PLFLT, input) : X coordinate of point to plot.\n"
21566 " y (PLFLT, input) : Y coordinate of point to plot.\n"
21570 "Create a 4-pen strip chart\n"
21574 " Create a 4-pen strip chart, to be used afterwards by plstripa\n"
21576 " Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump,\n"
21577 " ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline,\n"
21578 " styline, legline, labx, laby, labz)\n"
21581 " This function is used in example 17.\n"
21587 "plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby, labtop)\n"
21591 " id (PLINT_NC_SCALAR, output) : Returned value of the identification\n"
21592 " number of the strip chart to use on plstripa and plstripd.\n"
21594 " xspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21595 " the x-axis specification as in plbox.\n"
21597 " yspec (PLCHAR_VECTOR, input) : An ascii character string containing\n"
21598 " the y-axis specification as in plbox.\n"
21600 " xmin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21601 " change as data are added.\n"
21603 " xmax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21604 " change as data are added.\n"
21606 " xjump (PLFLT, input) : When x attains xmax, the length of the plot\n"
21607 " is multiplied by the factor (1 +\n"
21610 " ymin (PLFLT, input) : Initial coordinates of plot box; they will\n"
21611 " change as data are added.\n"
21613 " ymax (PLFLT, input) : Initial coordinates of plot box; they will\n"
21614 " change as data are added.\n"
21616 " xlpos (PLFLT, input) : X legend box position (range from 0 to 1).\n"
21618 " ylpos (PLFLT, input) : Y legend box position (range from 0 to 1).\n"
21620 " y_ascl (PLBOOL, input) : Autoscale y between x jumps if y_ascl is\n"
21621 " true, otherwise not.\n"
21623 " acc (PLBOOL, input) : Accumulate strip plot if acc is true,\n"
21624 " otherwise slide display.\n"
21626 " colbox (PLINT, input) : Plot box color index (cmap0).\n"
21628 " collab (PLINT, input) : Legend color index (cmap0).\n"
21630 " colline (PLINT_VECTOR, input) : A vector containing the cmap0 color\n"
21631 " indices for the 4 pens.\n"
21633 " styline (PLINT_VECTOR, input) : A vector containing the line style\n"
21634 " indices for the 4 pens.\n"
21636 " legline (PLCHAR_MATRIX, input) : A vector of UTF-8 character\n"
21637 " strings containing legends for the 4 pens.\n"
21639 " labx (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21640 " the label for the x axis.\n"
21642 " laby (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21643 " the label for the y axis.\n"
21645 " labtop (PLCHAR_VECTOR, input) : A UTF-8 character string containing\n"
21646 " the plot title.\n"
21650 "Deletes and releases memory used by a strip chart\n"
21654 " Deletes and releases memory used by a strip chart.\n"
21656 " Redacted form: plstripd(id)\n"
21658 " This function is used in example 17.\n"
21668 " id (PLINT, input) : Identification number of strip chart to delete.\n"
21676 " This sets up the line style for all lines subsequently drawn. A line\n"
21677 " consists of segments in which the pen is alternately down and up. The\n"
21678 " lengths of these segments are passed in the vectors mark and space\n"
21679 " respectively. The number of mark-space pairs is specified by nms. In\n"
21680 " order to return the line style to the default continuous line, plstyl\n"
21681 " should be called with nms =0 .(see also pllsty)\n"
21683 " Redacted form: plstyl(mark, space)\n"
21685 " This function is used in examples 1, 9, and 14.\n"
21691 "plstyl(nms, mark, space)\n"
21695 " nms (PLINT, input) : The number of mark and space elements in a\n"
21696 " line. Thus a simple broken line can be obtained by setting nms=1\n"
21697 " . A continuous line is specified by setting nms=0 .\n"
21699 " mark (PLINT_VECTOR, input) : A vector containing the lengths of the\n"
21700 " segments during which the pen is down, measured in micrometers.\n"
21702 " space (PLINT_VECTOR, input) : A vector containing the lengths of\n"
21703 " the segments during which the pen is up, measured in micrometers.\n"
21707 "Set arrow style for vector plots\n"
21711 " Set the style for the arrow used by plvect to plot vectors.\n"
21713 " Redacted form: plsvect(arrowx, arrowy, fill)\n"
21715 " This function is used in example 22.\n"
21721 "plsvect(arrowx, arrowy, npts, fill)\n"
21725 " arrowx, arrowy (PLFLT_VECTOR, input) : A pair of vectors containing\n"
21726 " the x and y points which make up the arrow. The arrow is plotted\n"
21727 " by joining these points to form a polygon. The scaling assumes\n"
21728 " that the x and y points in the arrow lie in the range -0.5 <= x,y\n"
21729 " <= 0.5. If both arrowx and arrowy are NULL then the arrow style\n"
21730 " will be reset to its default.\n"
21732 " npts (PLINT, input) : Number of points in the vectors arrowx and\n"
21735 " fill (PLBOOL, input) : If fill is true then the arrow is closed, if\n"
21736 " fill is false then the arrow is open.\n"
21740 "Specify viewport in absolute coordinates\n"
21744 " Alternate routine to plvpor for setting up the viewport. This routine\n"
21745 " should be used only if the viewport is required to have a definite\n"
21746 " size in millimeters. The routine plgspa is useful for finding out the\n"
21747 " size of the current subpage.\n"
21749 " Redacted form: plsvpa(xmin, xmax, ymin, ymax)\n"
21751 " This function is used in example 10.\n"
21757 "plsvpa(xmin, xmax, ymin, ymax)\n"
21761 " xmin (PLFLT, input) : The distance of the left-hand edge of the\n"
21762 " viewport from the left-hand edge of the subpage in millimeters.\n"
21764 " xmax (PLFLT, input) : The distance of the right-hand edge of the\n"
21765 " viewport from the left-hand edge of the subpage in millimeters.\n"
21767 " ymin (PLFLT, input) : The distance of the bottom edge of the\n"
21768 " viewport from the bottom edge of the subpage in millimeters.\n"
21770 " ymax (PLFLT, input) : The distance of the top edge of the viewport\n"
21771 " from the bottom edge of the subpage in millimeters.\n"
21775 "Set x axis parameters\n"
21779 " Sets values of the digmax and digits flags for the x axis. See the\n"
21780 " PLplot documentation for more information.\n"
21782 " Redacted form: plsxax(digmax, digits)\n"
21784 " This function is used in example 31.\n"
21790 "plsxax(digmax, digits)\n"
21794 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21795 " digits for the x axis. If nonzero, the printed label will be\n"
21796 " switched to a floating-point representation when the number of\n"
21797 " digits exceeds digmax.\n"
21799 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21800 " its value here has no effect since it is set only by plbox or\n"
21801 " plbox3. However, the user may obtain its value after a call to\n"
21802 " either of these functions by calling plgxax.\n"
21806 "Set y axis parameters\n"
21810 " Identical to plsxax, except that arguments are flags for y axis. See\n"
21811 " the description of plsxax for more detail.\n"
21813 " Redacted form: plsyax(digmax, digits)\n"
21815 " This function is used in examples 1, 14, and 31.\n"
21821 "plsyax(digmax, digits)\n"
21825 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21826 " digits for the y axis. If nonzero, the printed label will be\n"
21827 " switched to a floating-point representation when the number of\n"
21828 " digits exceeds digmax.\n"
21830 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21831 " its value here has no effect since it is set only by plbox or\n"
21832 " plbox3. However, the user may obtain its value after a call to\n"
21833 " either of these functions by calling plgyax.\n"
21837 "Plot a glyph at the specified points\n"
21841 " Plot a glyph at the specified points. (This function is largely\n"
21842 " superseded by plstring which gives access to many[!] more glyphs.)\n"
21844 " Redacted form: plsym(x, y, code)\n"
21846 " This function is used in example 7.\n"
21852 "plsym(n, x, y, code)\n"
21856 " n (PLINT, input) : Number of points in the x and y vectors.\n"
21858 " x (PLFLT_VECTOR, input) : A vector containing the x coordinates of\n"
21861 " y (PLFLT_VECTOR, input) : A vector containing the y coordinates of\n"
21864 " code (PLINT, input) : Hershey symbol code corresponding to a glyph\n"
21865 " to be plotted at each of the n points.\n"
21869 "Set z axis parameters\n"
21873 " Identical to plsxax, except that arguments are flags for z axis. See\n"
21874 " the description of plsxax for more detail.\n"
21876 " Redacted form: plszax(digmax, digits)\n"
21878 " This function is used in example 31.\n"
21884 "plszax(digmax, digits)\n"
21888 " digmax (PLINT, input) : Variable to set the maximum number of\n"
21889 " digits for the z axis. If nonzero, the printed label will be\n"
21890 " switched to a floating-point representation when the number of\n"
21891 " digits exceeds digmax.\n"
21893 " digits (PLINT, input) : Field digits value. Currently, changing\n"
21894 " its value here has no effect since it is set only by plbox or\n"
21895 " plbox3. However, the user may obtain its value after a call to\n"
21896 " either of these functions by calling plgzax.\n"
21900 "Switch to text screen\n"
21904 " Sets an interactive device to text mode, used in conjunction with\n"
21905 " plgra to allow graphics and text to be interspersed. On a device\n"
21906 " which supports separate text and graphics windows, this command causes\n"
21907 " control to be switched to the text window. This can be useful for\n"
21908 " printing diagnostic messages or getting user input, which would\n"
21909 " otherwise interfere with the plots. The program must switch back to\n"
21910 " the graphics window before issuing plot commands, as the text (or\n"
21911 " console) device will probably become quite confused otherwise. If\n"
21912 " already in text mode, this command is ignored. It is also ignored on\n"
21913 " devices which only support a single window or use a different method\n"
21914 " for shifting focus (see also plgra).\n"
21916 " Redacted form: pltext()\n"
21918 " This function is used in example 1.\n"
21928 "Set format for date / time labels\n"
21932 " Sets the format for date / time labels. To enable date / time format\n"
21933 " labels see the options to plbox, plbox3, and plenv.\n"
21935 " Redacted form: pltimefmt(fmt)\n"
21937 " This function is used in example 29.\n"
21947 " fmt (PLCHAR_VECTOR, input) : An ascii character string which is\n"
21948 " interpreted similarly to the format specifier of typical system\n"
21949 " strftime routines except that PLplot ignores locale and also\n"
21950 " supplies some useful extensions in the context of plotting. All\n"
21951 " text in the string is printed as-is other than conversion\n"
21952 " specifications which take the form of a '%' character followed by\n"
21953 " further conversion specification character. The conversion\n"
21954 " specifications which are similar to those provided by system\n"
21955 " strftime routines are the following: %a: The abbreviated (English)\n"
21957 " %A: The full (English) weekday name.\n"
21958 " %b: The abbreviated (English) month name.\n"
21959 " %B: The full (English) month name.\n"
21960 " %c: Equivalent to %a %b %d %T %Y (non-ISO).\n"
21961 " %C: The century number (year/100) as a 2-digit integer.\n"
21962 " %d: The day of the month as a decimal number (range 01 to 31).\n"
21963 " %D: Equivalent to %m/%d/%y (non-ISO).\n"
21964 " %e: Like %d, but a leading zero is replaced by a space.\n"
21965 " %F: Equivalent to %Y-%m-%d (the ISO 8601 date format).\n"
21966 " %h: Equivalent to %b.\n"
21967 " %H: The hour as a decimal number using a 24-hour clock (range\n"
21969 " %I: The hour as a decimal number using a 12-hour clock (range\n"
21971 " %j: The day of the year as a decimal number (range 001 to\n"
21973 " %k: The hour (24-hour clock) as a decimal number (range 0 to\n"
21974 " 23); single digits are preceded by a blank. (See also %H.)\n"
21975 " %l: The hour (12-hour clock) as a decimal number (range 1 to\n"
21976 " 12); single digits are preceded by a blank. (See also %I.)\n"
21977 " %m: The month as a decimal number (range 01 to 12).\n"
21978 " %M: The minute as a decimal number (range 00 to 59).\n"
21979 " %n: A newline character.\n"
21980 " %p: Either \"AM\" or \"PM\" according to the given time value.\n"
21981 " Noon is treated as \"PM\" and midnight as \"AM\".\n"
21982 " %r: Equivalent to %I:%M:%S %p.\n"
21983 " %R: The time in 24-hour notation (%H:%M). For a version\n"
21984 " including the seconds, see %T below.\n"
21985 " %s: The number of seconds since the Epoch, 1970-01-01 00:00:00\n"
21987 " %S: The second as a decimal number (range 00 to 60). (The\n"
21988 " range is up to 60 to allow for occasional leap seconds.)\n"
21989 " %t: A tab character.\n"
21990 " %T: The time in 24-hour notation (%H:%M:%S).\n"
21991 " %u: The day of the week as a decimal, range 1 to 7, Monday\n"
21992 " being 1. See also %w.\n"
21993 " %U: The week number of the current year as a decimal number,\n"
21994 " range 00 to 53, starting with the first Sunday as the first\n"
21995 " day of week 01. See also %V and %W.\n"
21996 " %v: Equivalent to %e-%b-%Y.\n"
21997 " %V: The ISO 8601 week number of the current year as a decimal\n"
21998 " number, range 01 to 53, where week 1 is the first week that\n"
21999 " has at least 4 days in the new year. See also %U and %W.\n"
22000 " %w: The day of the week as a decimal, range 0 to 6, Sunday\n"
22001 " being 0. See also %u.\n"
22002 " %W: The week number of the current year as a decimal number,\n"
22003 " range 00 to 53, starting with the first Monday as the first\n"
22004 " day of week 01.\n"
22005 " %x: Equivalent to %a %b %d %Y.\n"
22006 " %X: Equivalent to %T.\n"
22007 " %y: The year as a decimal number without a century (range 00\n"
22009 " %Y: The year as a decimal number including a century.\n"
22010 " %z: The UTC time-zone string = \"+0000\".\n"
22011 " %Z: The UTC time-zone abbreviation = \"UTC\".\n"
22012 " %+: The UTC date and time in default format of the Unix date\n"
22013 " command which is equivalent to %a %b %d %T %Z %Y.\n"
22014 " %%: A literal \"%\" character.\n"
22015 " The conversion specifications which are extensions to those normally\n"
22016 " provided by system strftime routines are the following: %(0-9):\n"
22017 " The fractional part of the seconds field (including leading\n"
22018 " decimal point) to the specified accuracy. Thus %S%3 would give\n"
22019 " seconds to millisecond accuracy (00.000).\n"
22020 " %.: The fractional part of the seconds field (including\n"
22021 " leading decimal point) to the maximum available accuracy. Thus\n"
22022 " %S%. would give seconds with fractional part up to 9 decimal\n"
22023 " places if available.\n"
22027 "Specify viewport using aspect ratio only\n"
22031 " Selects the largest viewport with the given aspect ratio within the\n"
22032 " subpage that leaves a standard margin (left-hand margin of eight\n"
22033 " character heights, and a margin around the other three sides of five\n"
22034 " character heights).\n"
22036 " Redacted form: plvasp(aspect)\n"
22038 " This function is used in example 13.\n"
22048 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22049 " axis of resulting viewport.\n"
22057 " Draws a plot of vector data contained in the matrices (\n"
22063 " ny]) . The scaling factor for the vectors is given by scale. A\n"
22064 " transformation routine pointed to by pltr with a pointer pltr_data for\n"
22065 " additional data required by the transformation routine to map indices\n"
22066 " within the matrices to the world coordinates. The style of the vector\n"
22067 " arrow may be set using plsvect.\n"
22069 " Redacted form: plvect(u, v, scale, pltr, pltr_data) where (see above\n"
22070 " discussion) the pltr, pltr_data callback arguments are sometimes\n"
22071 " replaced by a tr vector with 6 elements, or xg and yg array arguments\n"
22072 " with either one or two dimensions.\n"
22074 " This function is used in example 22.\n"
22080 "plvect(u, v, nx, ny, scale, pltr, pltr_data)\n"
22084 " u, v (PLFLT_MATRIX, input) : A pair of matrices containing the x\n"
22085 " and y components of the vector data to be plotted.\n"
22087 " nx, ny (PLINT, input) : Dimensions of the matrices u and v.\n"
22089 " scale (PLFLT, input) : Parameter to control the scaling factor of\n"
22090 " the vectors for plotting. If scale = 0 then the scaling factor is\n"
22091 " automatically calculated for the data. If scale < 0 then the\n"
22092 " scaling factor is automatically calculated for the data and then\n"
22093 " multiplied by -\n"
22094 " scale. If scale > 0 then the scaling factor is set to scale.\n"
22096 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22097 " defines the transformation between the zero-based indices of the\n"
22098 " matrices u and v and world coordinates.For the C case,\n"
22099 " transformation functions are provided in the PLplot library: pltr0\n"
22100 " for the identity mapping, and pltr1 and pltr2 for arbitrary\n"
22101 " mappings respectively defined by vectors and matrices. In\n"
22102 " addition, C callback routines for the transformation can be\n"
22103 " supplied by the user such as the mypltr function in\n"
22104 " examples/c/x09c.c which provides a general linear transformation\n"
22105 " between index coordinates and world coordinates.For languages\n"
22106 " other than C you should consult the PLplot documentation for the\n"
22107 " details concerning how PLTRANSFORM_callback arguments are\n"
22108 " interfaced. However, in general, a particular pattern of\n"
22109 " callback-associated arguments such as a tr vector with 6 elements;\n"
22110 " xg and yg vectors; or xg and yg matrices are respectively\n"
22111 " interfaced to a linear-transformation routine similar to the above\n"
22112 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22113 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22114 " support native language callbacks for handling index to\n"
22115 " world-coordinate transformations. Examples of these various\n"
22116 " approaches are given in examples/<language>x09*,\n"
22117 " examples/<language>x16*, examples/<language>x20*,\n"
22118 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22119 " supported languages.\n"
22121 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22122 " information to pltr0, pltr1, pltr2, or whatever callback routine\n"
22123 " that is externally supplied.\n"
22127 "Specify viewport using coordinates and aspect ratio\n"
22131 " Device-independent routine for setting up the viewport. The viewport\n"
22132 " is chosen to be the largest with the given aspect ratio that fits\n"
22133 " within the specified region (in terms of normalized subpage\n"
22134 " coordinates). This routine is functionally equivalent to plvpor when\n"
22135 " a ``natural'' aspect ratio (0.0) is chosen. Unlike plvasp, this\n"
22136 " routine reserves no extra space at the edges for labels.\n"
22138 " Redacted form: plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22140 " This function is used in example 9.\n"
22146 "plvpas(xmin, xmax, ymin, ymax, aspect)\n"
22150 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22151 " left-hand edge of the viewport.\n"
22153 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22154 " right-hand edge of the viewport.\n"
22156 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22157 " bottom edge of the viewport.\n"
22159 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22160 " edge of the viewport.\n"
22162 " aspect (PLFLT, input) : Ratio of length of y axis to length of x\n"
22167 "Specify viewport using normalized subpage coordinates\n"
22171 " Device-independent routine for setting up the viewport. This defines\n"
22172 " the viewport in terms of normalized subpage coordinates which run from\n"
22173 " 0.0 to 1.0 (left to right and bottom to top) along each edge of the\n"
22174 " current subpage. Use the alternate routine plsvpa in order to create\n"
22175 " a viewport of a definite size.\n"
22177 " Redacted form: plvpor(xmin, xmax, ymin, ymax)\n"
22179 " This function is used in examples 2, 6-8, 10, 11, 15, 16, 18, 21, 23,\n"
22180 " 24, 26, 27, and 31.\n"
22186 "plvpor(xmin, xmax, ymin, ymax)\n"
22190 " xmin (PLFLT, input) : The normalized subpage coordinate of the\n"
22191 " left-hand edge of the viewport.\n"
22193 " xmax (PLFLT, input) : The normalized subpage coordinate of the\n"
22194 " right-hand edge of the viewport.\n"
22196 " ymin (PLFLT, input) : The normalized subpage coordinate of the\n"
22197 " bottom edge of the viewport.\n"
22199 " ymax (PLFLT, input) : The normalized subpage coordinate of the top\n"
22200 " edge of the viewport.\n"
22204 "Select standard viewport\n"
22208 " Selects the largest viewport within the subpage that leaves a standard\n"
22209 " margin (left-hand margin of eight character heights, and a margin\n"
22210 " around the other three sides of five character heights).\n"
22212 " Redacted form: plvsta()\n"
22214 " This function is used in examples 1, 12, 14, 17, 25, and 29.\n"
22224 "Configure the transformations required for projecting a 3D surface on a 2D window\n"
22228 " Configure the transformations required for projecting a 3D surface on\n"
22229 " an existing 2D window. Those transformations (see the PLplot\n"
22230 " documentation) are done to a rectangular cuboid enclosing the 3D\n"
22231 " surface which has its limits expressed in 3D world coordinates and\n"
22232 " also normalized 3D coordinates (used for interpreting the altitude and\n"
22233 " azimuth of the viewing angle). The transformations consist of the\n"
22234 " linear transform from 3D world coordinates to normalized 3D\n"
22235 " coordinates, and the 3D rotation of normalized coordinates required to\n"
22236 " align the pole of the new 3D coordinate system with the viewing\n"
22237 " direction specified by altitude and azimuth so that x and y of the\n"
22238 " surface elements in that transformed coordinate system are the\n"
22239 " projection of the 3D surface with given viewing direction on the 2D\n"
22242 " The enclosing rectangular cuboid for the surface plot is defined by\n"
22243 " xmin, xmax, ymin, ymax, zmin and zmax in 3D world coordinates. It is\n"
22244 " mapped into the same rectangular cuboid with normalized 3D coordinate\n"
22245 " sizes of basex by basey by height so that xmin maps to -\n"
22246 " basex/2, xmax maps to basex/2, ymin maps to -\n"
22247 " basey/2, ymax maps to basey/2, zmin maps to 0 and zmax maps to height.\n"
22248 " The resulting rectangular cuboid in normalized coordinates is then\n"
22249 " viewed by an observer at altitude alt and azimuth az. This routine\n"
22250 " must be called before plbox3 or any of the 3D surface plotting\n"
22251 " routines; plmesh, plmeshc, plot3d, plot3dc, plot3dcl, plsurf3d,\n"
22252 " plsurf3dl or plfill3.\n"
22254 " Redacted form: plw3d(basex, basey, height, xmin, xmax, ymin, ymax,\n"
22255 " zmin, zmax, alt, az)\n"
22257 " This function is examples 8, 11, 18, and 21.\n"
22263 "plw3d(basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az)\n"
22267 " basex (PLFLT, input) : The normalized x coordinate size of the\n"
22268 " rectangular cuboid.\n"
22270 " basey (PLFLT, input) : The normalized y coordinate size of the\n"
22271 " rectangular cuboid.\n"
22273 " height (PLFLT, input) : The normalized z coordinate size of the\n"
22274 " rectangular cuboid.\n"
22276 " xmin (PLFLT, input) : The minimum x world coordinate of the\n"
22277 " rectangular cuboid.\n"
22279 " xmax (PLFLT, input) : The maximum x world coordinate of the\n"
22280 " rectangular cuboid.\n"
22282 " ymin (PLFLT, input) : The minimum y world coordinate of the\n"
22283 " rectangular cuboid.\n"
22285 " ymax (PLFLT, input) : The maximum y world coordinate of the\n"
22286 " rectangular cuboid.\n"
22288 " zmin (PLFLT, input) : The minimum z world coordinate of the\n"
22289 " rectangular cuboid.\n"
22291 " zmax (PLFLT, input) : The maximum z world coordinate of the\n"
22292 " rectangular cuboid.\n"
22294 " alt (PLFLT, input) : The viewing altitude in degrees above the xy\n"
22295 " plane of the rectangular cuboid in normalized coordinates.\n"
22297 " az (PLFLT, input) : The viewing azimuth in degrees of the\n"
22298 " rectangular cuboid in normalized coordinates. When az=0, the\n"
22299 " observer is looking face onto the zx plane of the rectangular\n"
22300 " cuboid in normalized coordinates, and as az is increased, the\n"
22301 " observer moves clockwise around that cuboid when viewed from above\n"
22310 " Sets the pen width.\n"
22312 " Redacted form: plwidth(width)\n"
22314 " This function is used in examples 1 and 2.\n"
22324 " width (PLFLT, input) : The desired pen width. If width is negative\n"
22325 " or the same as the previous value no action is taken. width = 0.\n"
22326 " should be interpreted as as the minimum valid pen width for the\n"
22327 " device. The interpretation of positive width values is also\n"
22328 " device dependent.\n"
22336 " Specify the window, i.e., the world coordinates of the edges of the\n"
22339 " Redacted form: plwind(xmin, xmax, ymin, ymax)\n"
22341 " This function is used in examples 1, 2, 4, 6-12, 14-16, 18, 21, 23-27,\n"
22348 "plwind(xmin, xmax, ymin, ymax)\n"
22352 " xmin (PLFLT, input) : The world x coordinate of the left-hand edge\n"
22353 " of the viewport.\n"
22355 " xmax (PLFLT, input) : The world x coordinate of the right-hand edge\n"
22356 " of the viewport.\n"
22358 " ymin (PLFLT, input) : The world y coordinate of the bottom edge of\n"
22361 " ymax (PLFLT, input) : The world y coordinate of the top edge of the\n"
22366 "Enter or leave xor mode\n"
22370 " Enter (when mode is true) or leave (when mode is false) xor mode for\n"
22371 " those drivers (e.g., the xwin driver) that support it. Enables\n"
22372 " erasing plots by drawing twice the same line, symbol, etc. If driver\n"
22373 " is not capable of xor operation it returns a status of false.\n"
22375 " Redacted form: plxormod(mode, status)\n"
22377 " This function is used in examples 1 and 20.\n"
22383 "plxormod(mode, status)\n"
22387 " mode (PLBOOL, input) : mode is true means enter xor mode and mode\n"
22388 " is false means leave xor mode.\n"
22390 " status (PLBOOL_NC_SCALAR, output) : Returned value of the status.\n"
22391 " modestatus of true (false) means driver is capable (incapable) of\n"
22396 "Plot continental outline or shapefile data in world coordinates\n"
22400 " Plots continental outlines or shapefile data in world coordinates. A\n"
22401 " demonstration of how to use this function to create different\n"
22402 " projections can be found in examples/c/x19c. PLplot is provided with\n"
22403 " basic coastal outlines and USA state borders. To use the map\n"
22404 " functionality PLplot must be compiled with the shapelib library.\n"
22405 " Shapefiles have become a popular standard for geographical data and\n"
22406 " data in this format can be easily found from a number of online\n"
22407 " sources. Shapefile data is actually provided as three or more files\n"
22408 " with the same filename, but different extensions. The .shp and .shx\n"
22409 " files are required for plotting Shapefile data with PLplot.\n"
22411 " PLplot currently supports the point, multipoint, polyline and polygon\n"
22412 " objects within shapefiles. However holes in polygons are not\n"
22413 " supported. When plmap is used the type of object is derived from the\n"
22414 " shapefile, if you wish to override the type then use one of the other\n"
22415 " plmap variants. The built in maps have line data only.\n"
22417 " Redacted form: plmap(mapform, name, minx, maxx, miny, maxy)\n"
22419 " This function is used in example 19.\n"
22425 "plmap(mapform, name, minx, maxx, miny, maxy)\n"
22429 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22430 " transform the original map data coordinates to a new coordinate\n"
22431 " system. The PLplot-supplied map data is provided as latitudes and\n"
22432 " longitudes; other Shapefile data may be provided in other\n"
22433 " coordinate systems as can be found in their .prj plain text files.\n"
22434 " For example, by using this transform we can change from a\n"
22435 " longitude, latitude coordinate to a polar stereographic\n"
22436 " projection. Initially, x[0]..[n-1] are the original x coordinates\n"
22437 " (longitudes for the PLplot-supplied data) and y[0]..y[n-1] are the\n"
22438 " corresponding y coordinates (latitudes for the PLplot supplied\n"
22439 " data). After the call to mapform(), x[] and y[] should be\n"
22440 " replaced by the corresponding plot coordinates. If no transform is\n"
22441 " desired, mapform can be replaced by NULL.\n"
22443 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22444 " the type of map plotted. This is either one of the PLplot built-in\n"
22445 " maps or the file name of a set of Shapefile files without the file\n"
22446 " extensions. For the PLplot built-in maps the possible values are:\n"
22447 " \"globe\" -- continental outlines\n"
22448 " \"usa\" -- USA and state boundaries\n"
22449 " \"cglobe\" -- continental outlines and countries\n"
22450 " \"usaglobe\" -- USA, state boundaries and continental outlines\n"
22453 " minx (PLFLT, input) : The minimum x value of map elements to be\n"
22454 " drawn. The units must match the shapefile (built in maps are\n"
22455 " degrees lat/lon). Objects in the file which do not encroach on the\n"
22456 " box defined by minx, maxx, miny, maxy will not be rendered. But\n"
22457 " note this is simply an optimisation, not a clipping so for objects\n"
22458 " with some points inside the box and some points outside the box\n"
22459 " all the points will be rendered. These parameters also define\n"
22460 " latitude and longitude wrapping for shapefiles using these units.\n"
22461 " Longitude points will be wrapped by integer multiples of 360\n"
22462 " degrees to place them in the box. This allows the same data to be\n"
22463 " used on plots from -180-180 or 0-360 longitude ranges. In fact if\n"
22464 " you plot from -180-540 you will get two cycles of data drawn. The\n"
22465 " value of minx must be less than the value of maxx. Passing in a\n"
22466 " nan, max/-max floating point number or +/-infinity will case the\n"
22467 " bounding box from the shapefile to be used.\n"
22469 " maxx (PLFLT, input) : The maximum x value of map elements to be\n"
22470 " drawn - see minx.\n"
22472 " miny (PLFLT, input) : The minimum y value of map elements to be\n"
22473 " drawn - see minx.\n"
22475 " maxy (PLFLT, input) : The maximum y value of map elements to be\n"
22476 " drawn - see minx.\n"
22480 "Plot all or a subset of Shapefile data using lines in world coordinates\n"
22484 " Plot all or a subset of Shapefile data using lines in world\n"
22485 " coordinates. Our 19th standard example demonstrates how to use this\n"
22486 " function. This function plots data from a Shapefile using lines as in\n"
22487 " plmap, however it also has the option of also only drawing specified\n"
22488 " elements from the Shapefile. The vector of indices of the required\n"
22489 " elements are passed as a function argument. The Shapefile data should\n"
22490 " include a metadata file (extension.dbf) listing all items within the\n"
22491 " Shapefile. This file can be opened by most popular spreadsheet\n"
22492 " programs and can be used to decide which indices to pass to this\n"
22495 " Redacted form: plmapline(mapform, name, minx, maxx, miny, maxy,\n"
22498 " This function is used in example 19.\n"
22504 "plmapline(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22508 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22509 " transform the coordinates given in the shapefile into a plot\n"
22510 " coordinate system. By using this transform, we can change from a\n"
22511 " longitude, latitude coordinate to a polar stereographic project,\n"
22512 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22513 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22514 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22515 " plot coordinates. If no transform is desired, mapform can be\n"
22516 " replaced by NULL.\n"
22518 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22519 " the file name of a set of Shapefile files without the file\n"
22522 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22523 " be in the same units as used by the Shapefile. You could use a\n"
22524 " very large negative number to plot everything, but you can improve\n"
22525 " performance by limiting the area drawn. The units must match those\n"
22526 " of the Shapefile projection, which may be for example longitude or\n"
22527 " distance. The value of minx must be less than the value of maxx.\n"
22529 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22530 " use a very large number to plot everything, but you can improve\n"
22531 " performance by limiting the area drawn.\n"
22533 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22534 " be in the same units as used by the Shapefile. You could use a\n"
22535 " very large negative number to plot everything, but you can improve\n"
22536 " performance by limiting the area drawn. The units must match those\n"
22537 " of the Shapefile projection, which may be for example latitude or\n"
22538 " distance. The value of miny must be less than the value of maxy.\n"
22540 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22541 " use a very large number to plot everything, but you can improve\n"
22542 " performance by limiting the area drawn.\n"
22544 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22545 " zero-based indices of the Shapefile elements which will be drawn.\n"
22547 " plotentries to NULL will plot all elements of the Shapefile.\n"
22549 " nplotentries (PLINT, input) : The number of items in\n"
22550 " plotentries. Ignored if\n"
22551 " plotentries is NULL.\n"
22555 "Plot all or a subset of Shapefile data using strings or points in world coordinates\n"
22559 " As per plmapline, however the items are plotted as strings or points\n"
22560 " in the same way as plstring.\n"
22562 " Redacted form: plmapstring(mapform, name, string, minx, maxx, miny,\n"
22563 " maxy, plotentries)\n"
22565 " This function is not used in any examples.\n"
22571 "plmapstring(mapform, name, string, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22575 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22576 " transform the coordinates given in the shapefile into a plot\n"
22577 " coordinate system. By using this transform, we can change from a\n"
22578 " longitude, latitude coordinate to a polar stereographic project,\n"
22579 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22580 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22581 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22582 " plot coordinates. If no transform is desired, mapform can be\n"
22583 " replaced by NULL.\n"
22585 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22586 " the file name of a set of Shapefile files without the file\n"
22589 " string (PLCHAR_VECTOR, input) : A UTF-8 character string to be\n"
22592 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22593 " be in the same units as used by the Shapefile. You could use a\n"
22594 " very large negative number to plot everything, but you can improve\n"
22595 " performance by limiting the area drawn. The units must match those\n"
22596 " of the Shapefile projection, which may be for example longitude or\n"
22597 " distance. The value of minx must be less than the value of maxx.\n"
22599 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22600 " use a very large number to plot everything, but you can improve\n"
22601 " performance by limiting the area drawn.\n"
22603 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22604 " be in the same units as used by the Shapefile. You could use a\n"
22605 " very large negative number to plot everything, but you can improve\n"
22606 " performance by limiting the area drawn. The units must match those\n"
22607 " of the Shapefile projection, which may be for example latitude or\n"
22608 " distance. The value of miny must be less than the value of maxy.\n"
22610 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22611 " use a very large number to plot everything, but you can improve\n"
22612 " performance by limiting the area drawn.\n"
22614 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22615 " zero-based indices of the Shapefile elements which will be drawn.\n"
22617 " plotentries to NULL will plot all elements of the Shapefile.\n"
22619 " nplotentries (PLINT, input) : The number of items in\n"
22620 " plotentries. Ignored if\n"
22621 " plotentries is NULL.\n"
22625 "Draw text at points defined by Shapefile data in world coordinates\n"
22629 " As per plmapline, however the items are plotted as text in the same\n"
22630 " way as plptex.\n"
22632 " Redacted form: plmaptex(mapform, name, dx, dy, just, text, minx, maxx,\n"
22633 " miny, maxy, plotentry)\n"
22635 " This function is used in example 19.\n"
22641 "plmaptex(mapform, name, dx, dy, just, text, minx, maxx, miny, maxy, plotentry)\n"
22645 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22646 " transform the coordinates given in the shapefile into a plot\n"
22647 " coordinate system. By using this transform, we can change from a\n"
22648 " longitude, latitude coordinate to a polar stereographic project,\n"
22649 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22650 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22651 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22652 " plot coordinates. If no transform is desired, mapform can be\n"
22653 " replaced by NULL.\n"
22655 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22656 " the file name of a set of Shapefile files without the file\n"
22659 " dx (PLFLT, input) : Used to define the slope of the texts which is\n"
22662 " dy (PLFLT, input) : Used to define the slope of the texts which is\n"
22665 " just (PLFLT, input) : Set the justification of the text. The value\n"
22666 " given will be the fraction of the distance along the string that\n"
22667 " sits at the given point. 0.0 gives left aligned text, 0.5 gives\n"
22668 " centralized text and 1.0 gives right aligned text.\n"
22670 " text (PLCHAR_VECTOR, input) : A UTF-8 character string to be drawn.\n"
22672 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22673 " be in the same units as used by the Shapefile. You could use a\n"
22674 " very large negative number to plot everything, but you can improve\n"
22675 " performance by limiting the area drawn. The units must match those\n"
22676 " of the Shapefile projection, which may be for example longitude or\n"
22677 " distance. The value of minx must be less than the value of maxx.\n"
22679 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22680 " use a very large number to plot everything, but you can improve\n"
22681 " performance by limiting the area drawn.\n"
22683 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22684 " be in the same units as used by the Shapefile. You could use a\n"
22685 " very large negative number to plot everything, but you can improve\n"
22686 " performance by limiting the area drawn. The units must match those\n"
22687 " of the Shapefile projection, which may be for example latitude or\n"
22688 " distance. The value of miny must be less than the value of maxy.\n"
22690 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22691 " use a very large number to plot everything, but you can improve\n"
22692 " performance by limiting the area drawn.\n"
22694 " plotentry (PLINT, input) : An integer indicating which text string\n"
22695 " of the Shapefile (zero indexed) will be drawn.\n"
22699 "Plot all or a subset of Shapefile data, filling the polygons\n"
22703 " As per plmapline, however the items are filled in the same way as\n"
22706 " Redacted form: plmapfill(mapform, name, minx, maxx, miny, maxy,\n"
22709 " This function is used in example 19.\n"
22715 "plmapfill(mapform, name, minx, maxx, miny, maxy, plotentries, nplotentries)\n"
22719 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22720 " transform the coordinates given in the shapefile into a plot\n"
22721 " coordinate system. By using this transform, we can change from a\n"
22722 " longitude, latitude coordinate to a polar stereographic project,\n"
22723 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22724 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22725 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22726 " plot coordinates. If no transform is desired, mapform can be\n"
22727 " replaced by NULL.\n"
22729 " name (PLCHAR_VECTOR, input) : An ascii character string specifying\n"
22730 " the file name of a set of Shapefile files without the file\n"
22733 " minx (PLFLT, input) : The minimum x value to be plotted. This must\n"
22734 " be in the same units as used by the Shapefile. You could use a\n"
22735 " very large negative number to plot everything, but you can improve\n"
22736 " performance by limiting the area drawn. The units must match those\n"
22737 " of the Shapefile projection, which may be for example longitude or\n"
22738 " distance. The value of minx must be less than the value of maxx.\n"
22740 " maxx (PLFLT, input) : The maximum x value to be plotted. You could\n"
22741 " use a very large number to plot everything, but you can improve\n"
22742 " performance by limiting the area drawn.\n"
22744 " miny (PLFLT, input) : The minimum y value to be plotted. This must\n"
22745 " be in the same units as used by the Shapefile. You could use a\n"
22746 " very large negative number to plot everything, but you can improve\n"
22747 " performance by limiting the area drawn. The units must match those\n"
22748 " of the Shapefile projection, which may be for example latitude or\n"
22749 " distance. The value of miny must be less than the value of maxy.\n"
22751 " maxy (PLFLT, input) : The maximum y value to be plotted. You could\n"
22752 " use a very large number to plot everything, but you can improve\n"
22753 " performance by limiting the area drawn.\n"
22755 " plotentries (PLINT_VECTOR, input) : A vector containing the\n"
22756 " zero-based indices of the Shapefile elements which will be drawn.\n"
22758 " plotentries to NULL will plot all elements of the Shapefile.\n"
22760 " nplotentries (PLINT, input) : The number of items in\n"
22761 " plotentries. Ignored if\n"
22762 " plotentries is NULL.\n"
22766 "Plot latitude and longitude lines\n"
22770 " Displays latitude and longitude on the current plot. The lines are\n"
22771 " plotted in the current color and line style.\n"
22773 " Redacted form: plmeridians(mapform, dlong, dlat, minlong, maxlong,\n"
22774 " minlat, maxlat)\n"
22776 " This function is used in example 19.\n"
22782 "plmeridians(mapform, dlong, dlat, minlong, maxlong, minlat, maxlat)\n"
22786 " mapform (PLMAPFORM_callback, input) : A user supplied function to\n"
22787 " transform the coordinate longitudes and latitudes to a plot\n"
22788 " coordinate system. By using this transform, we can change from a\n"
22789 " longitude, latitude coordinate to a polar stereographic project,\n"
22790 " for example. Initially, x[0]..[n-1] are the longitudes and\n"
22791 " y[0]..y[n-1] are the corresponding latitudes. After the call to\n"
22792 " mapform(), x[] and y[] should be replaced by the corresponding\n"
22793 " plot coordinates. If no transform is desired, mapform can be\n"
22794 " replaced by NULL.\n"
22796 " dlong (PLFLT, input) : The interval in degrees at which the\n"
22797 " longitude lines are to be plotted.\n"
22799 " dlat (PLFLT, input) : The interval in degrees at which the latitude\n"
22800 " lines are to be plotted.\n"
22802 " minlong (PLFLT, input) : The value of the longitude on the left\n"
22803 " side of the plot. The value of minlong must be less than the value\n"
22804 " of maxlong, and the quantity maxlong-minlong must be less than or\n"
22807 " maxlong (PLFLT, input) : The value of the longitude on the right\n"
22808 " side of the plot.\n"
22810 " minlat (PLFLT, input) : The minimum latitude to be plotted on the\n"
22811 " background. One can always use -90.0 as the boundary outside the\n"
22812 " plot window will be automatically eliminated. However, the\n"
22813 " program will be faster if one can reduce the size of the\n"
22814 " background plotted.\n"
22816 " maxlat (PLFLT, input) : The maximum latitudes to be plotted on the\n"
22817 " background. One can always use 90.0 as the boundary outside the\n"
22818 " plot window will be automatically eliminated.\n"
22822 "Plot a 2D matrix using cmap1 with automatic color adjustment\n"
22826 " Plot a 2D matrix using the cmap1 palette. The color scale is\n"
22827 " automatically adjusted to use the maximum and minimum values in idata\n"
22828 " as valuemin and valuemax in a call to plimagefr.\n"
22830 " Redacted form: General: plimage(idata, xmin, xmax, ymin, ymax, zmin,\n"
22831 " zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22834 " This function is used in example 20.\n"
22840 "plimage(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dxmax, Dymin, Dymax)\n"
22844 " idata (PLFLT_MATRIX, input) : A matrix containing function values\n"
22845 " to plot. Should have dimensions of\n"
22849 " nx, ny (PLINT, input) : Dimensions of idata\n"
22851 " xmin, xmax, ymin, ymax (PLFLT, input) : The x and y index ranges\n"
22852 " are linearly transformed to these world coordinate ranges such\n"
22853 " that idata[0][0] corresponds to (xmin, ymin) and idata[nx - 1][ny\n"
22854 " - 1] corresponds to (xmax, ymax).\n"
22856 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22857 " (inclusive) will be plotted.\n"
22859 " Dxmin, Dxmax, Dymin, Dymax (PLFLT, input) : Plot only the window of\n"
22860 " points whose plot coordinates fall inside the window of (Dxmin,\n"
22861 " Dymin) to (Dxmax, Dymax).\n"
22865 "Plot a 2D matrix using cmap1\n"
22869 " Plot a 2D matrix using cmap1.\n"
22871 " Redacted form: General: plimagefr(idata, xmin, xmax, ymin, ymax, zmin,\n"
22872 " zmax, valuemin, valuemax, pltr, pltr_data)\n"
22875 " This function is used in example 20.\n"
22881 "plimagefr(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data)\n"
22885 " idata (PLFLT_MATRIX, input) : A matrix of values (intensities) to\n"
22886 " plot. Should have dimensions of\n"
22890 " nx, ny (PLINT, input) : Dimensions of idata\n"
22892 " xmin, xmax, ymin, ymax (PLFLT, input) : See the discussion of\n"
22893 " pltr below for how these arguments are used (only for the special case\n"
22894 " when the callback function\n"
22895 " pltr is not supplied).\n"
22897 " zmin, zmax (PLFLT, input) : Only data between zmin and zmax\n"
22898 " (inclusive) will be plotted.\n"
22900 " valuemin, valuemax (PLFLT, input) : The minimum and maximum data\n"
22901 " values to use for value to color mappings. A datum equal to or\n"
22902 " less than valuemin will be plotted with color 0.0, while a datum\n"
22903 " equal to or greater than valuemax will be plotted with color 1.0.\n"
22904 " Data between valuemin and valuemax map linearly to colors in the\n"
22905 " range (0.0-1.0).\n"
22907 " pltr (PLTRANSFORM_callback, input) : A callback function that\n"
22908 " defines the transformation between the zero-based indices of the\n"
22909 " matrix idata and world coordinates. If\n"
22910 " pltr is not supplied (e.g., is set to NULL in the C case), then the x\n"
22911 " indices of idata are mapped to the range\n"
22913 " xmax and the y indices of idata are mapped to the range\n"
22915 " ymax.For the C case, transformation functions are provided in the\n"
22916 " PLplot library: pltr0 for the identity mapping, and pltr1 and\n"
22917 " pltr2 for arbitrary mappings respectively defined by vectors and\n"
22918 " matrices. In addition, C callback routines for the transformation\n"
22919 " can be supplied by the user such as the mypltr function in\n"
22920 " examples/c/x09c.c which provides a general linear transformation\n"
22921 " between index coordinates and world coordinates.For languages\n"
22922 " other than C you should consult the PLplot documentation for the\n"
22923 " details concerning how PLTRANSFORM_callback arguments are\n"
22924 " interfaced. However, in general, a particular pattern of\n"
22925 " callback-associated arguments such as a tr vector with 6 elements;\n"
22926 " xg and yg vectors; or xg and yg matrices are respectively\n"
22927 " interfaced to a linear-transformation routine similar to the above\n"
22928 " mypltr function; pltr1; and pltr2. Furthermore, some of our more\n"
22929 " sophisticated bindings (see, e.g., the PLplot documentation)\n"
22930 " support native language callbacks for handling index to\n"
22931 " world-coordinate transformations. Examples of these various\n"
22932 " approaches are given in examples/<language>x09*,\n"
22933 " examples/<language>x16*, examples/<language>x20*,\n"
22934 " examples/<language>x21*, and examples/<language>x22*, for all our\n"
22935 " supported languages.\n"
22937 " pltr_data (PLPointer, input) : Extra parameter to help pass\n"
22938 " information to pltr0, pltr1, pltr2, or whatever routine is\n"
22939 " externally supplied.\n"
22948 "Wait for graphics input event and translate to world coordinates.\n"
22952 " Wait for graphics input event and translate to world coordinates.\n"
22953 " Returns 0 if no translation to world coordinates is possible.\n"
22955 " This function returns 1 on success and 0 if no translation to world\n"
22956 " coordinates is possible.\n"
22958 " Redacted form: plGetCursor(gin)\n"
22960 " This function is used in examples 1 and 20.\n"
22966 "PLINT plGetCursor(gin)\n"
22970 " gin (PLGraphicsIn *, output) : Pointer to PLGraphicsIn structure\n"
22971 " which will contain the output. The structure is not allocated by\n"
22972 " the routine and must exist before the function is called.\n"
22975 { NULL, NULL, 0, NULL }
23049{0, 0, 0, 0.0, 0, 0}};
23103#define SWIGRUNTIME_DEBUG
23106#ifndef SWIG_INIT_CLIENT_DATA_TYPE
23107#define SWIG_INIT_CLIENT_DATA_TYPE void *
23129 if (!module_head) {
23142 }
while (iter!= module_head);
23153 if (init == 0)
return;
23156#ifdef SWIGRUNTIME_DEBUG
23157 printf(
"SWIG_InitializeModule: size %lu\n", (
unsigned long)
swig_module.size);
23164#ifdef SWIGRUNTIME_DEBUG
23165 printf(
"SWIG_InitializeModule: type %lu %s\n", (
unsigned long)i,
swig_module.type_initial[i]->name);
23174#ifdef SWIGRUNTIME_DEBUG
23175 printf(
"SWIG_InitializeModule: found type %s\n", type->name);
23178 type->clientdata =
swig_module.type_initial[i]->clientdata;
23179#ifdef SWIGRUNTIME_DEBUG
23180 printf(
"SWIG_InitializeModule: found and overwrite type %s \n", type->name);
23189 while (cast->
type) {
23192#ifdef SWIGRUNTIME_DEBUG
23193 printf(
"SWIG_InitializeModule: look cast %s\n", cast->
type->
name);
23197#ifdef SWIGRUNTIME_DEBUG
23198 if (ret) printf(
"SWIG_InitializeModule: found cast %s\n", ret->
name);
23203#ifdef SWIGRUNTIME_DEBUG
23204 printf(
"SWIG_InitializeModule: skip old type %s\n", ret->
name);
23211#ifdef SWIGRUNTIME_DEBUG
23212 if (ocast) printf(
"SWIG_InitializeModule: skip old cast %s\n", ret->
name);
23214 if (!ocast) ret = 0;
23219#ifdef SWIGRUNTIME_DEBUG
23220 printf(
"SWIG_InitializeModule: adding cast %s\n", cast->
type->
name);
23223 type->cast->prev = cast;
23224 cast->
next = type->cast;
23235#ifdef SWIGRUNTIME_DEBUG
23236 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23240 printf(
"SWIG_InitializeModule: type %lu %s\n", (
unsigned long)i,
swig_module.type_initial[i]->name);
23241 while (cast->
type) {
23242 printf(
"SWIG_InitializeModule: cast type %s\n", cast->
type->
name);
23246 printf(
"---- Total casts: %d\n",j);
23248 printf(
"**** SWIG_InitializeModule: Cast List ******\n");
23261 static int init_run = 0;
23263 if (init_run)
return;
23274 equiv = equiv->
next;
23303 for (i = 0; constants[i].
type; ++i) {
23304 switch(constants[i].type) {
23309 obj =
SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
23316 PyDict_SetItemString(d, constants[i].
name, obj);
23329 for (i = 0; methods[i].ml_name; ++i) {
23330 const char *c = methods[i].ml_doc;
23332 c = strstr(c,
"swig_ptr: ");
23336 const char *
name = c + 10;
23337 for (j = 0; const_table[j].
type; ++j) {
23338 if (strncmp(const_table[j].
name,
name,
23339 strlen(const_table[j].
name)) == 0) {
23340 ci = &(const_table[j]);
23347 size_t shift = (ci->
ptype) - types;
23349 size_t ldoc = (c - methods[i].ml_doc);
23350 size_t lptr = strlen(ty->
name)+2*
sizeof(
void*)+2;
23351 char *ndoc = (
char*)malloc(ldoc + lptr + 10);
23354 memcpy(buff, methods[i].ml_doc, ldoc);
23356 memcpy(buff,
"swig_ptr: ", 10);
23359 methods[i].ml_doc = ndoc;
23383#if PY_VERSION_HEX >= 0x03000000
23389 PyObject *m, *d, *md, *globals;
23391#if PY_VERSION_HEX >= 0x03000000
23392 static struct PyModuleDef SWIG_module = {
23393 PyModuleDef_HEAD_INIT,
23405#if defined(SWIGPYTHON_BUILTIN)
23407 0, 0, 0, 0, 0, 0, 0
23409 static PyGetSetDef this_getset_def = {
23410 (
char *)
"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
23412 static SwigPyGetSet thisown_getset_closure = {
23416 static PyGetSetDef thisown_getset_def = {
23417 (
char *)
"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
23419 PyTypeObject *builtin_pytype;
23420 int builtin_base_count;
23423 PyGetSetDescrObject *static_getset;
23424 PyTypeObject *metatype;
23425 PyTypeObject *swigpyobject;
23427 PyObject *public_interface, *public_symbol;
23428 PyObject *this_descr;
23429 PyObject *thisown_descr;
23430 PyObject *self = 0;
23433 (void)builtin_pytype;
23434 (void)builtin_base_count;
23435 (void)builtin_basetype;
23437 (void)static_getset;
23441 metatype = SwigPyObjectType();
23451#ifndef SWIGPYTHON_BUILTIN
23458#if PY_VERSION_HEX >= 0x03000000
23459 m = PyModule_Create(&SWIG_module);
23464 md = d = PyModule_GetDict(m);
23469#ifdef SWIGPYTHON_BUILTIN
23473 assert(SwigPyObject_stype);
23476 SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
23477 SwigPyObject_clientdata.
pytype = swigpyobject;
23478 }
else if (swigpyobject->tp_basicsize != cd->
pytype->tp_basicsize) {
23479 PyErr_SetString(PyExc_RuntimeError,
"Import error: attempted to load two incompatible swig-generated modules.");
23480# if PY_VERSION_HEX >= 0x03000000
23493 (void)thisown_descr;
23495 public_interface = PyList_New(0);
23497 (void)public_symbol;
23499 PyDict_SetItemString(md,
"__all__", public_interface);
23502 SwigPyBuiltin_AddPublicSymbol(public_interface,
SwigMethods[i].ml_name);
23697#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 int SWIG_AsVal_long(const octave_value &ov, long *val)
SWIGINTERN int SWIG_AsVal_double(const octave_value &ov, double *val)
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)
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)
#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)
void cleanup_mapform(void)
void cleanup_PLPointer(void)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_pX_set(PyObject *self, PyObject *args)
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
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)
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)
SWIGRUNTIME PyObject * SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
SWIGINTERN PyObject * _wrap_pladv(PyObject *self, PyObject *args)
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)
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)
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)
SWIGINTERN PyObject * _wrap_plline(PyObject *self, PyObject *args)
SWIGINTERNINLINE int SWIG_CanCastAsInteger(double *d, double min, double max)
SWIGINTERN int SWIG_AsVal_unsigned_SS_long(PyObject *obj, unsigned long *val)
SWIGINTERN PyObject * _wrap_plscmap1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plvasp(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscmap0a(PyObject *self, PyObject *args)
#define SWIG_as_voidptrptr(a)
SWIGINTERN PyObject * _wrap_plsmaj(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscolor(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plrgbhls(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE const char * SwigPyObject_GetDesc(PyObject *self)
SWIGINTERN PyObject * _wrap_plssym(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_own(PyObject *v, PyObject *args)
SWIGINTERN PyObject * _wrap_plptex(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plstar(PyObject *self, PyObject *args)
#define SWIG_POINTER_NOSHADOW
SWIGINTERN PyObject * _wrap_plwind(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeClientData(swig_type_info *ti, void *clientdata)
SWIGINTERN PyObject * _wrap_plstyl(PyObject *self, PyObject *args)
SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name)
SWIGINTERN void SWIG_Python_addvarlink(PyObject *p, const char *name, PyObject *(*get_attr)(void), int(*set_attr)(PyObject *p))
SWIGINTERN PyObject * _wrap_plend1(PyObject *self, PyObject *args)
SWIGINTERN PyObject * SwigPyObject_acquire(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
SWIGINTERN PyObject * _wrap_plgcompression(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plsmin(PyObject *self, PyObject *args)
static PyMethodDef swigobject_methods[]
SWIGRUNTIME char * SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
SWIGINTERN PyObject * _wrap_plgcmap1_range(PyObject *self, PyObject *args)
void cleanup_PLcGrid1(void)
SWIGRUNTIME PyObject * SWIG_Python_TypeCache(void)
SWIGINTERN PyObject * _wrap_plgcol0(PyObject *self, PyObject *args)
#define SWIG_InternalNewPointerObj(ptr, type, flags)
SWIGINTERN PyObject * _wrap_plscmap1_range(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plscol0a(PyObject *self, PyObject *args)
SWIGRUNTIME PyObject * SwigPyObject_long(SwigPyObject *v)
#define SWIG_exception_fail(code, msg)
SWIGINTERN PyObject * _wrap_plOptUsage(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plarc(PyObject *self, PyObject *args)
SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void(void)
SWIGINTERN PyObject * _wrap_plsfam(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr2(PyObject *self, PyObject *args)
void do_label_callback(PLINT axis, PLFLT value, char *string, PLINT len, PLPointer data)
SWIGINTERN PyObject * _wrap_plscmap1l(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_state_set(PyObject *self, PyObject *args)
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)
SWIGINTERN PyObject * _wrap_plsvpa(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgvpd(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_pltr1(PyObject *self, PyObject *args)
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)
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)
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)
#define SWIG_Python_CallFunctor(functor, obj)
SWIGINTERN PyObject * _wrap_plmapline(PyObject *self, PyObject *args)
SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata)
SWIGINTERN PyObject * _wrap_plgfnam(PyObject *self, PyObject *args)
SWIGRUNTIME int SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
#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)
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)
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)
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)
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)
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)
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)
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_Python_str_FromFormat
#define SWIG_InstallConstants(d, constants)
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)
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)
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)
SWIGINTERN PyObject * _wrap_plflush(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_plgzax(PyObject *self, PyObject *args)
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)
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)
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)
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
SWIGINTERN void swig_varlink_dealloc(PyObject *o)
SWIGRUNTIME PyObject * SwigPyObject_repr(SwigPyObject *v)
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)
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)
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)
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)
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)
SWIGINTERN PyObject * _wrap_delete_PLGraphicsIn(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_new_PLGraphicsIn(PyObject *self, PyObject *args)
SWIGINTERN PyObject * _wrap_PLGraphicsIn_wX_set(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_type(void)
SWIGINTERN PyObject * _wrap_plconfigtime(PyObject *self, PyObject *args)
SWIGRUNTIME PyTypeObject * SwigPyObject_TypeOnce(void)
SWIGINTERN PyObject * _wrap_plstring(PyObject *self, PyObject *args)
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)
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)
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
SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory)
static int _wrap_PLGraphicsIn_wX_get(lua_State *L)
static swig_cast_info * swig_cast_initial[]
static int _wrap_PLGraphicsIn_button_get(lua_State *L)
static int _wrap_PLGraphicsIn_keysym_get(lua_State *L)
static swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void
static int _wrap_PLGraphicsIn_subwindow_get(lua_State *L)
static int _wrap_plend(lua_State *L)
static swig_cast_info _swigc__p_f_double_double__int[]
static swig_cast_info _swigc__p_int[]
SWIGRUNTIME int SWIG_TypeEquiv(const char *nb, const char *tb)
static swig_cast_info _swigc__p_double[]
#define SWIGTYPE_p_PLGraphicsIn
static int _wrap_plGetCursor(lua_State *L)
void(* label_func)(PLINT, PLFLT, char *, PLINT, PLPointer)
static int _wrap_PLGraphicsIn_pY_set(lua_State *L)
#define SWIG_RuntimeError
void(* mapform_func)(PLINT, PLFLT *, PLFLT *)
void(* pltr_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
static swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void[]
static int _wrap_PLGraphicsIn_state_get(lua_State *L)
#define SWIG_RUNTIME_VERSION
static int _wrap_new_PLGraphicsIn(lua_State *L)
static int _wrap_PLGraphicsIn_dX_get(lua_State *L)
static int _wrap_PLGraphicsIn_pY_get(lua_State *L)
static swig_type_info * swig_types[13]
static int _wrap_plResetOpts(lua_State *L)
static swig_cast_info _swigc__p_f_int_p_double_p_double__void[]
#define SWIG_AttributeError
static int _wrap_plot3dcl(lua_State *L)
static int _wrap_plOptUsage(lua_State *L)
static swig_module_info swig_module
static int _wrap_PLGraphicsIn_state_set(lua_State *L)
static swig_type_info _swigt__p_double
#define SWIG_INIT_CLIENT_DATA_TYPE
#define SWIG_POINTER_RELEASE
static int _wrap_PLGraphicsIn_string_get(lua_State *L)
static swig_type_info _swigt__p_p_char
static int _wrap_plend1(lua_State *L)
static swig_type_info _swigt__p_p_double
#define SWIG_POINTER_CLEAR
static int _wrap_PLGraphicsIn_string_set(lua_State *L)
PLFLT(* f2eval_func)(PLINT, PLINT, PLPointer)
static int _wrap_plClearOpts(lua_State *L)
static swig_cast_info _swigc__p_char[]
static int _wrap_plot3d(lua_State *L)
static swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void
PLINT(* defined_func)(PLFLT, PLFLT)
static swig_cast_info _swigc__p_p_double[]
static int _wrap_PLGraphicsIn_keysym_set(lua_State *L)
static int _wrap_PLGraphicsIn_dY_get(lua_State *L)
void(* ct_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
#define SWIG_POINTER_NO_NULL
static int _wrap_PLGraphicsIn_type_get(lua_State *L)
struct swig_type_info *(* swig_dycast_func)(void **)
#define SWIG_NullReferenceError
static int _wrap_PLGraphicsIn_type_set(lua_State *L)
#define SWIG_POINTER_DISOWN
static swig_type_info _swigt__p_PLGraphicsIn
static swig_type_info _swigt__p_f_double_double__int
static int _wrap_PLGraphicsIn_subwindow_set(lua_State *L)
static int _wrap_plot3dc(lua_State *L)
static int _wrap_PLGraphicsIn_wY_get(lua_State *L)
static int _wrap_PLGraphicsIn_dX_set(lua_State *L)
static int _wrap_PLGraphicsIn_wX_set(lua_State *L)
static swig_cast_info _swigc__p_unsigned_int[]
static swig_type_info _swigt__p_int
static swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void[]
static int _wrap_plSetUsage(lua_State *L)
static int _wrap_PLGraphicsIn_pX_set(lua_State *L)
#define SWIG_ERROR_RELEASE_NOT_OWNED
static swig_type_info _swigt__p_unsigned_int
#define SWIG_CAST_NEW_MEMORY
static swig_type_info _swigt__p_f_int_p_double_p_double__void
#define SWIGTYPE_p_unsigned_int
static swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void
static int _wrap_PLGraphicsIn_button_set(lua_State *L)
static swig_type_info * swig_type_initial[]
static swig_cast_info _swigc__p_PLGraphicsIn[]
static swig_cast_info _swigc__p_p_char[]
static int _wrap_PLGraphicsIn_pX_get(lua_State *L)
#define SWIG_DivisionByZero
#define SWIGTYPE_p_double
static swig_type_info _swigt__p_char
#define SWIG_OverflowError
void(* fill_func)(PLINT, const PLFLT *, const PLFLT *)
static int _wrap_PLGraphicsIn_dY_set(lua_State *L)
static swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void[]
static int _wrap_PLGraphicsIn_wY_set(lua_State *L)
#define SWIGRUNTIMEINLINE
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