PLplot  5.15.0
plplotluacLUA_wrap.c File Reference
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include <stdlib.h>
#include <assert.h>
#include "plplotP.h"

Go to the source code of this file.

Classes

struct  swig_type_info
 
struct  swig_cast_info
 
struct  swig_module_info
 
struct  swig_lua_var_info
 
struct  swig_lua_const_info
 
struct  swig_lua_attribute
 
struct  swig_lua_namespace
 
struct  swig_lua_class
 
struct  swig_lua_userdata
 
struct  swig_lua_rawdata
 

Macros

#define SWIGLUA
 
#define SWIG_LUA_TARGET   SWIG_LUA_FLAVOR_LUA
 
#define SWIG_LUA_MODULE_GLOBAL
 
#define SWIGTEMPLATEDISAMBIGUATOR
 
#define SWIGINLINE
 
#define SWIGUNUSED
 
#define SWIGUNUSEDPARM(p)   p SWIGUNUSED
 
#define SWIGINTERN   static SWIGUNUSED
 
#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE
 
#define SWIGEXPORT
 
#define SWIGSTDCALL
 
#define SWIG_RUNTIME_VERSION   "4"
 
#define SWIG_TYPE_TABLE_NAME
 
#define SWIGRUNTIME   SWIGINTERN
 
#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE
 
#define SWIG_BUFFER_SIZE   1024
 
#define SWIG_POINTER_DISOWN   0x1
 
#define SWIG_CAST_NEW_MEMORY   0x2
 
#define SWIG_POINTER_NO_NULL   0x4
 
#define SWIG_POINTER_OWN   0x1
 
#define SWIG_OK   (0)
 
#define SWIG_ERROR   (-1)
 
#define SWIG_IsOK(r)   (r >= 0)
 
#define SWIG_ArgError(r)   ((r != SWIG_ERROR) ? r : SWIG_TypeError)
 
#define SWIG_CASTRANKLIMIT   (1 << 8)
 
#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)
 
#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)
 
#define SWIG_BADOBJ   (SWIG_ERROR)
 
#define SWIG_OLDOBJ   (SWIG_OK)
 
#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)
 
#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)
 
#define SWIG_AddNewMask(r)   (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
 
#define SWIG_DelNewMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
 
#define SWIG_IsNewObj(r)   (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
 
#define SWIG_AddTmpMask(r)   (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
 
#define SWIG_DelTmpMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
 
#define SWIG_IsTmpObj(r)   (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
 
#define SWIG_AddCast(r)   (r)
 
#define SWIG_CheckState(r)   (SWIG_IsOK(r) ? 1 : 0)
 
#define SWIG_UnknownError   -1
 
#define SWIG_IOError   -2
 
#define SWIG_RuntimeError   -3
 
#define SWIG_IndexError   -4
 
#define SWIG_TypeError   -5
 
#define SWIG_DivisionByZero   -6
 
#define SWIG_OverflowError   -7
 
#define SWIG_SyntaxError   -8
 
#define SWIG_ValueError   -9
 
#define SWIG_SystemError   -10
 
#define SWIG_AttributeError   -11
 
#define SWIG_MemoryError   -12
 
#define SWIG_NullReferenceError   -13
 
#define SWIG_LUA_FLAVOR_LUA   1
 
#define SWIG_LUA_FLAVOR_ELUA   2
 
#define SWIG_LUA_FLAVOR_ELUAC   3
 
#define SWIG_LUA_CONSTTAB_INT(B, C)   SWIG_LUA_INT, (char *)B, (long)C, 0, 0, 0
 
#define SWIG_LUA_CONSTTAB_FLOAT(B, C)   SWIG_LUA_FLOAT, (char *)B, 0, (double)C, 0, 0
 
#define SWIG_LUA_CONSTTAB_STRING(B, C)   SWIG_LUA_STRING, (char *)B, 0, 0, (void *)C, 0
 
#define SWIG_LUA_CONSTTAB_CHAR(B, C)   SWIG_LUA_CHAR, (char *)B, (long)C, 0, 0, 0
 
#define SWIG_LUA_CONSTTAB_POINTER(B, C, D)   SWIG_LUA_POINTER, (char *)B, 0, 0, (void *)C, &D
 
#define SWIG_LUA_CONSTTAB_BINARY(B, S, C, D)   SWIG_LUA_BINARY, (char *)B, S, 0, (void *)C, &D
 
#define lua_rawlen   lua_strlen
 
#define lua_pushglobaltable(L)   lua_pushvalue(L, LUA_GLOBALSINDEX)
 
#define lua_absindex(L, i)   ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1)
 
#define lua_rawsetp(L, index, ptr)
 
#define lua_rawgetp(L, index, ptr)
 
#define SWIG_LUA_INT   1
 
#define SWIG_LUA_FLOAT   2
 
#define SWIG_LUA_STRING   3
 
#define SWIG_LUA_POINTER   4
 
#define SWIG_LUA_BINARY   5
 
#define SWIG_LUA_CHAR   6
 
#define SWIG_NewPointerObj(L, ptr, type, owner)   SWIG_Lua_NewPointerObj(L, (void *)ptr, type, owner)
 
#define SWIG_ConvertPtr(L, idx, ptr, type, flags)   SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags)
 
#define SWIG_MustGetPtr(L, idx, type, flags, argnum, fnname)   SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)
 
#define SWIG_ConvertMember(L, idx, ptr, sz, ty)   SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty)
 
#define SWIG_NewMemberObj(L, ptr, sz, type)   SWIG_Lua_NewPackedObj(L, ptr, sz, type)
 
#define SWIG_GetModule(clientdata)   SWIG_Lua_GetModule((lua_State*)(clientdata))
 
#define SWIG_SetModule(clientdata, pointer)   SWIG_Lua_SetModule((lua_State*) (clientdata), pointer)
 
#define SWIG_MODULE_CLIENTDATA_TYPE   lua_State*
 
#define SWIG_contract_assert(expr, msg)   if (!(expr)) { SWIG_Lua_pusherrstring(L, (char *) msg); goto fail; } else
 
#define SWIG_fail   {goto fail;}
 
#define SWIG_fail_arg(func_name, argnum, type)
 
#define SWIG_fail_ptr(func_name, argnum, type)   SWIG_fail_arg(func_name,argnum,(type && type->str)?type->str:"void*")
 
#define SWIG_check_num_args(func_name, a, b)
 
#define SWIG_Lua_get_table(L, n)   (lua_pushstring(L, n), lua_rawget(L,-2))
 
#define SWIG_Lua_add_function(L, n, f)
 
#define SWIG_Lua_add_boolean(L, n, b)
 
#define SWIG_isptrtype(L, I)   (lua_isuserdata(L,I) || lua_isnil(L,I))
 
#define SWIG_DOSTRING_FAIL(S)   fprintf(stderr,"%s\n",S)
 
#define SWIGTYPE_p_PLGraphicsIn   swig_types[0]
 
#define SWIGTYPE_p_char   swig_types[1]
 
#define SWIGTYPE_p_double   swig_types[2]
 
#define SWIGTYPE_p_f_double_double__int   swig_types[3]
 
#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void   swig_types[4]
 
#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void   swig_types[5]
 
#define SWIGTYPE_p_f_int_p_double_p_double__void   swig_types[6]
 
#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void   swig_types[7]
 
#define SWIGTYPE_p_int   swig_types[8]
 
#define SWIGTYPE_p_p_char   swig_types[9]
 
#define SWIGTYPE_p_p_double   swig_types[10]
 
#define SWIGTYPE_p_unsigned_int   swig_types[11]
 
#define SWIG_TypeQuery(name)   SWIG_TypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_MangledTypeQuery(name)   SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_name   "plplotluac"
 
#define SWIG_init   luaopen_plplotluac
 
#define SWIG_init_user   luaopen_plplotluac_user
 
#define SWIG_LUACODE   luaopen_plplotluac_luacode
 
#define LUA_ALLOC_ARRAY(TYPE, LEN)   (TYPE *) malloc( LEN * sizeof ( TYPE ) )
 
#define LUA_FREE_ARRAY(PTR)   if ( PTR ) { free( PTR ); PTR = NULL;}
 
#define LUA_DECLARE_TYPEMAP_ARR_FN(NAME, TYPE)
 
#define SWIG_ALLOC_ARRAY(TYPE, LEN)   (TYPE *)malloc(LEN*sizeof(TYPE))
 
#define SWIG_FREE_ARRAY(PTR)   free(PTR)
 
#define SWIG_DECLARE_TYPEMAP_ARR_FN(NAME, TYPE)
 

Typedefs

typedef void *(* swig_converter_func) (void *, int *)
 
typedef struct swig_type_info *(* swig_dycast_func) (void **)
 
typedef struct swig_type_info swig_type_info
 
typedef struct swig_cast_info swig_cast_info
 
typedef struct swig_module_info swig_module_info
 
typedef luaL_Reg swig_lua_method
 
typedef struct swig_lua_namespace swig_lua_namespace
 
typedef struct swig_lua_class swig_lua_class
 
typedef int(* swig_lua_base_iterator_func) (lua_State *, swig_type_info *, int, int *ret)
 
typedef PLINT(* defined_func) (PLFLT, PLFLT)
 
typedef void(* fill_func) (PLINT, const PLFLT *, const PLFLT *)
 
typedef void(* pltr_func) (PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
 
typedef void(* ct_func) (PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
 
typedef void(* mapform_func) (PLINT, PLFLT *, PLFLT *)
 
typedef PLFLT(* f2eval_func) (PLINT, PLINT, PLPointer)
 
typedef void(* label_func) (PLINT, PLFLT, char *, PLINT, PLPointer)
 

Functions

SWIGRUNTIME int SWIG_TypeNameComp (const char *f1, const char *l1, const char *f2, const char *l2)
 
SWIGRUNTIME int SWIG_TypeCmp (const char *nb, const char *tb)
 
SWIGRUNTIME int SWIG_TypeEquiv (const char *nb, const char *tb)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheck (const char *c, swig_type_info *ty)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheckStruct (swig_type_info *from, swig_type_info *ty)
 
SWIGRUNTIMEINLINE void * SWIG_TypeCast (swig_cast_info *ty, void *ptr, int *newmemory)
 
SWIGRUNTIME swig_type_infoSWIG_TypeDynamicCast (swig_type_info *ty, void **ptr)
 
const SWIGRUNTIMEINLINE char * SWIG_TypeName (const swig_type_info *ty)
 
const SWIGRUNTIME char * SWIG_TypePrettyName (const swig_type_info *type)
 
SWIGRUNTIME void SWIG_TypeClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME void SWIG_TypeNewClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME swig_type_infoSWIG_MangledTypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME swig_type_infoSWIG_TypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME char * SWIG_PackData (char *c, void *ptr, size_t sz)
 
const SWIGRUNTIME char * SWIG_UnpackData (const char *c, void *ptr, size_t sz)
 
SWIGRUNTIME char * SWIG_PackVoidPtr (char *buff, void *ptr, const char *name, size_t bsz)
 
const SWIGRUNTIME char * SWIG_UnpackVoidPtr (const char *c, void **ptr, const char *name)
 
SWIGRUNTIME char * SWIG_PackDataName (char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
 
const SWIGRUNTIME char * SWIG_UnpackDataName (const char *c, void *ptr, size_t sz, const char *name)
 
SWIGRUNTIME void SWIG_Lua_pusherrstring (lua_State *L, const char *str)
 
SWIGRUNTIME void SWIG_Lua_pushferrstring (lua_State *L, const char *fmt,...)
 
SWIGRUNTIME swig_module_infoSWIG_Lua_GetModule (lua_State *L)
 
SWIGRUNTIME void SWIG_Lua_SetModule (lua_State *L, swig_module_info *module)
 
SWIGINTERN int SWIG_Lua_set_immutable (lua_State *L)
 
SWIGINTERN int SWIG_Lua_namespace_get (lua_State *L)
 
SWIGINTERN int SWIG_Lua_namespace_set (lua_State *L)
 
SWIGINTERN void SWIG_Lua_InstallConstants (lua_State *L, swig_lua_const_info constants[])
 
SWIGINTERN void SWIG_Lua_add_variable (lua_State *L, const char *name, lua_CFunction getFn, lua_CFunction setFn)
 
SWIGINTERN void SWIG_Lua_class_register (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN int SWIG_Lua_add_namespace_details (lua_State *L, swig_lua_namespace *ns)
 
SWIGINTERN void SWIG_Lua_add_namespace_classes (lua_State *L, swig_lua_namespace *ns)
 
SWIGINTERN void SWIG_Lua_namespace_register (lua_State *L, swig_lua_namespace *ns, int reg)
 
SWIGINTERN void SWIG_Lua_get_class_metatable (lua_State *L, const char *cname)
 
SWIGINTERN int SWIG_Lua_iterate_bases (lua_State *L, swig_type_info *SWIGUNUSED swig_type, int first_arg, swig_lua_base_iterator_func func, int *const ret)
 
SWIGINTERN int SWIG_Lua_class_do_get_item (lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_do_get (lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_get (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_do_set (lua_State *L, swig_type_info *type, int first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_set (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_destruct (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_tostring (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_disown (lua_State *L)
 
SWIGRUNTIME int SWIG_Lua_class_equal (lua_State *L)
 
SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods (lua_State *L)
 
SWIGINTERN void SWIG_Lua_create_class_registry (lua_State *L)
 
SWIGINTERN void SWIG_Lua_get_class_registry (lua_State *L)
 
SWIGINTERN void SWIG_Lua_get_inheritable_metamethods (lua_State *L)
 
SWIGINTERN void SWIG_Lua_init_base_class (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_static_details (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_user_metamethods (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_instance_details (lua_State *L, swig_lua_class *clss)
 
SWIGRUNTIME int SWIG_Lua_resolve_metamethod (lua_State *L)
 
SWIGINTERN int SWIG_Lua_do_resolve_metamethod (lua_State *L, const swig_lua_class *clss, int metamethod_name_idx, int skip_check)
 
SWIGINTERN int SWIG_Lua_add_class_user_metamethod (lua_State *L, swig_lua_class *clss, const int metatable_index)
 
SWIGINTERN void SWIG_Lua_class_register_static (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_class_register_instance (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_AddMetatable (lua_State *L, swig_type_info *type)
 
SWIGRUNTIME void SWIG_Lua_NewPointerObj (lua_State *L, void *ptr, swig_type_info *type, int own)
 
SWIGRUNTIME int SWIG_Lua_ConvertPtr (lua_State *L, int index, void **ptr, swig_type_info *type, int flags)
 
SWIGRUNTIME void * SWIG_Lua_MustGetPtr (lua_State *L, int index, swig_type_info *type, int flags, int argnum, const char *func_name)
 
SWIGRUNTIME void SWIG_Lua_NewPackedObj (lua_State *L, void *ptr, size_t size, swig_type_info *type)
 
SWIGRUNTIME int SWIG_Lua_ConvertPacked (lua_State *L, int index, void *ptr, size_t size, swig_type_info *type)
 
const SWIGRUNTIME char * SWIG_Lua_typename (lua_State *L, int tp)
 
SWIGRUNTIME int SWIG_Lua_type (lua_State *L)
 
SWIGINTERN int SWIG_Lua_dostring (lua_State *L, const char *str)
 
SWIGINTERN int SWIG_itable_size (lua_State *L, int index)
 
 LUA_DECLARE_TYPEMAP_ARR_FN (double, double)
 
 LUA_DECLARE_TYPEMAP_ARR_FN (int, int)
 
SWIGINTERN int SWIG_table_size (lua_State *L, int index)
 
SWIGINTERN int SWIG_read_ptr_array (lua_State *L, int index, void **array, int size, swig_type_info *type)
 
SWIGINTERN void ** SWIG_get_ptr_array_fixed (lua_State *L, int index, int size, swig_type_info *type)
 
SWIGINTERN void ** SWIG_get_ptr_array_var (lua_State *L, int index, int *size, swig_type_info *type)
 
SWIGINTERN void SWIG_write_ptr_array (lua_State *L, void **array, int size, swig_type_info *type, int own)
 
PLFLT ** read_double_Matrix (lua_State *L, int index, int *nx, int *ny)
 
void mapform (PLINT n, PLFLT *x, PLFLT *y)
 
void mypltr (PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *pltr_data)
 
void myct (PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *pltr_data)
 
void mylabel (PLINT axis, PLFLT value, char *label, PLINT length, PLPointer data)
 
void mypltr (PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *PL_UNUSED(pltr_data))
 
void myct (PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *PL_UNUSED(pltr_data))
 
void mylabel (PLINT axis, PLFLT value, char *label, PLINT length, PLPointer PL_UNUSED(data))
 
SWIGINTERN int SWIG_lua_isnilstring (lua_State *L, int idx)
 
static int _wrap_PLGraphicsIn_type_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_type_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_state_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_state_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_keysym_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_keysym_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_button_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_button_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_subwindow_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_subwindow_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_string_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_string_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_pX_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_pX_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_pY_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_pY_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_dX_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_dX_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_dY_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_dY_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_wX_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_wX_get (lua_State *L)
 
static int _wrap_PLGraphicsIn_wY_set (lua_State *L)
 
static int _wrap_PLGraphicsIn_wY_get (lua_State *L)
 
static int _wrap_new_PLGraphicsIn (lua_State *L)
 
static void swig_delete_PLGraphicsIn (void *obj)
 
static int _proxy__wrap_new_PLGraphicsIn (lua_State *L)
 
static int _wrap_setcontlabelformat (lua_State *L)
 
static int _wrap_setcontlabelparam (lua_State *L)
 
static int _wrap_adv (lua_State *L)
 
static int _wrap_arc (lua_State *L)
 
static int _wrap_axes (lua_State *L)
 
static int _wrap_bin (lua_State *L)
 
static int _wrap_btime (lua_State *L)
 
static int _wrap_bop (lua_State *L)
 
static int _wrap_box (lua_State *L)
 
static int _wrap_box3 (lua_State *L)
 
static int _wrap_calc_world (lua_State *L)
 
static int _wrap_clear (lua_State *L)
 
static int _wrap_col0 (lua_State *L)
 
static int _wrap_col1 (lua_State *L)
 
static int _wrap_configtime (lua_State *L)
 
static int _wrap_cont (lua_State *L)
 
static int _wrap_ctime (lua_State *L)
 
static int _wrap_cpstrm (lua_State *L)
 
static int _wrap_plend (lua_State *L)
 
static int _wrap_plend1 (lua_State *L)
 
static int _wrap_env (lua_State *L)
 
static int _wrap_env0 (lua_State *L)
 
static int _wrap_eop (lua_State *L)
 
static int _wrap_errx (lua_State *L)
 
static int _wrap_erry (lua_State *L)
 
static int _wrap_famadv (lua_State *L)
 
static int _wrap_fill (lua_State *L)
 
static int _wrap_fill3 (lua_State *L)
 
static int _wrap_gradient (lua_State *L)
 
static int _wrap_flush (lua_State *L)
 
static int _wrap_font (lua_State *L)
 
static int _wrap_fontld (lua_State *L)
 
static int _wrap_gchr (lua_State *L)
 
static int _wrap_gcol0 (lua_State *L)
 
static int _wrap_gcol0a (lua_State *L)
 
static int _wrap_gcolbg (lua_State *L)
 
static int _wrap_gcolbga (lua_State *L)
 
static int _wrap_gcompression (lua_State *L)
 
static int _wrap_gdev (lua_State *L)
 
static int _wrap_gdidev (lua_State *L)
 
static int _wrap_gdiori (lua_State *L)
 
static int _wrap_gdiplt (lua_State *L)
 
static int _wrap_gfam (lua_State *L)
 
static int _wrap_gfci (lua_State *L)
 
static int _wrap_gfnam (lua_State *L)
 
static int _wrap_gfont (lua_State *L)
 
static int _wrap_glevel (lua_State *L)
 
static int _wrap_gpage (lua_State *L)
 
static int _wrap_gra (lua_State *L)
 
static int _wrap_griddata (lua_State *L)
 
static int _wrap_gspa (lua_State *L)
 
static int _wrap_gstrm (lua_State *L)
 
static int _wrap_gver (lua_State *L)
 
static int _wrap_gvpd (lua_State *L)
 
static int _wrap_gvpw (lua_State *L)
 
static int _wrap_gxax (lua_State *L)
 
static int _wrap_gyax (lua_State *L)
 
static int _wrap_gzax (lua_State *L)
 
static int _wrap_hist (lua_State *L)
 
static int _wrap_hlsrgb (lua_State *L)
 
static int _wrap_init (lua_State *L)
 
static int _wrap_join (lua_State *L)
 
static int _wrap_lab (lua_State *L)
 
static int _wrap_legend (lua_State *L)
 
static int _wrap_colorbar (lua_State *L)
 
static int _wrap_lightsource (lua_State *L)
 
static int _wrap_line (lua_State *L)
 
static int _wrap_line3 (lua_State *L)
 
static int _wrap_lsty (lua_State *L)
 
static int _wrap_mesh (lua_State *L)
 
static int _wrap_meshc (lua_State *L)
 
static int _wrap_mkstrm (lua_State *L)
 
static int _wrap_mtex (lua_State *L)
 
static int _wrap_mtex3 (lua_State *L)
 
static int _wrap_plot3d (lua_State *L)
 
static int _wrap_plot3dc (lua_State *L)
 
static int _wrap_plot3dcl (lua_State *L)
 
static int _wrap_surf3d (lua_State *L)
 
static int _wrap_surf3dl (lua_State *L)
 
static int _wrap_parseopts (lua_State *L)
 
static int _wrap_pat (lua_State *L)
 
static int _wrap_path (lua_State *L)
 
static int _wrap_poin (lua_State *L)
 
static int _wrap_poin3 (lua_State *L)
 
static int _wrap_poly3 (lua_State *L)
 
static int _wrap_prec (lua_State *L)
 
static int _wrap_psty (lua_State *L)
 
static int _wrap_ptex (lua_State *L)
 
static int _wrap_ptex3 (lua_State *L)
 
static int _wrap_randd (lua_State *L)
 
static int _wrap_replot (lua_State *L)
 
static int _wrap_rgbhls (lua_State *L)
 
static int _wrap_schr (lua_State *L)
 
static int _wrap_scmap0 (lua_State *L)
 
static int _wrap_scmap0a (lua_State *L)
 
static int _wrap_scmap0n (lua_State *L)
 
static int _wrap_scmap1 (lua_State *L)
 
static int _wrap_scmap1a (lua_State *L)
 
static int _wrap_scmap1l (lua_State *L)
 
static int _wrap_scmap1la (lua_State *L)
 
static int _wrap_scmap1n (lua_State *L)
 
static int _wrap_scmap1_range (lua_State *L)
 
static int _wrap_gcmap1_range (lua_State *L)
 
static int _wrap_scol0 (lua_State *L)
 
static int _wrap_scol0a (lua_State *L)
 
static int _wrap_scolbg (lua_State *L)
 
static int _wrap_scolbga (lua_State *L)
 
static int _wrap_scolor (lua_State *L)
 
static int _wrap_scompression (lua_State *L)
 
static int _wrap_sdev (lua_State *L)
 
static int _wrap_sdidev (lua_State *L)
 
static int _wrap_sdimap (lua_State *L)
 
static int _wrap_sdiori (lua_State *L)
 
static int _wrap_sdiplt (lua_State *L)
 
static int _wrap_sdiplz (lua_State *L)
 
static int _wrap_seed (lua_State *L)
 
static int _wrap_sesc (lua_State *L)
 
static int _wrap_setopt (lua_State *L)
 
static int _wrap_sfam (lua_State *L)
 
static int _wrap_sfci (lua_State *L)
 
static int _wrap_sfnam (lua_State *L)
 
static int _wrap_sfont (lua_State *L)
 
static int _wrap_shades (lua_State *L)
 
static int _wrap_shade (lua_State *L)
 
static int _wrap_slabelfunc (lua_State *L)
 
static int _wrap_smaj (lua_State *L)
 
static int _wrap_smin (lua_State *L)
 
static int _wrap_sori (lua_State *L)
 
static int _wrap_spage (lua_State *L)
 
static int _wrap_spal0 (lua_State *L)
 
static int _wrap_spal1 (lua_State *L)
 
static int _wrap_spause (lua_State *L)
 
static int _wrap_sstrm (lua_State *L)
 
static int _wrap_ssub (lua_State *L)
 
static int _wrap_ssym (lua_State *L)
 
static int _wrap_star (lua_State *L)
 
static int _wrap_start (lua_State *L)
 
static int _wrap_stransform (lua_State *L)
 
static int _wrap_string (lua_State *L)
 
static int _wrap_string3 (lua_State *L)
 
static int _wrap_stripa (lua_State *L)
 
static int _wrap_stripc (lua_State *L)
 
static int _wrap_stripd (lua_State *L)
 
static int _wrap_styl (lua_State *L)
 
static int _wrap_svect (lua_State *L)
 
static int _wrap_svpa (lua_State *L)
 
static int _wrap_sxax (lua_State *L)
 
static int _wrap_syax (lua_State *L)
 
static int _wrap_sym (lua_State *L)
 
static int _wrap_szax (lua_State *L)
 
static int _wrap_text (lua_State *L)
 
static int _wrap_timefmt (lua_State *L)
 
static int _wrap_vasp (lua_State *L)
 
static int _wrap_vect (lua_State *L)
 
static int _wrap_vpas (lua_State *L)
 
static int _wrap_vpor (lua_State *L)
 
static int _wrap_vsta (lua_State *L)
 
static int _wrap_w3d (lua_State *L)
 
static int _wrap_width (lua_State *L)
 
static int _wrap_wind (lua_State *L)
 
static int _wrap_xormod (lua_State *L)
 
static int _wrap_map (lua_State *L)
 
static int _wrap_mapline (lua_State *L)
 
static int _wrap_mapstring (lua_State *L)
 
static int _wrap_maptex (lua_State *L)
 
static int _wrap_mapfill (lua_State *L)
 
static int _wrap_meridians (lua_State *L)
 
static int _wrap_image (lua_State *L)
 
static int _wrap_imagefr (lua_State *L)
 
static int _wrap_plClearOpts (lua_State *L)
 
static int _wrap_plResetOpts (lua_State *L)
 
static int _wrap_plSetUsage (lua_State *L)
 
static int _wrap_plOptUsage (lua_State *L)
 
static int _wrap_MinMax2dGrid (lua_State *L)
 
static int _wrap_plGetCursor (lua_State *L)
 
static int _wrap_warn (lua_State *L)
 
static int _wrap_abort (lua_State *L)
 
SWIGRUNTIME void SWIG_InitializeModule (void *clientdata)
 
SWIGRUNTIME void SWIG_PropagateClientData (void)
 
void SWIG_init_user (lua_State *L)
 
SWIGEXPORT int SWIG_init (lua_State *L)
 

Variables

static swig_type_infoswig_types [13]
 
static swig_module_info swig_module = {swig_types, 12, 0, 0, 0, 0}
 
static PLINT Alen = 0
 
static PLINT Xlen = 0
 
static PLINT Ylen = 0
 
static lua_State * myL = NULL
 
static char mapform_funcstr [255]
 
static char mypltr_funcstr [255]
 
static char myct_funcstr [255]
 
static char mylabel_funcstr [255]
 
static swig_lua_attribute swig_PLGraphicsIn_attributes []
 
static swig_lua_method swig_PLGraphicsIn_methods []
 
static swig_lua_method swig_PLGraphicsIn_meta []
 
static swig_lua_attribute swig_PLGraphicsIn_Sf_SwigStatic_attributes []
 
static swig_lua_const_info swig_PLGraphicsIn_Sf_SwigStatic_constants []
 
static swig_lua_method swig_PLGraphicsIn_Sf_SwigStatic_methods []
 
static swig_lua_classswig_PLGraphicsIn_Sf_SwigStatic_classes []
 
static swig_lua_namespace swig_PLGraphicsIn_Sf_SwigStatic
 
static swig_lua_classswig_PLGraphicsIn_bases [] = {0}
 
static const char * swig_PLGraphicsIn_base_names [] = {0}
 
static swig_lua_class _wrap_class_PLGraphicsIn = { "PLGraphicsIn", "PLGraphicsIn", &SWIGTYPE_p_PLGraphicsIn,_proxy__wrap_new_PLGraphicsIn, swig_delete_PLGraphicsIn, swig_PLGraphicsIn_methods, swig_PLGraphicsIn_attributes, &swig_PLGraphicsIn_Sf_SwigStatic, swig_PLGraphicsIn_meta, swig_PLGraphicsIn_bases, swig_PLGraphicsIn_base_names }
 
static swig_lua_attribute swig_SwigModule_attributes []
 
static swig_lua_const_info swig_SwigModule_constants []
 
static swig_lua_method swig_SwigModule_methods []
 
static swig_lua_classswig_SwigModule_classes []
 
static swig_lua_namespaceswig_SwigModule_namespaces []
 
static swig_lua_namespace swig_SwigModule
 
static swig_type_info _swigt__p_PLGraphicsIn = {"_p_PLGraphicsIn", "PLGraphicsIn *", 0, 0, (void*)&_wrap_class_PLGraphicsIn, 0}
 
static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_double = {"_p_double", "double *|PLFLT *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_f_double_double__int = {"_p_f_double_double__int", "defined_func|int (*)(double,double)", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void = {"_p_f_double_double_p_double_p_double_p_void__void", "ct_func|pltr_func|void (*)(double,double,double *,double *,void *)", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void = {"_p_f_int_double_p_char_int_p_void__void", "void (*)(int,double,char *,int,void *)|label_func", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_f_int_p_double_p_double__void = {"_p_f_int_p_double_p_double__void", "mapform_func|void (*)(int,double *,double *)", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void = {"_p_f_int_p_q_const__double_p_q_const__double__void", "void (*)(int,double const *,double const *)|fill_func", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_int = {"_p_int", "PLBOOL *|int *|PLINT *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_p_double = {"_p_p_double", "PLFLT **|double **", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *|PLUNICODE *", 0, 0, (void*)0, 0}
 
static swig_type_infoswig_type_initial []
 
static swig_cast_info _swigc__p_PLGraphicsIn [] = { {&_swigt__p_PLGraphicsIn, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_char [] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_double [] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_f_double_double__int [] = { {&_swigt__p_f_double_double__int, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void [] = { {&_swigt__p_f_double_double_p_double_p_double_p_void__void, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void [] = { {&_swigt__p_f_int_double_p_char_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_f_int_p_double_p_double__void [] = { {&_swigt__p_f_int_p_double_p_double__void, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void [] = { {&_swigt__p_f_int_p_q_const__double_p_q_const__double__void, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_int [] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_p_char [] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_p_double [] = { {&_swigt__p_p_double, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_unsigned_int [] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_infoswig_cast_initial []
 
const char * SWIG_LUACODE
 

Macro Definition Documentation

◆ lua_absindex

#define lua_absindex (   L,
 
)    ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1)

Definition at line 895 of file plplotluacLUA_wrap.c.

◆ LUA_ALLOC_ARRAY

#define LUA_ALLOC_ARRAY (   TYPE,
  LEN 
)    (TYPE *) malloc( LEN * sizeof ( TYPE ) )

Definition at line 2699 of file plplotluacLUA_wrap.c.

◆ LUA_DECLARE_TYPEMAP_ARR_FN

#define LUA_DECLARE_TYPEMAP_ARR_FN (   NAME,
  TYPE 
)

Definition at line 2704 of file plplotluacLUA_wrap.c.

◆ LUA_FREE_ARRAY

#define LUA_FREE_ARRAY (   PTR)    if ( PTR ) { free( PTR ); PTR = NULL;}

Definition at line 2700 of file plplotluacLUA_wrap.c.

◆ lua_pushglobaltable

#define lua_pushglobaltable (   L)    lua_pushvalue(L, LUA_GLOBALSINDEX)

Definition at line 890 of file plplotluacLUA_wrap.c.

◆ lua_rawgetp

#define lua_rawgetp (   L,
  index,
  ptr 
)
Value:
lua_pushlightuserdata(L,(void*)(ptr));\
lua_rawget(L,index);

Definition at line 905 of file plplotluacLUA_wrap.c.

◆ lua_rawlen

#define lua_rawlen   lua_strlen

Definition at line 880 of file plplotluacLUA_wrap.c.

◆ lua_rawsetp

#define lua_rawsetp (   L,
  index,
  ptr 
)
Value:
lua_pushlightuserdata(L,(void*)(ptr));\
lua_insert(L,-2);\
lua_rawset(L,index);

Definition at line 900 of file plplotluacLUA_wrap.c.

◆ SWIG_AddCast

#define SWIG_AddCast (   r)    (r)

Definition at line 314 of file plplotluacLUA_wrap.c.

◆ SWIG_AddNewMask

#define SWIG_AddNewMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)

Definition at line 290 of file plplotluacLUA_wrap.c.

◆ SWIG_AddTmpMask

#define SWIG_AddTmpMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)

Definition at line 293 of file plplotluacLUA_wrap.c.

◆ SWIG_ALLOC_ARRAY

#define SWIG_ALLOC_ARRAY (   TYPE,
  LEN 
)    (TYPE *)malloc(LEN*sizeof(TYPE))

Definition at line 2753 of file plplotluacLUA_wrap.c.

◆ SWIG_ArgError

#define SWIG_ArgError (   r)    ((r != SWIG_ERROR) ? r : SWIG_TypeError)

Definition at line 276 of file plplotluacLUA_wrap.c.

◆ SWIG_AttributeError

#define SWIG_AttributeError   -11

Definition at line 728 of file plplotluacLUA_wrap.c.

◆ SWIG_BADOBJ

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 285 of file plplotluacLUA_wrap.c.

◆ SWIG_BUFFER_SIZE

#define SWIG_BUFFER_SIZE   1024

Definition at line 182 of file plplotluacLUA_wrap.c.

◆ SWIG_CAST_NEW_MEMORY

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 187 of file plplotluacLUA_wrap.c.

◆ SWIG_CASTRANKLIMIT

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 279 of file plplotluacLUA_wrap.c.

◆ SWIG_check_num_args

#define SWIG_check_num_args (   func_name,
  a,
 
)
Value:
if (lua_gettop(L)<a || lua_gettop(L)>b) \
{SWIG_Lua_pushferrstring(L,"Error in %s expected %d..%d args, got %d",func_name,a,b,lua_gettop(L));\
goto fail;}

Definition at line 1054 of file plplotluacLUA_wrap.c.

◆ SWIG_CheckState

#define SWIG_CheckState (   r)    (SWIG_IsOK(r) ? 1 : 0)

Definition at line 315 of file plplotluacLUA_wrap.c.

◆ SWIG_contract_assert

#define SWIG_contract_assert (   expr,
  msg 
)    if (!(expr)) { SWIG_Lua_pusherrstring(L, (char *) msg); goto fail; } else

Definition at line 1042 of file plplotluacLUA_wrap.c.

◆ SWIG_ConvertMember

#define SWIG_ConvertMember (   L,
  idx,
  ptr,
  sz,
  ty 
)    SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty)

Definition at line 1033 of file plplotluacLUA_wrap.c.

◆ SWIG_ConvertPtr

#define SWIG_ConvertPtr (   L,
  idx,
  ptr,
  type,
  flags 
)    SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags)

Definition at line 1030 of file plplotluacLUA_wrap.c.

◆ SWIG_DECLARE_TYPEMAP_ARR_FN

#define SWIG_DECLARE_TYPEMAP_ARR_FN (   NAME,
  TYPE 
)

Definition at line 2782 of file plplotluacLUA_wrap.c.

◆ SWIG_DelNewMask

#define SWIG_DelNewMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)

Definition at line 291 of file plplotluacLUA_wrap.c.

◆ SWIG_DelTmpMask

#define SWIG_DelTmpMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)

Definition at line 294 of file plplotluacLUA_wrap.c.

◆ SWIG_DivisionByZero

#define SWIG_DivisionByZero   -6

Definition at line 723 of file plplotluacLUA_wrap.c.

◆ SWIG_DOSTRING_FAIL

#define SWIG_DOSTRING_FAIL (   S)    fprintf(stderr,"%s\n",S)

Definition at line 2638 of file plplotluacLUA_wrap.c.

◆ SWIG_ERROR

#define SWIG_ERROR   (-1)

Definition at line 274 of file plplotluacLUA_wrap.c.

◆ SWIG_fail

#define SWIG_fail   {goto fail;}

Definition at line 1047 of file plplotluacLUA_wrap.c.

◆ SWIG_fail_arg

#define SWIG_fail_arg (   func_name,
  argnum,
  type 
)
Value:
{SWIG_Lua_pushferrstring(L,"Error in %s (arg %d), expected '%s' got '%s'",\
func_name,argnum,type,SWIG_Lua_typename(L,argnum));\
goto fail;}

Definition at line 1048 of file plplotluacLUA_wrap.c.

◆ SWIG_fail_ptr

#define SWIG_fail_ptr (   func_name,
  argnum,
  type 
)    SWIG_fail_arg(func_name,argnum,(type && type->str)?type->str:"void*")

Definition at line 1052 of file plplotluacLUA_wrap.c.

◆ SWIG_FREE_ARRAY

#define SWIG_FREE_ARRAY (   PTR)    free(PTR)

Definition at line 2754 of file plplotluacLUA_wrap.c.

◆ SWIG_GetModule

#define SWIG_GetModule (   clientdata)    SWIG_Lua_GetModule((lua_State*)(clientdata))

Definition at line 1037 of file plplotluacLUA_wrap.c.

◆ SWIG_IndexError

#define SWIG_IndexError   -4

Definition at line 721 of file plplotluacLUA_wrap.c.

◆ SWIG_init

#define SWIG_init   luaopen_plplotluac

Definition at line 2691 of file plplotluacLUA_wrap.c.

◆ SWIG_init_user

#define SWIG_init_user   luaopen_plplotluac_user

Definition at line 2692 of file plplotluacLUA_wrap.c.

◆ SWIG_IOError

#define SWIG_IOError   -2

Definition at line 719 of file plplotluacLUA_wrap.c.

◆ SWIG_IsNewObj

#define SWIG_IsNewObj (   r)    (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))

Definition at line 292 of file plplotluacLUA_wrap.c.

◆ SWIG_IsOK

#define SWIG_IsOK (   r)    (r >= 0)

Definition at line 275 of file plplotluacLUA_wrap.c.

◆ SWIG_isptrtype

#define SWIG_isptrtype (   L,
 
)    (lua_isuserdata(L,I) || lua_isnil(L,I))

Definition at line 1074 of file plplotluacLUA_wrap.c.

◆ SWIG_IsTmpObj

#define SWIG_IsTmpObj (   r)    (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))

Definition at line 295 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_boolean

#define SWIG_Lua_add_boolean (   L,
  n,
 
)
Value:
(lua_pushstring(L, n), \
lua_pushboolean(L, b), \
lua_rawset(L,-3))

Definition at line 1068 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_function

#define SWIG_Lua_add_function (   L,
  n,
 
)
Value:
(lua_pushstring(L, n), \
lua_pushcfunction(L, f), \
lua_rawset(L,-3))

Definition at line 1063 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_BINARY

#define SWIG_LUA_BINARY   5

Definition at line 949 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CHAR

#define SWIG_LUA_CHAR   6

Definition at line 950 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_BINARY

#define SWIG_LUA_CONSTTAB_BINARY (   B,
  S,
  C,
 
)    SWIG_LUA_BINARY, (char *)B, S, 0, (void *)C, &D

Definition at line 845 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_CHAR

#define SWIG_LUA_CONSTTAB_CHAR (   B,
 
)    SWIG_LUA_CHAR, (char *)B, (long)C, 0, 0, 0

Definition at line 842 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_FLOAT

#define SWIG_LUA_CONSTTAB_FLOAT (   B,
 
)    SWIG_LUA_FLOAT, (char *)B, 0, (double)C, 0, 0

Definition at line 840 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_INT

#define SWIG_LUA_CONSTTAB_INT (   B,
 
)    SWIG_LUA_INT, (char *)B, (long)C, 0, 0, 0

Definition at line 839 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_POINTER

#define SWIG_LUA_CONSTTAB_POINTER (   B,
  C,
 
)    SWIG_LUA_POINTER, (char *)B, 0, 0, (void *)C, &D

Definition at line 843 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_CONSTTAB_STRING

#define SWIG_LUA_CONSTTAB_STRING (   B,
 
)    SWIG_LUA_STRING, (char *)B, 0, 0, (void *)C, 0

Definition at line 841 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_FLAVOR_ELUA

#define SWIG_LUA_FLAVOR_ELUA   2

Definition at line 756 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_FLAVOR_ELUAC

#define SWIG_LUA_FLAVOR_ELUAC   3

Definition at line 757 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_FLAVOR_LUA

#define SWIG_LUA_FLAVOR_LUA   1

Definition at line 755 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_FLOAT

#define SWIG_LUA_FLOAT   2

Definition at line 946 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_get_table

#define SWIG_Lua_get_table (   L,
 
)    (lua_pushstring(L, n), lua_rawget(L,-2))

Definition at line 1060 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_INT

#define SWIG_LUA_INT   1

Definition at line 945 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_MODULE_GLOBAL

#define SWIG_LUA_MODULE_GLOBAL

Definition at line 17 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_POINTER

#define SWIG_LUA_POINTER   4

Definition at line 948 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_STRING

#define SWIG_LUA_STRING   3

Definition at line 947 of file plplotluacLUA_wrap.c.

◆ SWIG_LUA_TARGET

#define SWIG_LUA_TARGET   SWIG_LUA_FLAVOR_LUA

Definition at line 16 of file plplotluacLUA_wrap.c.

◆ SWIG_LUACODE

#define SWIG_LUACODE   luaopen_plplotluac_luacode

Definition at line 2694 of file plplotluacLUA_wrap.c.

◆ SWIG_MangledTypeQuery

#define SWIG_MangledTypeQuery (   name)    SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)

Definition at line 2686 of file plplotluacLUA_wrap.c.

◆ SWIG_MemoryError

#define SWIG_MemoryError   -12

Definition at line 729 of file plplotluacLUA_wrap.c.

◆ SWIG_MODULE_CLIENTDATA_TYPE

#define SWIG_MODULE_CLIENTDATA_TYPE   lua_State*

Definition at line 1039 of file plplotluacLUA_wrap.c.

◆ SWIG_MustGetPtr

#define SWIG_MustGetPtr (   L,
  idx,
  type,
  flags,
  argnum,
  fnname 
)    SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)

Definition at line 1031 of file plplotluacLUA_wrap.c.

◆ SWIG_name

#define SWIG_name   "plplotluac"

Definition at line 2690 of file plplotluacLUA_wrap.c.

◆ SWIG_NewMemberObj

#define SWIG_NewMemberObj (   L,
  ptr,
  sz,
  type 
)    SWIG_Lua_NewPackedObj(L, ptr, sz, type)

Definition at line 1034 of file plplotluacLUA_wrap.c.

◆ SWIG_NEWOBJ

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 287 of file plplotluacLUA_wrap.c.

◆ SWIG_NEWOBJMASK

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 281 of file plplotluacLUA_wrap.c.

◆ SWIG_NewPointerObj

#define SWIG_NewPointerObj (   L,
  ptr,
  type,
  owner 
)    SWIG_Lua_NewPointerObj(L, (void *)ptr, type, owner)

Definition at line 1029 of file plplotluacLUA_wrap.c.

◆ SWIG_NullReferenceError

#define SWIG_NullReferenceError   -13

Definition at line 730 of file plplotluacLUA_wrap.c.

◆ SWIG_OK

#define SWIG_OK   (0)

Definition at line 273 of file plplotluacLUA_wrap.c.

◆ SWIG_OLDOBJ

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 286 of file plplotluacLUA_wrap.c.

◆ SWIG_OverflowError

#define SWIG_OverflowError   -7

Definition at line 724 of file plplotluacLUA_wrap.c.

◆ SWIG_POINTER_DISOWN

#define SWIG_POINTER_DISOWN   0x1

Definition at line 186 of file plplotluacLUA_wrap.c.

◆ SWIG_POINTER_NO_NULL

#define SWIG_POINTER_NO_NULL   0x4

Definition at line 188 of file plplotluacLUA_wrap.c.

◆ SWIG_POINTER_OWN

#define SWIG_POINTER_OWN   0x1

Definition at line 191 of file plplotluacLUA_wrap.c.

◆ SWIG_RUNTIME_VERSION

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 152 of file plplotluacLUA_wrap.c.

◆ SWIG_RuntimeError

#define SWIG_RuntimeError   -3

Definition at line 720 of file plplotluacLUA_wrap.c.

◆ SWIG_SetModule

#define SWIG_SetModule (   clientdata,
  pointer 
)    SWIG_Lua_SetModule((lua_State*) (clientdata), pointer)

Definition at line 1038 of file plplotluacLUA_wrap.c.

◆ SWIG_SyntaxError

#define SWIG_SyntaxError   -8

Definition at line 725 of file plplotluacLUA_wrap.c.

◆ SWIG_SystemError

#define SWIG_SystemError   -10

Definition at line 727 of file plplotluacLUA_wrap.c.

◆ SWIG_TMPOBJ

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 288 of file plplotluacLUA_wrap.c.

◆ SWIG_TMPOBJMASK

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 283 of file plplotluacLUA_wrap.c.

◆ SWIG_TYPE_TABLE_NAME

#define SWIG_TYPE_TABLE_NAME

Definition at line 160 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeError

#define SWIG_TypeError   -5

Definition at line 722 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeQuery

#define SWIG_TypeQuery (   name)    SWIG_TypeQueryModule(&swig_module, &swig_module, name)

Definition at line 2685 of file plplotluacLUA_wrap.c.

◆ SWIG_UnknownError

#define SWIG_UnknownError   -1

Definition at line 718 of file plplotluacLUA_wrap.c.

◆ SWIG_ValueError

#define SWIG_ValueError   -9

Definition at line 726 of file plplotluacLUA_wrap.c.

◆ SWIGEXPORT

#define SWIGEXPORT

Definition at line 105 of file plplotluacLUA_wrap.c.

◆ SWIGINLINE

#define SWIGINLINE

Definition at line 42 of file plplotluacLUA_wrap.c.

◆ SWIGINTERN

#define SWIGINTERN   static SWIGUNUSED

Definition at line 77 of file plplotluacLUA_wrap.c.

◆ SWIGINTERNINLINE

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 82 of file plplotluacLUA_wrap.c.

◆ SWIGLUA

#define SWIGLUA

Definition at line 13 of file plplotluacLUA_wrap.c.

◆ SWIGRUNTIME

#define SWIGRUNTIME   SWIGINTERN

Definition at line 173 of file plplotluacLUA_wrap.c.

◆ SWIGRUNTIMEINLINE

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 177 of file plplotluacLUA_wrap.c.

◆ SWIGSTDCALL

#define SWIGSTDCALL

Definition at line 115 of file plplotluacLUA_wrap.c.

◆ SWIGTEMPLATEDISAMBIGUATOR

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 33 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_char

#define SWIGTYPE_p_char   swig_types[1]

Definition at line 2672 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_double

#define SWIGTYPE_p_double   swig_types[2]

Definition at line 2673 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_f_double_double__int

#define SWIGTYPE_p_f_double_double__int   swig_types[3]

Definition at line 2674 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void

#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void   swig_types[4]

Definition at line 2675 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_f_int_double_p_char_int_p_void__void

#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void   swig_types[5]

Definition at line 2676 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_f_int_p_double_p_double__void

#define SWIGTYPE_p_f_int_p_double_p_double__void   swig_types[6]

Definition at line 2677 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void

#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void   swig_types[7]

Definition at line 2678 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_int

#define SWIGTYPE_p_int   swig_types[8]

Definition at line 2679 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_p_char

#define SWIGTYPE_p_p_char   swig_types[9]

Definition at line 2680 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_p_double

#define SWIGTYPE_p_p_double   swig_types[10]

Definition at line 2681 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_PLGraphicsIn

#define SWIGTYPE_p_PLGraphicsIn   swig_types[0]

Definition at line 2671 of file plplotluacLUA_wrap.c.

◆ SWIGTYPE_p_unsigned_int

#define SWIGTYPE_p_unsigned_int   swig_types[11]

Definition at line 2682 of file plplotluacLUA_wrap.c.

◆ SWIGUNUSED

#define SWIGUNUSED

Definition at line 57 of file plplotluacLUA_wrap.c.

◆ SWIGUNUSEDPARM

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 71 of file plplotluacLUA_wrap.c.

Typedef Documentation

◆ ct_func

typedef void( * ct_func) (PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)

Definition at line 3063 of file plplotluacLUA_wrap.c.

◆ defined_func

typedef PLINT( * defined_func) (PLFLT, PLFLT)

Definition at line 3060 of file plplotluacLUA_wrap.c.

◆ f2eval_func

typedef PLFLT( * f2eval_func) (PLINT, PLINT, PLPointer)

Definition at line 3065 of file plplotluacLUA_wrap.c.

◆ fill_func

typedef void( * fill_func) (PLINT, const PLFLT *, const PLFLT *)

Definition at line 3061 of file plplotluacLUA_wrap.c.

◆ label_func

typedef void( * label_func) (PLINT, PLFLT, char *, PLINT, PLPointer)

Definition at line 3066 of file plplotluacLUA_wrap.c.

◆ mapform_func

typedef void( * mapform_func) (PLINT, PLFLT *, PLFLT *)

Definition at line 3064 of file plplotluacLUA_wrap.c.

◆ pltr_func

typedef void( * pltr_func) (PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)

Definition at line 3062 of file plplotluacLUA_wrap.c.

◆ swig_cast_info

◆ swig_converter_func

typedef void*(* swig_converter_func) (void *, int *)

Definition at line 325 of file plplotluacLUA_wrap.c.

◆ swig_dycast_func

typedef struct swig_type_info*(* swig_dycast_func) (void **)

Definition at line 326 of file plplotluacLUA_wrap.c.

◆ swig_lua_base_iterator_func

typedef int(* swig_lua_base_iterator_func) (lua_State *, swig_type_info *, int, int *ret)

Definition at line 1444 of file plplotluacLUA_wrap.c.

◆ swig_lua_class

◆ swig_lua_method

typedef luaL_Reg swig_lua_method

Definition at line 963 of file plplotluacLUA_wrap.c.

◆ swig_lua_namespace

◆ swig_module_info

◆ swig_type_info

Function Documentation

◆ _proxy__wrap_new_PLGraphicsIn()

static int _proxy__wrap_new_PLGraphicsIn ( lua_State *  L)
static

Definition at line 3837 of file plplotluacLUA_wrap.c.

◆ _wrap_abort()

static int _wrap_abort ( lua_State *  L)
static

Definition at line 12682 of file plplotluacLUA_wrap.c.

◆ _wrap_adv()

static int _wrap_adv ( lua_State *  L)
static

Definition at line 3942 of file plplotluacLUA_wrap.c.

◆ _wrap_arc()

static int _wrap_arc ( lua_State *  L)
static

Definition at line 3961 of file plplotluacLUA_wrap.c.

◆ _wrap_axes()

static int _wrap_axes ( lua_State *  L)
static

Definition at line 4001 of file plplotluacLUA_wrap.c.

◆ _wrap_bin()

static int _wrap_bin ( lua_State *  L)
static

Definition at line 4041 of file plplotluacLUA_wrap.c.

◆ _wrap_bop()

static int _wrap_bop ( lua_State *  L)
static

Definition at line 4136 of file plplotluacLUA_wrap.c.

◆ _wrap_box()

static int _wrap_box ( lua_State *  L)
static

Definition at line 4152 of file plplotluacLUA_wrap.c.

◆ _wrap_box3()

static int _wrap_box3 ( lua_State *  L)
static

Definition at line 4186 of file plplotluacLUA_wrap.c.

◆ _wrap_btime()

static int _wrap_btime ( lua_State *  L)
static

Definition at line 4093 of file plplotluacLUA_wrap.c.

◆ _wrap_calc_world()

static int _wrap_calc_world ( lua_State *  L)
static

Definition at line 4238 of file plplotluacLUA_wrap.c.

◆ _wrap_clear()

static int _wrap_clear ( lua_State *  L)
static

Definition at line 4272 of file plplotluacLUA_wrap.c.

◆ _wrap_col0()

static int _wrap_col0 ( lua_State *  L)
static

Definition at line 4288 of file plplotluacLUA_wrap.c.

◆ _wrap_col1()

static int _wrap_col1 ( lua_State *  L)
static

Definition at line 4307 of file plplotluacLUA_wrap.c.

◆ _wrap_colorbar()

static int _wrap_colorbar ( lua_State *  L)
static

Definition at line 6670 of file plplotluacLUA_wrap.c.

◆ _wrap_configtime()

static int _wrap_configtime ( lua_State *  L)
static

Definition at line 4326 of file plplotluacLUA_wrap.c.

◆ _wrap_cont()

static int _wrap_cont ( lua_State *  L)
static

Definition at line 4375 of file plplotluacLUA_wrap.c.

◆ _wrap_cpstrm()

static int _wrap_cpstrm ( lua_State *  L)
static

Definition at line 4709 of file plplotluacLUA_wrap.c.

◆ _wrap_ctime()

static int _wrap_ctime ( lua_State *  L)
static

Definition at line 4671 of file plplotluacLUA_wrap.c.

◆ _wrap_env()

static int _wrap_env ( lua_State *  L)
static

Definition at line 4763 of file plplotluacLUA_wrap.c.

◆ _wrap_env0()

static int _wrap_env0 ( lua_State *  L)
static

Definition at line 4797 of file plplotluacLUA_wrap.c.

◆ _wrap_eop()

static int _wrap_eop ( lua_State *  L)
static

Definition at line 4831 of file plplotluacLUA_wrap.c.

◆ _wrap_errx()

static int _wrap_errx ( lua_State *  L)
static

Definition at line 4847 of file plplotluacLUA_wrap.c.

◆ _wrap_erry()

static int _wrap_erry ( lua_State *  L)
static

Definition at line 4914 of file plplotluacLUA_wrap.c.

◆ _wrap_famadv()

static int _wrap_famadv ( lua_State *  L)
static

Definition at line 4981 of file plplotluacLUA_wrap.c.

◆ _wrap_fill()

static int _wrap_fill ( lua_State *  L)
static

Definition at line 4997 of file plplotluacLUA_wrap.c.

◆ _wrap_fill3()

static int _wrap_fill3 ( lua_State *  L)
static

Definition at line 5046 of file plplotluacLUA_wrap.c.

◆ _wrap_flush()

static int _wrap_flush ( lua_State *  L)
static

Definition at line 5165 of file plplotluacLUA_wrap.c.

◆ _wrap_font()

static int _wrap_font ( lua_State *  L)
static

Definition at line 5181 of file plplotluacLUA_wrap.c.

◆ _wrap_fontld()

static int _wrap_fontld ( lua_State *  L)
static

Definition at line 5200 of file plplotluacLUA_wrap.c.

◆ _wrap_gchr()

static int _wrap_gchr ( lua_State *  L)
static

Definition at line 5219 of file plplotluacLUA_wrap.c.

◆ _wrap_gcmap1_range()

static int _wrap_gcmap1_range ( lua_State *  L)
static

Definition at line 9101 of file plplotluacLUA_wrap.c.

◆ _wrap_gcol0()

static int _wrap_gcol0 ( lua_State *  L)
static

Definition at line 5243 of file plplotluacLUA_wrap.c.

◆ _wrap_gcol0a()

static int _wrap_gcol0a ( lua_State *  L)
static

Definition at line 5274 of file plplotluacLUA_wrap.c.

◆ _wrap_gcolbg()

static int _wrap_gcolbg ( lua_State *  L)
static

Definition at line 5309 of file plplotluacLUA_wrap.c.

◆ _wrap_gcolbga()

static int _wrap_gcolbga ( lua_State *  L)
static

Definition at line 5337 of file plplotluacLUA_wrap.c.

◆ _wrap_gcompression()

static int _wrap_gcompression ( lua_State *  L)
static

Definition at line 5369 of file plplotluacLUA_wrap.c.

◆ _wrap_gdev()

static int _wrap_gdev ( lua_State *  L)
static

Definition at line 5389 of file plplotluacLUA_wrap.c.

◆ _wrap_gdidev()

static int _wrap_gdidev ( lua_State *  L)
static

Definition at line 5414 of file plplotluacLUA_wrap.c.

◆ _wrap_gdiori()

static int _wrap_gdiori ( lua_State *  L)
static

Definition at line 5446 of file plplotluacLUA_wrap.c.

◆ _wrap_gdiplt()

static int _wrap_gdiplt ( lua_State *  L)
static

Definition at line 5466 of file plplotluacLUA_wrap.c.

◆ _wrap_gfam()

static int _wrap_gfam ( lua_State *  L)
static

Definition at line 5498 of file plplotluacLUA_wrap.c.

◆ _wrap_gfci()

static int _wrap_gfci ( lua_State *  L)
static

Definition at line 5526 of file plplotluacLUA_wrap.c.

◆ _wrap_gfnam()

static int _wrap_gfnam ( lua_State *  L)
static

Definition at line 5546 of file plplotluacLUA_wrap.c.

◆ _wrap_gfont()

static int _wrap_gfont ( lua_State *  L)
static

Definition at line 5571 of file plplotluacLUA_wrap.c.

◆ _wrap_glevel()

static int _wrap_glevel ( lua_State *  L)
static

Definition at line 5599 of file plplotluacLUA_wrap.c.

◆ _wrap_gpage()

static int _wrap_gpage ( lua_State *  L)
static

Definition at line 5619 of file plplotluacLUA_wrap.c.

◆ _wrap_gra()

static int _wrap_gra ( lua_State *  L)
static

Definition at line 5659 of file plplotluacLUA_wrap.c.

◆ _wrap_gradient()

static int _wrap_gradient ( lua_State *  L)
static

Definition at line 5113 of file plplotluacLUA_wrap.c.

◆ _wrap_griddata()

static int _wrap_griddata ( lua_State *  L)
static

Definition at line 5675 of file plplotluacLUA_wrap.c.

◆ _wrap_gspa()

static int _wrap_gspa ( lua_State *  L)
static

Definition at line 5826 of file plplotluacLUA_wrap.c.

◆ _wrap_gstrm()

static int _wrap_gstrm ( lua_State *  L)
static

Definition at line 5858 of file plplotluacLUA_wrap.c.

◆ _wrap_gver()

static int _wrap_gver ( lua_State *  L)
static

Definition at line 5878 of file plplotluacLUA_wrap.c.

◆ _wrap_gvpd()

static int _wrap_gvpd ( lua_State *  L)
static

Definition at line 5903 of file plplotluacLUA_wrap.c.

◆ _wrap_gvpw()

static int _wrap_gvpw ( lua_State *  L)
static

Definition at line 5935 of file plplotluacLUA_wrap.c.

◆ _wrap_gxax()

static int _wrap_gxax ( lua_State *  L)
static

Definition at line 5967 of file plplotluacLUA_wrap.c.

◆ _wrap_gyax()

static int _wrap_gyax ( lua_State *  L)
static

Definition at line 5991 of file plplotluacLUA_wrap.c.

◆ _wrap_gzax()

static int _wrap_gzax ( lua_State *  L)
static

Definition at line 6015 of file plplotluacLUA_wrap.c.

◆ _wrap_hist()

static int _wrap_hist ( lua_State *  L)
static

Definition at line 6039 of file plplotluacLUA_wrap.c.

◆ _wrap_hlsrgb()

static int _wrap_hlsrgb ( lua_State *  L)
static

Definition at line 6082 of file plplotluacLUA_wrap.c.

◆ _wrap_image()

static int _wrap_image ( lua_State *  L)
static

Definition at line 12138 of file plplotluacLUA_wrap.c.

◆ _wrap_imagefr()

static int _wrap_imagefr ( lua_State *  L)
static

Definition at line 12217 of file plplotluacLUA_wrap.c.

◆ _wrap_init()

static int _wrap_init ( lua_State *  L)
static

Definition at line 6119 of file plplotluacLUA_wrap.c.

◆ _wrap_join()

static int _wrap_join ( lua_State *  L)
static

Definition at line 6135 of file plplotluacLUA_wrap.c.

◆ _wrap_lab()

static int _wrap_lab ( lua_State *  L)
static

Definition at line 6163 of file plplotluacLUA_wrap.c.

◆ _wrap_legend()

static int _wrap_legend ( lua_State *  L)
static

Definition at line 6188 of file plplotluacLUA_wrap.c.

◆ _wrap_lightsource()

static int _wrap_lightsource ( lua_State *  L)
static

Definition at line 6920 of file plplotluacLUA_wrap.c.

◆ _wrap_line()

static int _wrap_line ( lua_State *  L)
static

Definition at line 6945 of file plplotluacLUA_wrap.c.

◆ _wrap_line3()

static int _wrap_line3 ( lua_State *  L)
static

Definition at line 6994 of file plplotluacLUA_wrap.c.

◆ _wrap_lsty()

static int _wrap_lsty ( lua_State *  L)
static

Definition at line 7061 of file plplotluacLUA_wrap.c.

◆ _wrap_map()

static int _wrap_map ( lua_State *  L)
static

Definition at line 11718 of file plplotluacLUA_wrap.c.

◆ _wrap_mapfill()

static int _wrap_mapfill ( lua_State *  L)
static

Definition at line 12002 of file plplotluacLUA_wrap.c.

◆ _wrap_mapline()

static int _wrap_mapline ( lua_State *  L)
static

Definition at line 11773 of file plplotluacLUA_wrap.c.

◆ _wrap_mapstring()

static int _wrap_mapstring ( lua_State *  L)
static

Definition at line 11851 of file plplotluacLUA_wrap.c.

◆ _wrap_maptex()

static int _wrap_maptex ( lua_State *  L)
static

Definition at line 11932 of file plplotluacLUA_wrap.c.

◆ _wrap_meridians()

static int _wrap_meridians ( lua_State *  L)
static

Definition at line 12080 of file plplotluacLUA_wrap.c.

◆ _wrap_mesh()

static int _wrap_mesh ( lua_State *  L)
static

Definition at line 7080 of file plplotluacLUA_wrap.c.

◆ _wrap_meshc()

static int _wrap_meshc ( lua_State *  L)
static

Definition at line 7165 of file plplotluacLUA_wrap.c.

◆ _wrap_MinMax2dGrid()

static int _wrap_MinMax2dGrid ( lua_State *  L)
static

Definition at line 12580 of file plplotluacLUA_wrap.c.

◆ _wrap_mkstrm()

static int _wrap_mkstrm ( lua_State *  L)
static

Definition at line 7265 of file plplotluacLUA_wrap.c.

◆ _wrap_mtex()

static int _wrap_mtex ( lua_State *  L)
static

Definition at line 7285 of file plplotluacLUA_wrap.c.

◆ _wrap_mtex3()

static int _wrap_mtex3 ( lua_State *  L)
static

Definition at line 7316 of file plplotluacLUA_wrap.c.

◆ _wrap_new_PLGraphicsIn()

static int _wrap_new_PLGraphicsIn ( lua_State *  L)
static

Definition at line 3816 of file plplotluacLUA_wrap.c.

◆ _wrap_parseopts()

static int _wrap_parseopts ( lua_State *  L)
static

Definition at line 7905 of file plplotluacLUA_wrap.c.

◆ _wrap_pat()

static int _wrap_pat ( lua_State *  L)
static

Definition at line 7974 of file plplotluacLUA_wrap.c.

◆ _wrap_path()

static int _wrap_path ( lua_State *  L)
static

Definition at line 8022 of file plplotluacLUA_wrap.c.

◆ _wrap_plClearOpts()

static int _wrap_plClearOpts ( lua_State *  L)
static

Definition at line 12510 of file plplotluacLUA_wrap.c.

◆ _wrap_plend()

static int _wrap_plend ( lua_State *  L)
static

Definition at line 4731 of file plplotluacLUA_wrap.c.

◆ _wrap_plend1()

static int _wrap_plend1 ( lua_State *  L)
static

Definition at line 4747 of file plplotluacLUA_wrap.c.

◆ _wrap_plGetCursor()

static int _wrap_plGetCursor ( lua_State *  L)
static

Definition at line 12637 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_button_get()

static int _wrap_PLGraphicsIn_button_get ( lua_State *  L)
static

Definition at line 3385 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_button_set()

static int _wrap_PLGraphicsIn_button_set ( lua_State *  L)
static

Definition at line 3358 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_dX_get()

static int _wrap_PLGraphicsIn_dX_get ( lua_State *  L)
static

Definition at line 3642 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_dX_set()

static int _wrap_PLGraphicsIn_dX_set ( lua_State *  L)
static

Definition at line 3616 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_dY_get()

static int _wrap_PLGraphicsIn_dY_get ( lua_State *  L)
static

Definition at line 3692 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_dY_set()

static int _wrap_PLGraphicsIn_dY_set ( lua_State *  L)
static

Definition at line 3666 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_keysym_get()

static int _wrap_PLGraphicsIn_keysym_get ( lua_State *  L)
static

Definition at line 3334 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_keysym_set()

static int _wrap_PLGraphicsIn_keysym_set ( lua_State *  L)
static

Definition at line 3307 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_pX_get()

static int _wrap_PLGraphicsIn_pX_get ( lua_State *  L)
static

Definition at line 3542 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_pX_set()

static int _wrap_PLGraphicsIn_pX_set ( lua_State *  L)
static

Definition at line 3516 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_pY_get()

static int _wrap_PLGraphicsIn_pY_get ( lua_State *  L)
static

Definition at line 3592 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_pY_set()

static int _wrap_PLGraphicsIn_pY_set ( lua_State *  L)
static

Definition at line 3566 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_state_get()

static int _wrap_PLGraphicsIn_state_get ( lua_State *  L)
static

Definition at line 3283 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_state_set()

static int _wrap_PLGraphicsIn_state_set ( lua_State *  L)
static

Definition at line 3256 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_string_get()

static int _wrap_PLGraphicsIn_string_get ( lua_State *  L)
static

Definition at line 3492 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_string_set()

static int _wrap_PLGraphicsIn_string_set ( lua_State *  L)
static

Definition at line 3459 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_subwindow_get()

static int _wrap_PLGraphicsIn_subwindow_get ( lua_State *  L)
static

Definition at line 3435 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_subwindow_set()

static int _wrap_PLGraphicsIn_subwindow_set ( lua_State *  L)
static

Definition at line 3409 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_type_get()

static int _wrap_PLGraphicsIn_type_get ( lua_State *  L)
static

Definition at line 3232 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_type_set()

static int _wrap_PLGraphicsIn_type_set ( lua_State *  L)
static

Definition at line 3206 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_wX_get()

static int _wrap_PLGraphicsIn_wX_get ( lua_State *  L)
static

Definition at line 3742 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_wX_set()

static int _wrap_PLGraphicsIn_wX_set ( lua_State *  L)
static

Definition at line 3716 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_wY_get()

static int _wrap_PLGraphicsIn_wY_get ( lua_State *  L)
static

Definition at line 3792 of file plplotluacLUA_wrap.c.

◆ _wrap_PLGraphicsIn_wY_set()

static int _wrap_PLGraphicsIn_wY_set ( lua_State *  L)
static

Definition at line 3766 of file plplotluacLUA_wrap.c.

◆ _wrap_plOptUsage()

static int _wrap_plOptUsage ( lua_State *  L)
static

Definition at line 12564 of file plplotluacLUA_wrap.c.

◆ _wrap_plot3d()

static int _wrap_plot3d ( lua_State *  L)
static

Definition at line 7347 of file plplotluacLUA_wrap.c.

◆ _wrap_plot3dc()

static int _wrap_plot3dc ( lua_State *  L)
static

Definition at line 7435 of file plplotluacLUA_wrap.c.

◆ _wrap_plot3dcl()

static int _wrap_plot3dcl ( lua_State *  L)
static

Definition at line 7535 of file plplotluacLUA_wrap.c.

◆ _wrap_plResetOpts()

static int _wrap_plResetOpts ( lua_State *  L)
static

Definition at line 12526 of file plplotluacLUA_wrap.c.

◆ _wrap_plSetUsage()

static int _wrap_plSetUsage ( lua_State *  L)
static

Definition at line 12542 of file plplotluacLUA_wrap.c.

◆ _wrap_poin()

static int _wrap_poin ( lua_State *  L)
static

Definition at line 8053 of file plplotluacLUA_wrap.c.

◆ _wrap_poin3()

static int _wrap_poin3 ( lua_State *  L)
static

Definition at line 8105 of file plplotluacLUA_wrap.c.

◆ _wrap_poly3()

static int _wrap_poly3 ( lua_State *  L)
static

Definition at line 8175 of file plplotluacLUA_wrap.c.

◆ _wrap_prec()

static int _wrap_prec ( lua_State *  L)
static

Definition at line 8263 of file plplotluacLUA_wrap.c.

◆ _wrap_psty()

static int _wrap_psty ( lua_State *  L)
static

Definition at line 8285 of file plplotluacLUA_wrap.c.

◆ _wrap_ptex()

static int _wrap_ptex ( lua_State *  L)
static

Definition at line 8304 of file plplotluacLUA_wrap.c.

◆ _wrap_ptex3()

static int _wrap_ptex3 ( lua_State *  L)
static

Definition at line 8338 of file plplotluacLUA_wrap.c.

◆ _wrap_randd()

static int _wrap_randd ( lua_State *  L)
static

Definition at line 8387 of file plplotluacLUA_wrap.c.

◆ _wrap_replot()

static int _wrap_replot ( lua_State *  L)
static

Definition at line 8404 of file plplotluacLUA_wrap.c.

◆ _wrap_rgbhls()

static int _wrap_rgbhls ( lua_State *  L)
static

Definition at line 8420 of file plplotluacLUA_wrap.c.

◆ _wrap_schr()

static int _wrap_schr ( lua_State *  L)
static

Definition at line 8457 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap0()

static int _wrap_scmap0 ( lua_State *  L)
static

Definition at line 8479 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap0a()

static int _wrap_scmap0a ( lua_State *  L)
static

Definition at line 8547 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap0n()

static int _wrap_scmap0n ( lua_State *  L)
static

Definition at line 8633 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1()

static int _wrap_scmap1 ( lua_State *  L)
static

Definition at line 8652 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1_range()

static int _wrap_scmap1_range ( lua_State *  L)
static

Definition at line 9079 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1a()

static int _wrap_scmap1a ( lua_State *  L)
static

Definition at line 8720 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1l()

static int _wrap_scmap1l ( lua_State *  L)
static

Definition at line 8806 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1la()

static int _wrap_scmap1la ( lua_State *  L)
static

Definition at line 8924 of file plplotluacLUA_wrap.c.

◆ _wrap_scmap1n()

static int _wrap_scmap1n ( lua_State *  L)
static

Definition at line 9060 of file plplotluacLUA_wrap.c.

◆ _wrap_scol0()

static int _wrap_scol0 ( lua_State *  L)
static

Definition at line 9125 of file plplotluacLUA_wrap.c.

◆ _wrap_scol0a()

static int _wrap_scol0a ( lua_State *  L)
static

Definition at line 9153 of file plplotluacLUA_wrap.c.

◆ _wrap_scolbg()

static int _wrap_scolbg ( lua_State *  L)
static

Definition at line 9184 of file plplotluacLUA_wrap.c.

◆ _wrap_scolbga()

static int _wrap_scolbga ( lua_State *  L)
static

Definition at line 9209 of file plplotluacLUA_wrap.c.

◆ _wrap_scolor()

static int _wrap_scolor ( lua_State *  L)
static

Definition at line 9237 of file plplotluacLUA_wrap.c.

◆ _wrap_scompression()

static int _wrap_scompression ( lua_State *  L)
static

Definition at line 9256 of file plplotluacLUA_wrap.c.

◆ _wrap_sdev()

static int _wrap_sdev ( lua_State *  L)
static

Definition at line 9275 of file plplotluacLUA_wrap.c.

◆ _wrap_sdidev()

static int _wrap_sdidev ( lua_State *  L)
static

Definition at line 9294 of file plplotluacLUA_wrap.c.

◆ _wrap_sdimap()

static int _wrap_sdimap ( lua_State *  L)
static

Definition at line 9322 of file plplotluacLUA_wrap.c.

◆ _wrap_sdiori()

static int _wrap_sdiori ( lua_State *  L)
static

Definition at line 9356 of file plplotluacLUA_wrap.c.

◆ _wrap_sdiplt()

static int _wrap_sdiplt ( lua_State *  L)
static

Definition at line 9375 of file plplotluacLUA_wrap.c.

◆ _wrap_sdiplz()

static int _wrap_sdiplz ( lua_State *  L)
static

Definition at line 9403 of file plplotluacLUA_wrap.c.

◆ _wrap_seed()

static int _wrap_seed ( lua_State *  L)
static

Definition at line 9431 of file plplotluacLUA_wrap.c.

◆ _wrap_sesc()

static int _wrap_sesc ( lua_State *  L)
static

Definition at line 9451 of file plplotluacLUA_wrap.c.

◆ _wrap_setcontlabelformat()

static int _wrap_setcontlabelformat ( lua_State *  L)
static

Definition at line 3892 of file plplotluacLUA_wrap.c.

◆ _wrap_setcontlabelparam()

static int _wrap_setcontlabelparam ( lua_State *  L)
static

Definition at line 3914 of file plplotluacLUA_wrap.c.

◆ _wrap_setopt()

static int _wrap_setopt ( lua_State *  L)
static

Definition at line 9470 of file plplotluacLUA_wrap.c.

◆ _wrap_sfam()

static int _wrap_sfam ( lua_State *  L)
static

Definition at line 9493 of file plplotluacLUA_wrap.c.

◆ _wrap_sfci()

static int _wrap_sfci ( lua_State *  L)
static

Definition at line 9518 of file plplotluacLUA_wrap.c.

◆ _wrap_sfnam()

static int _wrap_sfnam ( lua_State *  L)
static

Definition at line 9538 of file plplotluacLUA_wrap.c.

◆ _wrap_sfont()

static int _wrap_sfont ( lua_State *  L)
static

Definition at line 9557 of file plplotluacLUA_wrap.c.

◆ _wrap_shade()

static int _wrap_shade ( lua_State *  L)
static

Definition at line 9898 of file plplotluacLUA_wrap.c.

◆ _wrap_shades()

static int _wrap_shades ( lua_State *  L)
static

Definition at line 9582 of file plplotluacLUA_wrap.c.

◆ _wrap_slabelfunc()

static int _wrap_slabelfunc ( lua_State *  L)
static

Definition at line 10217 of file plplotluacLUA_wrap.c.

◆ _wrap_smaj()

static int _wrap_smaj ( lua_State *  L)
static

Definition at line 10261 of file plplotluacLUA_wrap.c.

◆ _wrap_smin()

static int _wrap_smin ( lua_State *  L)
static

Definition at line 10283 of file plplotluacLUA_wrap.c.

◆ _wrap_sori()

static int _wrap_sori ( lua_State *  L)
static

Definition at line 10305 of file plplotluacLUA_wrap.c.

◆ _wrap_spage()

static int _wrap_spage ( lua_State *  L)
static

Definition at line 10324 of file plplotluacLUA_wrap.c.

◆ _wrap_spal0()

static int _wrap_spal0 ( lua_State *  L)
static

Definition at line 10358 of file plplotluacLUA_wrap.c.

◆ _wrap_spal1()

static int _wrap_spal1 ( lua_State *  L)
static

Definition at line 10377 of file plplotluacLUA_wrap.c.

◆ _wrap_spause()

static int _wrap_spause ( lua_State *  L)
static

Definition at line 10399 of file plplotluacLUA_wrap.c.

◆ _wrap_sstrm()

static int _wrap_sstrm ( lua_State *  L)
static

Definition at line 10418 of file plplotluacLUA_wrap.c.

◆ _wrap_ssub()

static int _wrap_ssub ( lua_State *  L)
static

Definition at line 10437 of file plplotluacLUA_wrap.c.

◆ _wrap_ssym()

static int _wrap_ssym ( lua_State *  L)
static

Definition at line 10459 of file plplotluacLUA_wrap.c.

◆ _wrap_star()

static int _wrap_star ( lua_State *  L)
static

Definition at line 10481 of file plplotluacLUA_wrap.c.

◆ _wrap_start()

static int _wrap_start ( lua_State *  L)
static

Definition at line 10503 of file plplotluacLUA_wrap.c.

◆ _wrap_stransform()

static int _wrap_stransform ( lua_State *  L)
static

Definition at line 10528 of file plplotluacLUA_wrap.c.

◆ _wrap_string()

static int _wrap_string ( lua_State *  L)
static

Definition at line 10569 of file plplotluacLUA_wrap.c.

◆ _wrap_string3()

static int _wrap_string3 ( lua_State *  L)
static

Definition at line 10621 of file plplotluacLUA_wrap.c.

◆ _wrap_stripa()

static int _wrap_stripa ( lua_State *  L)
static

Definition at line 10691 of file plplotluacLUA_wrap.c.

◆ _wrap_stripc()

static int _wrap_stripc ( lua_State *  L)
static

Definition at line 10719 of file plplotluacLUA_wrap.c.

◆ _wrap_stripd()

static int _wrap_stripd ( lua_State *  L)
static

Definition at line 10877 of file plplotluacLUA_wrap.c.

◆ _wrap_styl()

static int _wrap_styl ( lua_State *  L)
static

Definition at line 10896 of file plplotluacLUA_wrap.c.

◆ _wrap_surf3d()

static int _wrap_surf3d ( lua_State *  L)
static

Definition at line 7670 of file plplotluacLUA_wrap.c.

◆ _wrap_surf3dl()

static int _wrap_surf3dl ( lua_State *  L)
static

Definition at line 7770 of file plplotluacLUA_wrap.c.

◆ _wrap_svect()

static int _wrap_svect ( lua_State *  L)
static

Definition at line 10944 of file plplotluacLUA_wrap.c.

◆ _wrap_svpa()

static int _wrap_svpa ( lua_State *  L)
static

Definition at line 11016 of file plplotluacLUA_wrap.c.

◆ _wrap_sxax()

static int _wrap_sxax ( lua_State *  L)
static

Definition at line 11044 of file plplotluacLUA_wrap.c.

◆ _wrap_syax()

static int _wrap_syax ( lua_State *  L)
static

Definition at line 11066 of file plplotluacLUA_wrap.c.

◆ _wrap_sym()

static int _wrap_sym ( lua_State *  L)
static

Definition at line 11088 of file plplotluacLUA_wrap.c.

◆ _wrap_szax()

static int _wrap_szax ( lua_State *  L)
static

Definition at line 11140 of file plplotluacLUA_wrap.c.

◆ _wrap_text()

static int _wrap_text ( lua_State *  L)
static

Definition at line 11162 of file plplotluacLUA_wrap.c.

◆ _wrap_timefmt()

static int _wrap_timefmt ( lua_State *  L)
static

Definition at line 11178 of file plplotluacLUA_wrap.c.

◆ _wrap_vasp()

static int _wrap_vasp ( lua_State *  L)
static

Definition at line 11197 of file plplotluacLUA_wrap.c.

◆ _wrap_vect()

static int _wrap_vect ( lua_State *  L)
static

Definition at line 11216 of file plplotluacLUA_wrap.c.

◆ _wrap_vpas()

static int _wrap_vpas ( lua_State *  L)
static

Definition at line 11524 of file plplotluacLUA_wrap.c.

◆ _wrap_vpor()

static int _wrap_vpor ( lua_State *  L)
static

Definition at line 11555 of file plplotluacLUA_wrap.c.

◆ _wrap_vsta()

static int _wrap_vsta ( lua_State *  L)
static

Definition at line 11583 of file plplotluacLUA_wrap.c.

◆ _wrap_w3d()

static int _wrap_w3d ( lua_State *  L)
static

Definition at line 11599 of file plplotluacLUA_wrap.c.

◆ _wrap_warn()

static int _wrap_warn ( lua_State *  L)
static

Definition at line 12661 of file plplotluacLUA_wrap.c.

◆ _wrap_width()

static int _wrap_width ( lua_State *  L)
static

Definition at line 11648 of file plplotluacLUA_wrap.c.

◆ _wrap_wind()

static int _wrap_wind ( lua_State *  L)
static

Definition at line 11667 of file plplotluacLUA_wrap.c.

◆ _wrap_xormod()

static int _wrap_xormod ( lua_State *  L)
static

Definition at line 11695 of file plplotluacLUA_wrap.c.

◆ LUA_DECLARE_TYPEMAP_ARR_FN() [1/2]

LUA_DECLARE_TYPEMAP_ARR_FN ( double  ,
double   
)

◆ LUA_DECLARE_TYPEMAP_ARR_FN() [2/2]

LUA_DECLARE_TYPEMAP_ARR_FN ( int  ,
int   
)

◆ mapform()

void mapform ( PLINT  n,
PLFLT x,
PLFLT y 
)

Definition at line 3000 of file plplotluacLUA_wrap.c.

◆ myct() [1/2]

void myct ( PLFLT  x,
PLFLT  y,
PLFLT tx,
PLFLT ty,
void *  PL_UNUSEDpltr_data 
)

Definition at line 3121 of file plplotluacLUA_wrap.c.

◆ myct() [2/2]

void myct ( PLFLT  x,
PLFLT  y,
PLFLT tx,
PLFLT ty,
void *  pltr_data 
)

◆ mylabel() [1/2]

void mylabel ( PLINT  axis,
PLFLT  value,
char *  label,
PLINT  length,
PLPointer  data 
)

◆ mylabel() [2/2]

void mylabel ( PLINT  axis,
PLFLT  value,
char *  label,
PLINT  length,
PLPointer   PL_UNUSEDdata 
)

Definition at line 3163 of file plplotluacLUA_wrap.c.

◆ mypltr() [1/2]

void mypltr ( PLFLT  x,
PLFLT  y,
PLFLT tx,
PLFLT ty,
void *  PL_UNUSEDpltr_data 
)

Definition at line 3077 of file plplotluacLUA_wrap.c.

◆ mypltr() [2/2]

void mypltr ( PLFLT  x,
PLFLT  y,
PLFLT tx,
PLFLT ty,
void *  pltr_data 
)

◆ read_double_Matrix()

PLFLT ** read_double_Matrix ( lua_State *  L,
int  index,
int *  nx,
int *  ny 
)

Definition at line 2908 of file plplotluacLUA_wrap.c.

◆ swig_delete_PLGraphicsIn()

static void swig_delete_PLGraphicsIn ( void *  obj)
static

Definition at line 3833 of file plplotluacLUA_wrap.c.

◆ SWIG_get_ptr_array_fixed()

SWIGINTERN void** SWIG_get_ptr_array_fixed ( lua_State *  L,
int  index,
int  size,
swig_type_info type 
)

Definition at line 2863 of file plplotluacLUA_wrap.c.

◆ SWIG_get_ptr_array_var()

SWIGINTERN void** SWIG_get_ptr_array_var ( lua_State *  L,
int  index,
int *  size,
swig_type_info type 
)

Definition at line 2877 of file plplotluacLUA_wrap.c.

◆ SWIG_init()

SWIGEXPORT int SWIG_init ( lua_State *  L)

Definition at line 13401 of file plplotluacLUA_wrap.c.

◆ SWIG_init_user()

void SWIG_init_user ( lua_State *  L)

Definition at line 13479 of file plplotluacLUA_wrap.c.

◆ SWIG_InitializeModule()

SWIGRUNTIME void SWIG_InitializeModule ( void *  clientdata)

Definition at line 13209 of file plplotluacLUA_wrap.c.

◆ SWIG_itable_size()

SWIGINTERN int SWIG_itable_size ( lua_State *  L,
int  index 
)

Definition at line 2757 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_class_instance_details()

SWIGINTERN void SWIG_Lua_add_class_instance_details ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2019 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_class_static_details()

SWIGINTERN void SWIG_Lua_add_class_static_details ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2002 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_class_user_metamethod()

SWIGINTERN int SWIG_Lua_add_class_user_metamethod ( lua_State *  L,
swig_lua_class clss,
const int  metatable_index 
)

Definition at line 2162 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_class_user_metamethods()

SWIGINTERN void SWIG_Lua_add_class_user_metamethods ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2210 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_namespace_classes()

SWIGINTERN void SWIG_Lua_add_namespace_classes ( lua_State *  L,
swig_lua_namespace ns 
)

Definition at line 1364 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_namespace_details()

SWIGINTERN int SWIG_Lua_add_namespace_details ( lua_State *  L,
swig_lua_namespace ns 
)

Definition at line 1340 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_add_variable()

SWIGINTERN void SWIG_Lua_add_variable ( lua_State *  L,
const char *  name,
lua_CFunction  getFn,
lua_CFunction  setFn 
)

Definition at line 1985 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_AddMetatable()

SWIGINTERN void SWIG_Lua_AddMetatable ( lua_State *  L,
swig_type_info type 
)

Definition at line 2456 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_destruct()

SWIGINTERN int SWIG_Lua_class_destruct ( lua_State *  L)

Definition at line 1750 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_disown()

SWIGINTERN int SWIG_Lua_class_disown ( lua_State *  L)

Definition at line 1784 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_do_get()

SWIGINTERN int SWIG_Lua_class_do_get ( lua_State *  L,
swig_type_info type,
int SWIGUNUSED  first_arg,
int *  ret 
)

Definition at line 1584 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_do_get_item()

SWIGINTERN int SWIG_Lua_class_do_get_item ( lua_State *  L,
swig_type_info type,
int SWIGUNUSED  first_arg,
int *  ret 
)

Definition at line 1546 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_do_set()

SWIGINTERN int SWIG_Lua_class_do_set ( lua_State *  L,
swig_type_info type,
int  first_arg,
int *  ret 
)

Definition at line 1663 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_equal()

SWIGRUNTIME int SWIG_Lua_class_equal ( lua_State *  L)

Definition at line 1799 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_get()

SWIGINTERN int SWIG_Lua_class_get ( lua_State *  L)

Definition at line 1636 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_register()

SWIGINTERN void SWIG_Lua_class_register ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2383 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_register_instance()

SWIGINTERN void SWIG_Lua_class_register_instance ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2301 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_register_static()

SWIGINTERN void SWIG_Lua_class_register_static ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2267 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_set()

SWIGINTERN int SWIG_Lua_class_set ( lua_State *  L)

Definition at line 1725 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_class_tostring()

SWIGINTERN int SWIG_Lua_class_tostring ( lua_State *  L)

Definition at line 1771 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_ConvertPacked()

SWIGRUNTIME int SWIG_Lua_ConvertPacked ( lua_State *  L,
int  index,
void *  ptr,
size_t  size,
swig_type_info type 
)

Definition at line 2548 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_ConvertPtr()

SWIGRUNTIME int SWIG_Lua_ConvertPtr ( lua_State *  L,
int  index,
void **  ptr,
swig_type_info type,
int  flags 
)

Definition at line 2491 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_create_class_registry()

SWIGINTERN void SWIG_Lua_create_class_registry ( lua_State *  L)

Definition at line 1834 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_do_resolve_metamethod()

SWIGINTERN int SWIG_Lua_do_resolve_metamethod ( lua_State *  L,
const swig_lua_class clss,
int  metamethod_name_idx,
int  skip_check 
)

Definition at line 2090 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_dostring()

SWIGINTERN int SWIG_Lua_dostring ( lua_State *  L,
const char *  str 
)

Definition at line 2646 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_get_class_metatable()

SWIGINTERN void SWIG_Lua_get_class_metatable ( lua_State *  L,
const char *  cname 
)

Definition at line 1888 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_get_class_registry()

SWIGINTERN void SWIG_Lua_get_class_registry ( lua_State *  L)

Definition at line 1858 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_get_inheritable_metamethods()

SWIGINTERN void SWIG_Lua_get_inheritable_metamethods ( lua_State *  L)

Definition at line 1873 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_GetModule()

SWIGRUNTIME swig_module_info* SWIG_Lua_GetModule ( lua_State *  L)

Definition at line 1084 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_init_base_class()

SWIGINTERN void SWIG_Lua_init_base_class ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 1903 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_InstallConstants()

SWIGINTERN void SWIG_Lua_InstallConstants ( lua_State *  L,
swig_lua_const_info  constants[] 
)

Definition at line 2589 of file plplotluacLUA_wrap.c.

◆ SWIG_lua_isnilstring()

SWIGINTERN int SWIG_lua_isnilstring ( lua_State *  L,
int  idx 
)

Definition at line 3196 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_iterate_bases()

SWIGINTERN int SWIG_Lua_iterate_bases ( lua_State *  L,
swig_type_info *SWIGUNUSED  swig_type,
int  first_arg,
swig_lua_base_iterator_func  func,
int *const  ret 
)

Definition at line 1446 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_MustGetPtr()

SWIGRUNTIME void* SWIG_Lua_MustGetPtr ( lua_State *  L,
int  index,
swig_type_info type,
int  flags,
int  argnum,
const char *  func_name 
)

Definition at line 2525 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_namespace_get()

SWIGINTERN int SWIG_Lua_namespace_get ( lua_State *  L)

Definition at line 1265 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_namespace_register()

SWIGINTERN void SWIG_Lua_namespace_register ( lua_State *  L,
swig_lua_namespace ns,
int  reg 
)

Definition at line 1386 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_namespace_set()

SWIGINTERN int SWIG_Lua_namespace_set ( lua_State *  L)

Definition at line 1302 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_NewPackedObj()

SWIGRUNTIME void SWIG_Lua_NewPackedObj ( lua_State *  L,
void *  ptr,
size_t  size,
swig_type_info type 
)

Definition at line 2536 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_NewPointerObj()

SWIGRUNTIME void SWIG_Lua_NewPointerObj ( lua_State *  L,
void *  ptr,
swig_type_info type,
int  own 
)

Definition at line 2473 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_populate_inheritable_metamethods()

SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods ( lua_State *  L)

Definition at line 1814 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_pusherrstring()

SWIGRUNTIME void SWIG_Lua_pusherrstring ( lua_State *  L,
const char *  str 
)

Definition at line 919 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_pushferrstring()

SWIGRUNTIME void SWIG_Lua_pushferrstring ( lua_State *  L,
const char *  fmt,
  ... 
)

Definition at line 930 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_resolve_metamethod()

SWIGRUNTIME int SWIG_Lua_resolve_metamethod ( lua_State *  L)

Definition at line 2125 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_set_immutable()

SWIGINTERN int SWIG_Lua_set_immutable ( lua_State *  L)

Definition at line 1109 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_SetModule()

SWIGRUNTIME void SWIG_Lua_SetModule ( lua_State *  L,
swig_module_info module 
)

Definition at line 1095 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_type()

SWIGRUNTIME int SWIG_Lua_type ( lua_State *  L)

Definition at line 2576 of file plplotluacLUA_wrap.c.

◆ SWIG_Lua_typename()

const SWIGRUNTIME char* SWIG_Lua_typename ( lua_State *  L,
int  tp 
)

Definition at line 2562 of file plplotluacLUA_wrap.c.

◆ SWIG_MangledTypeQueryModule()

SWIGRUNTIME swig_type_info* SWIG_MangledTypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 544 of file plplotluacLUA_wrap.c.

◆ SWIG_PackData()

SWIGRUNTIME char* SWIG_PackData ( char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 618 of file plplotluacLUA_wrap.c.

◆ SWIG_PackDataName()

SWIGRUNTIME char* SWIG_PackDataName ( char *  buff,
void *  ptr,
size_t  sz,
const char *  name,
size_t  bsz 
)

Definition at line 686 of file plplotluacLUA_wrap.c.

◆ SWIG_PackVoidPtr()

SWIGRUNTIME char* SWIG_PackVoidPtr ( char *  buff,
void *  ptr,
const char *  name,
size_t  bsz 
)

Definition at line 662 of file plplotluacLUA_wrap.c.

◆ SWIG_PropagateClientData()

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 13357 of file plplotluacLUA_wrap.c.

◆ SWIG_read_ptr_array()

SWIGINTERN int SWIG_read_ptr_array ( lua_State *  L,
int  index,
void **  array,
int  size,
swig_type_info type 
)

Definition at line 2851 of file plplotluacLUA_wrap.c.

◆ SWIG_table_size()

SWIGINTERN int SWIG_table_size ( lua_State *  L,
int  index 
)

Definition at line 2770 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeCast()

SWIGRUNTIMEINLINE void* SWIG_TypeCast ( swig_cast_info ty,
void *  ptr,
int *  newmemory 
)

Definition at line 462 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeCheck()

SWIGRUNTIME swig_cast_info* SWIG_TypeCheck ( const char *  c,
swig_type_info ty 
)

Definition at line 408 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeCheckStruct()

SWIGRUNTIME swig_cast_info* SWIG_TypeCheckStruct ( swig_type_info from,
swig_type_info ty 
)

Definition at line 435 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeClientData()

SWIGRUNTIME void SWIG_TypeClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 514 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeCmp()

SWIGRUNTIME int SWIG_TypeCmp ( const char *  nb,
const char *  tb 
)

Definition at line 381 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeDynamicCast()

SWIGRUNTIME swig_type_info* SWIG_TypeDynamicCast ( swig_type_info ty,
void **  ptr 
)

Definition at line 470 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeEquiv()

SWIGRUNTIME int SWIG_TypeEquiv ( const char *  nb,
const char *  tb 
)

Definition at line 400 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeName()

const SWIGRUNTIMEINLINE char* SWIG_TypeName ( const swig_type_info ty)

Definition at line 484 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeNameComp()

SWIGRUNTIME int SWIG_TypeNameComp ( const char *  f1,
const char *  l1,
const char *  f2,
const char *  l2 
)

Definition at line 366 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeNewClientData()

SWIGRUNTIME void SWIG_TypeNewClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 530 of file plplotluacLUA_wrap.c.

◆ SWIG_TypePrettyName()

const SWIGRUNTIME char* SWIG_TypePrettyName ( const swig_type_info type)

Definition at line 493 of file plplotluacLUA_wrap.c.

◆ SWIG_TypeQueryModule()

SWIGRUNTIME swig_type_info* SWIG_TypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 589 of file plplotluacLUA_wrap.c.

◆ SWIG_UnpackData()

const SWIGRUNTIME char* SWIG_UnpackData ( const char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 634 of file plplotluacLUA_wrap.c.

◆ SWIG_UnpackDataName()

const SWIGRUNTIME char* SWIG_UnpackDataName ( const char *  c,
void *  ptr,
size_t  sz,
const char *  name 
)

Definition at line 701 of file plplotluacLUA_wrap.c.

◆ SWIG_UnpackVoidPtr()

const SWIGRUNTIME char* SWIG_UnpackVoidPtr ( const char *  c,
void **  ptr,
const char *  name 
)

Definition at line 673 of file plplotluacLUA_wrap.c.

◆ SWIG_write_ptr_array()

SWIGINTERN void SWIG_write_ptr_array ( lua_State *  L,
void **  array,
int  size,
swig_type_info type,
int  own 
)

Definition at line 2896 of file plplotluacLUA_wrap.c.

Variable Documentation

◆ _swigc__p_char

swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13125 of file plplotluacLUA_wrap.c.

◆ _swigc__p_double

swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13126 of file plplotluacLUA_wrap.c.

◆ _swigc__p_f_double_double__int

swig_cast_info _swigc__p_f_double_double__int[] = { {&_swigt__p_f_double_double__int, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13127 of file plplotluacLUA_wrap.c.

◆ _swigc__p_f_double_double_p_double_p_double_p_void__void

swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void[] = { {&_swigt__p_f_double_double_p_double_p_double_p_void__void, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13128 of file plplotluacLUA_wrap.c.

◆ _swigc__p_f_int_double_p_char_int_p_void__void

swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void[] = { {&_swigt__p_f_int_double_p_char_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13129 of file plplotluacLUA_wrap.c.

◆ _swigc__p_f_int_p_double_p_double__void

swig_cast_info _swigc__p_f_int_p_double_p_double__void[] = { {&_swigt__p_f_int_p_double_p_double__void, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13130 of file plplotluacLUA_wrap.c.

◆ _swigc__p_f_int_p_q_const__double_p_q_const__double__void

swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void[] = { {&_swigt__p_f_int_p_q_const__double_p_q_const__double__void, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13131 of file plplotluacLUA_wrap.c.

◆ _swigc__p_int

swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13132 of file plplotluacLUA_wrap.c.

◆ _swigc__p_p_char

swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13133 of file plplotluacLUA_wrap.c.

◆ _swigc__p_p_double

swig_cast_info _swigc__p_p_double[] = { {&_swigt__p_p_double, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13134 of file plplotluacLUA_wrap.c.

◆ _swigc__p_PLGraphicsIn

swig_cast_info _swigc__p_PLGraphicsIn[] = { {&_swigt__p_PLGraphicsIn, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13124 of file plplotluacLUA_wrap.c.

◆ _swigc__p_unsigned_int

swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 13135 of file plplotluacLUA_wrap.c.

◆ _swigt__p_char

swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}
static

Definition at line 13097 of file plplotluacLUA_wrap.c.

◆ _swigt__p_double

swig_type_info _swigt__p_double = {"_p_double", "double *|PLFLT *", 0, 0, (void*)0, 0}
static

Definition at line 13098 of file plplotluacLUA_wrap.c.

◆ _swigt__p_f_double_double__int

swig_type_info _swigt__p_f_double_double__int = {"_p_f_double_double__int", "defined_func|int (*)(double,double)", 0, 0, (void*)0, 0}
static

Definition at line 13099 of file plplotluacLUA_wrap.c.

◆ _swigt__p_f_double_double_p_double_p_double_p_void__void

swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void = {"_p_f_double_double_p_double_p_double_p_void__void", "ct_func|pltr_func|void (*)(double,double,double *,double *,void *)", 0, 0, (void*)0, 0}
static

Definition at line 13100 of file plplotluacLUA_wrap.c.

◆ _swigt__p_f_int_double_p_char_int_p_void__void

swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void = {"_p_f_int_double_p_char_int_p_void__void", "void (*)(int,double,char *,int,void *)|label_func", 0, 0, (void*)0, 0}
static

Definition at line 13101 of file plplotluacLUA_wrap.c.

◆ _swigt__p_f_int_p_double_p_double__void

swig_type_info _swigt__p_f_int_p_double_p_double__void = {"_p_f_int_p_double_p_double__void", "mapform_func|void (*)(int,double *,double *)", 0, 0, (void*)0, 0}
static

Definition at line 13102 of file plplotluacLUA_wrap.c.

◆ _swigt__p_f_int_p_q_const__double_p_q_const__double__void

swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void = {"_p_f_int_p_q_const__double_p_q_const__double__void", "void (*)(int,double const *,double const *)|fill_func", 0, 0, (void*)0, 0}
static

Definition at line 13103 of file plplotluacLUA_wrap.c.

◆ _swigt__p_int

swig_type_info _swigt__p_int = {"_p_int", "PLBOOL *|int *|PLINT *", 0, 0, (void*)0, 0}
static

Definition at line 13104 of file plplotluacLUA_wrap.c.

◆ _swigt__p_p_char

swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}
static

Definition at line 13105 of file plplotluacLUA_wrap.c.

◆ _swigt__p_p_double

swig_type_info _swigt__p_p_double = {"_p_p_double", "PLFLT **|double **", 0, 0, (void*)0, 0}
static

Definition at line 13106 of file plplotluacLUA_wrap.c.

◆ _swigt__p_PLGraphicsIn

swig_type_info _swigt__p_PLGraphicsIn = {"_p_PLGraphicsIn", "PLGraphicsIn *", 0, 0, (void*)&_wrap_class_PLGraphicsIn, 0}
static

Definition at line 13096 of file plplotluacLUA_wrap.c.

◆ _swigt__p_unsigned_int

swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *|PLUNICODE *", 0, 0, (void*)0, 0}
static

Definition at line 13107 of file plplotluacLUA_wrap.c.

◆ _wrap_class_PLGraphicsIn

◆ Alen

PLINT Alen = 0
static

Definition at line 2745 of file plplotluacLUA_wrap.c.

◆ mapform_funcstr

char mapform_funcstr[255]
static

Definition at line 2998 of file plplotluacLUA_wrap.c.

◆ myct_funcstr

char myct_funcstr[255]
static

Definition at line 3117 of file plplotluacLUA_wrap.c.

◆ myL

lua_State* myL = NULL
static

Definition at line 2997 of file plplotluacLUA_wrap.c.

◆ mylabel_funcstr

char mylabel_funcstr[255]
static

Definition at line 3161 of file plplotluacLUA_wrap.c.

◆ mypltr_funcstr

char mypltr_funcstr[255]
static

Definition at line 3073 of file plplotluacLUA_wrap.c.

◆ swig_cast_initial

◆ SWIG_LUACODE

const char* SWIG_LUACODE
Initial value:
=
"\n"
" pl = plplotluac"

Definition at line 13475 of file plplotluacLUA_wrap.c.

◆ swig_module

swig_module_info swig_module = {swig_types, 12, 0, 0, 0, 0}
static

Definition at line 2684 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_attributes

◆ swig_PLGraphicsIn_base_names

const char* swig_PLGraphicsIn_base_names[] = {0}
static

Definition at line 3889 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_bases

swig_lua_class* swig_PLGraphicsIn_bases[] = {0}
static

Definition at line 3888 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_meta

swig_lua_method swig_PLGraphicsIn_meta[]
static
Initial value:
= {
{0,0}
}

Definition at line 3863 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_methods

swig_lua_method swig_PLGraphicsIn_methods[]
static
Initial value:
= {
{0,0}
}

Definition at line 3860 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_Sf_SwigStatic

◆ swig_PLGraphicsIn_Sf_SwigStatic_attributes

swig_lua_attribute swig_PLGraphicsIn_Sf_SwigStatic_attributes[]
static
Initial value:
= {
{0,0,0}
}

Definition at line 3867 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_Sf_SwigStatic_classes

swig_lua_class* swig_PLGraphicsIn_Sf_SwigStatic_classes[]
static
Initial value:
= {
0
}

Definition at line 3876 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_Sf_SwigStatic_constants

swig_lua_const_info swig_PLGraphicsIn_Sf_SwigStatic_constants[]
static
Initial value:
= {
{0,0,0,0,0,0}
}

Definition at line 3870 of file plplotluacLUA_wrap.c.

◆ swig_PLGraphicsIn_Sf_SwigStatic_methods

swig_lua_method swig_PLGraphicsIn_Sf_SwigStatic_methods[]
static
Initial value:
= {
{0,0}
}

Definition at line 3873 of file plplotluacLUA_wrap.c.

◆ swig_SwigModule

◆ swig_SwigModule_attributes

swig_lua_attribute swig_SwigModule_attributes[]
static
Initial value:
= {
{0,0,0}
}

Definition at line 12703 of file plplotluacLUA_wrap.c.

◆ swig_SwigModule_classes

swig_lua_class* swig_SwigModule_classes[]
static
Initial value:

Definition at line 13074 of file plplotluacLUA_wrap.c.

◆ swig_SwigModule_constants

swig_lua_const_info swig_SwigModule_constants[]
static

Definition at line 12706 of file plplotluacLUA_wrap.c.

◆ swig_SwigModule_methods

swig_lua_method swig_SwigModule_methods[]
static

Definition at line 12894 of file plplotluacLUA_wrap.c.

◆ swig_SwigModule_namespaces

swig_lua_namespace* swig_SwigModule_namespaces[]
static
Initial value:
= {
0
}

Definition at line 13078 of file plplotluacLUA_wrap.c.

◆ swig_type_initial

◆ swig_types

swig_type_info* swig_types[13]
static

Definition at line 2683 of file plplotluacLUA_wrap.c.

◆ Xlen

PLINT Xlen = 0
static

Definition at line 2746 of file plplotluacLUA_wrap.c.

◆ Ylen

PLINT Ylen = 0
static

Definition at line 2746 of file plplotluacLUA_wrap.c.

_wrap_PLGraphicsIn_pY_set
static int _wrap_PLGraphicsIn_pY_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3566
_wrap_PLGraphicsIn_button_get
static int _wrap_PLGraphicsIn_button_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3385
_wrap_PLGraphicsIn_wY_set
static int _wrap_PLGraphicsIn_wY_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3766
swig_SwigModule_namespaces
static swig_lua_namespace * swig_SwigModule_namespaces[]
Definition: plplotluacLUA_wrap.c:13078
_swigc__p_f_double_double__int
static swig_cast_info _swigc__p_f_double_double__int[]
Definition: plplotluacLUA_wrap.c:13127
_wrap_PLGraphicsIn_subwindow_get
static int _wrap_PLGraphicsIn_subwindow_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3435
_swigc__p_PLGraphicsIn
static swig_cast_info _swigc__p_PLGraphicsIn[]
Definition: plplotluacLUA_wrap.c:13124
swig_SwigModule_attributes
static swig_lua_attribute swig_SwigModule_attributes[]
Definition: plplotluacLUA_wrap.c:12703
_wrap_PLGraphicsIn_dY_set
static int _wrap_PLGraphicsIn_dY_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3666
swig_SwigModule_classes
static swig_lua_class * swig_SwigModule_classes[]
Definition: plplotluacLUA_wrap.c:13074
_swigt__p_char
static swig_type_info _swigt__p_char
Definition: plplotluacLUA_wrap.c:13097
_wrap_PLGraphicsIn_keysym_set
static int _wrap_PLGraphicsIn_keysym_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3307
SWIG_Lua_pushferrstring
SWIGRUNTIME void SWIG_Lua_pushferrstring(lua_State *L, const char *fmt,...)
Definition: plplotluacLUA_wrap.c:930
_wrap_PLGraphicsIn_subwindow_set
static int _wrap_PLGraphicsIn_subwindow_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3409
_wrap_PLGraphicsIn_pX_get
static int _wrap_PLGraphicsIn_pX_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3542
_swigt__p_int
static swig_type_info _swigt__p_int
Definition: plplotluacLUA_wrap.c:13104
_wrap_PLGraphicsIn_dX_set
static int _wrap_PLGraphicsIn_dX_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3616
_wrap_PLGraphicsIn_wX_get
static int _wrap_PLGraphicsIn_wX_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3742
_wrap_PLGraphicsIn_state_set
static int _wrap_PLGraphicsIn_state_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3256
swig_SwigModule_constants
static swig_lua_const_info swig_SwigModule_constants[]
Definition: plplotluacLUA_wrap.c:12706
_swigt__p_double
static swig_type_info _swigt__p_double
Definition: plplotluacLUA_wrap.c:13098
_wrap_PLGraphicsIn_type_get
static int _wrap_PLGraphicsIn_type_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3232
_swigt__p_p_double
static swig_type_info _swigt__p_p_double
Definition: plplotluacLUA_wrap.c:13106
_swigt__p_f_int_p_double_p_double__void
static swig_type_info _swigt__p_f_int_p_double_p_double__void
Definition: plplotluacLUA_wrap.c:13102
_swigt__p_p_char
static swig_type_info _swigt__p_p_char
Definition: plplotluacLUA_wrap.c:13105
_wrap_PLGraphicsIn_dY_get
static int _wrap_PLGraphicsIn_dY_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3692
_wrap_PLGraphicsIn_wY_get
static int _wrap_PLGraphicsIn_wY_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3792
_wrap_PLGraphicsIn_type_set
static int _wrap_PLGraphicsIn_type_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3206
_swigc__p_f_double_double_p_double_p_double_p_void__void
static swig_cast_info _swigc__p_f_double_double_p_double_p_double_p_void__void[]
Definition: plplotluacLUA_wrap.c:13128
_swigt__p_PLGraphicsIn
static swig_type_info _swigt__p_PLGraphicsIn
Definition: plplotluacLUA_wrap.c:13096
_swigc__p_double
static swig_cast_info _swigc__p_double[]
Definition: plplotluacLUA_wrap.c:13126
_swigt__p_f_double_double_p_double_p_double_p_void__void
static swig_type_info _swigt__p_f_double_double_p_double_p_double_p_void__void
Definition: plplotluacLUA_wrap.c:13100
_wrap_PLGraphicsIn_wX_set
static int _wrap_PLGraphicsIn_wX_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3716
_swigc__p_f_int_p_double_p_double__void
static swig_cast_info _swigc__p_f_int_p_double_p_double__void[]
Definition: plplotluacLUA_wrap.c:13130
_swigt__p_f_int_double_p_char_int_p_void__void
static swig_type_info _swigt__p_f_int_double_p_char_int_p_void__void
Definition: plplotluacLUA_wrap.c:13101
swig_PLGraphicsIn_Sf_SwigStatic_classes
static swig_lua_class * swig_PLGraphicsIn_Sf_SwigStatic_classes[]
Definition: plplotluacLUA_wrap.c:3876
swig_PLGraphicsIn_Sf_SwigStatic_methods
static swig_lua_method swig_PLGraphicsIn_Sf_SwigStatic_methods[]
Definition: plplotluacLUA_wrap.c:3873
_wrap_PLGraphicsIn_string_get
static int _wrap_PLGraphicsIn_string_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3492
_swigt__p_unsigned_int
static swig_type_info _swigt__p_unsigned_int
Definition: plplotluacLUA_wrap.c:13107
_swigc__p_p_double
static swig_cast_info _swigc__p_p_double[]
Definition: plplotluacLUA_wrap.c:13134
_wrap_PLGraphicsIn_button_set
static int _wrap_PLGraphicsIn_button_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3358
_swigt__p_f_double_double__int
static swig_type_info _swigt__p_f_double_double__int
Definition: plplotluacLUA_wrap.c:13099
_swigt__p_f_int_p_q_const__double_p_q_const__double__void
static swig_type_info _swigt__p_f_int_p_q_const__double_p_q_const__double__void
Definition: plplotluacLUA_wrap.c:13103
_swigc__p_char
static swig_cast_info _swigc__p_char[]
Definition: plplotluacLUA_wrap.c:13125
_wrap_PLGraphicsIn_state_get
static int _wrap_PLGraphicsIn_state_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3283
_wrap_class_PLGraphicsIn
static swig_lua_class _wrap_class_PLGraphicsIn
Definition: plplotluacLUA_wrap.c:3890
_swigc__p_p_char
static swig_cast_info _swigc__p_p_char[]
Definition: plplotluacLUA_wrap.c:13133
swig_PLGraphicsIn_Sf_SwigStatic_constants
static swig_lua_const_info swig_PLGraphicsIn_Sf_SwigStatic_constants[]
Definition: plplotluacLUA_wrap.c:3870
swig_SwigModule_methods
static swig_lua_method swig_SwigModule_methods[]
Definition: plplotluacLUA_wrap.c:12894
_swigc__p_f_int_double_p_char_int_p_void__void
static swig_cast_info _swigc__p_f_int_double_p_char_int_p_void__void[]
Definition: plplotluacLUA_wrap.c:13129
_wrap_PLGraphicsIn_string_set
static int _wrap_PLGraphicsIn_string_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3459
_swigc__p_f_int_p_q_const__double_p_q_const__double__void
static swig_cast_info _swigc__p_f_int_p_q_const__double_p_q_const__double__void[]
Definition: plplotluacLUA_wrap.c:13131
swig_PLGraphicsIn_Sf_SwigStatic_attributes
static swig_lua_attribute swig_PLGraphicsIn_Sf_SwigStatic_attributes[]
Definition: plplotluacLUA_wrap.c:3867
_swigc__p_int
static swig_cast_info _swigc__p_int[]
Definition: plplotluacLUA_wrap.c:13132
SWIG_Lua_typename
const SWIGRUNTIME char * SWIG_Lua_typename(lua_State *L, int tp)
Definition: plplotluacLUA_wrap.c:2562
_wrap_PLGraphicsIn_pX_set
static int _wrap_PLGraphicsIn_pX_set(lua_State *L)
Definition: plplotluacLUA_wrap.c:3516
_wrap_PLGraphicsIn_pY_get
static int _wrap_PLGraphicsIn_pY_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3592
_wrap_PLGraphicsIn_dX_get
static int _wrap_PLGraphicsIn_dX_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3642
_swigc__p_unsigned_int
static swig_cast_info _swigc__p_unsigned_int[]
Definition: plplotluacLUA_wrap.c:13135
_wrap_PLGraphicsIn_keysym_get
static int _wrap_PLGraphicsIn_keysym_get(lua_State *L)
Definition: plplotluacLUA_wrap.c:3334