PLplot  5.9.9
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
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_method
 
struct  swig_lua_attribute
 
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_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_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 lua_rawlen   lua_strlen
 
#define lua_pushglobaltable(L)   lua_pushvalue(L, LUA_GLOBALSINDEX)
 
#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)) { lua_pushstring(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_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 struct swig_lua_class swig_lua_class
 
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 voidSWIG_TypeCast (swig_cast_info *ty, void *ptr, int *newmemory)
 
SWIGRUNTIME swig_type_infoSWIG_TypeDynamicCast (swig_type_info *ty, void **ptr)
 
SWIGRUNTIMEINLINE const char * SWIG_TypeName (const swig_type_info *ty)
 
SWIGRUNTIME const 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)
 
SWIGRUNTIME const 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)
 
SWIGRUNTIME const 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)
 
SWIGRUNTIME const char * SWIG_UnpackDataName (const char *c, void *ptr, size_t sz, const char *name)
 
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_module_get (lua_State *L)
 
SWIGINTERN int SWIG_Lua_module_set (lua_State *L)
 
SWIGINTERN void SWIG_Lua_module_begin (lua_State *L, const char *name)
 
SWIGINTERN void SWIG_Lua_module_end (lua_State *L)
 
SWIGINTERN void SWIG_Lua_module_add_variable (lua_State *L, const char *name, lua_CFunction getFn, lua_CFunction setFn)
 
SWIGINTERN void SWIG_Lua_module_add_function (lua_State *L, const char *name, lua_CFunction fn)
 
SWIGINTERN int SWIG_Lua_class_get (lua_State *L)
 
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)
 
SWIGINTERN void SWIG_Lua_get_class_registry (lua_State *L)
 
SWIGINTERN void SWIG_Lua_get_class_metatable (lua_State *L, const char *cname)
 
SWIGINTERN void SWIG_Lua_add_class_variable (lua_State *L, const char *name, lua_CFunction getFn, lua_CFunction setFn)
 
SWIGINTERN void SWIG_Lua_add_class_details (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_init_base_class (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_class_register (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 voidSWIG_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)
 
SWIGRUNTIME const char * SWIG_Lua_typename (lua_State *L, int tp)
 
SWIGRUNTIME int SWIG_Lua_type (lua_State *L)
 
SWIGRUNTIME int SWIG_Lua_equal (lua_State *L)
 
SWIGINTERN void SWIG_Lua_InstallConstants (lua_State *L, swig_lua_const_info constants[])
 
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)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (schar, signed char)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (uchar, unsigned char)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (int, int)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (uint, unsigned int)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (short, short)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (ushort, unsigned short)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (long, long)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (ulong, unsigned long)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (float, float)
 
 SWIG_DECLARE_TYPEMAP_ARR_FN (double, double)
 
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)
 
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 _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_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_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 label_funcstr [255]
 
static swig_lua_method swig_PLGraphicsIn_methods []
 
static swig_lua_attribute swig_PLGraphicsIn_attributes []
 
static swig_lua_classswig_PLGraphicsIn_bases [] = {0}
 
static const char * swig_PLGraphicsIn_base_names [] = {0}
 
static swig_lua_class _wrap_class_PLGraphicsIn = { "PLGraphicsIn", &SWIGTYPE_p_PLGraphicsIn,_wrap_new_PLGraphicsIn, swig_delete_PLGraphicsIn, swig_PLGraphicsIn_methods, swig_PLGraphicsIn_attributes, swig_PLGraphicsIn_bases, swig_PLGraphicsIn_base_names }
 
static struct luaL_Reg swig_commands []
 
static swig_lua_var_info swig_variables []
 
static swig_lua_const_info swig_constants []
 
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

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

Definition at line 1640 of file plplotluacLUA_wrap.c.

#define LUA_DECLARE_TYPEMAP_ARR_FN (   NAME,
  TYPE 
)

Definition at line 1645 of file plplotluacLUA_wrap.c.

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

Definition at line 1641 of file plplotluacLUA_wrap.c.

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

Definition at line 766 of file plplotluacLUA_wrap.c.

#define lua_rawlen   lua_strlen

Definition at line 756 of file plplotluacLUA_wrap.c.

#define SWIG_AddCast (   r)    (r)

Definition at line 294 of file plplotluacLUA_wrap.c.

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

Definition at line 270 of file plplotluacLUA_wrap.c.

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

Definition at line 273 of file plplotluacLUA_wrap.c.

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

Definition at line 1694 of file plplotluacLUA_wrap.c.

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

Definition at line 256 of file plplotluacLUA_wrap.c.

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 265 of file plplotluacLUA_wrap.c.

#define SWIG_BUFFER_SIZE   1024

Definition at line 163 of file plplotluacLUA_wrap.c.

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 168 of file plplotluacLUA_wrap.c.

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 259 of file plplotluacLUA_wrap.c.

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

Definition at line 864 of file plplotluacLUA_wrap.c.

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

Definition at line 295 of file plplotluacLUA_wrap.c.

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

Definition at line 853 of file plplotluacLUA_wrap.c.

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

Definition at line 844 of file plplotluacLUA_wrap.c.

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

Definition at line 841 of file plplotluacLUA_wrap.c.

#define SWIG_DECLARE_TYPEMAP_ARR_FN (   NAME,
  TYPE 
)

Definition at line 1723 of file plplotluacLUA_wrap.c.

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

Definition at line 271 of file plplotluacLUA_wrap.c.

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

Definition at line 274 of file plplotluacLUA_wrap.c.

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

Definition at line 1579 of file plplotluacLUA_wrap.c.

#define SWIG_ERROR   (-1)

Definition at line 254 of file plplotluacLUA_wrap.c.

#define SWIG_fail   {goto fail;}

Definition at line 857 of file plplotluacLUA_wrap.c.

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

Definition at line 858 of file plplotluacLUA_wrap.c.

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

Definition at line 862 of file plplotluacLUA_wrap.c.

#define SWIG_FREE_ARRAY (   PTR)    free(PTR)

Definition at line 1695 of file plplotluacLUA_wrap.c.

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

Definition at line 848 of file plplotluacLUA_wrap.c.

#define SWIG_init   luaopen_plplotluac

Definition at line 1632 of file plplotluacLUA_wrap.c.

#define SWIG_init_user   luaopen_plplotluac_user

Definition at line 1633 of file plplotluacLUA_wrap.c.

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

Definition at line 272 of file plplotluacLUA_wrap.c.

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

Definition at line 255 of file plplotluacLUA_wrap.c.

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

Definition at line 879 of file plplotluacLUA_wrap.c.

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

Definition at line 275 of file plplotluacLUA_wrap.c.

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

Definition at line 873 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_BINARY   5

Definition at line 778 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_CHAR   6

Definition at line 779 of file plplotluacLUA_wrap.c.

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

Definition at line 735 of file plplotluacLUA_wrap.c.

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

Definition at line 733 of file plplotluacLUA_wrap.c.

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

Definition at line 732 of file plplotluacLUA_wrap.c.

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

Definition at line 734 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_FLAVOR_ELUA   2

Definition at line 719 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_FLAVOR_ELUAC   3

Definition at line 720 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_FLAVOR_LUA   1

Definition at line 718 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_FLOAT   2

Definition at line 775 of file plplotluacLUA_wrap.c.

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

Definition at line 870 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_INT   1

Definition at line 774 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_MODULE_GLOBAL

Definition at line 13 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_POINTER   4

Definition at line 777 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_STRING   3

Definition at line 776 of file plplotluacLUA_wrap.c.

#define SWIG_LUA_TARGET   SWIG_LUA_FLAVOR_LUA

Definition at line 12 of file plplotluacLUA_wrap.c.

#define SWIG_LUACODE   luaopen_plplotluac_luacode

Definition at line 1635 of file plplotluacLUA_wrap.c.

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

Definition at line 1627 of file plplotluacLUA_wrap.c.

#define SWIG_MODULE_CLIENTDATA_TYPE   lua_State*

Definition at line 850 of file plplotluacLUA_wrap.c.

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

Definition at line 842 of file plplotluacLUA_wrap.c.

#define SWIG_name   "plplotluac"

Definition at line 1631 of file plplotluacLUA_wrap.c.

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

Definition at line 845 of file plplotluacLUA_wrap.c.

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 267 of file plplotluacLUA_wrap.c.

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 261 of file plplotluacLUA_wrap.c.

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

Definition at line 840 of file plplotluacLUA_wrap.c.

#define SWIG_OK   (0)

Definition at line 253 of file plplotluacLUA_wrap.c.

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 266 of file plplotluacLUA_wrap.c.

#define SWIG_POINTER_DISOWN   0x1

Definition at line 167 of file plplotluacLUA_wrap.c.

#define SWIG_POINTER_OWN   0x1

Definition at line 171 of file plplotluacLUA_wrap.c.

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 133 of file plplotluacLUA_wrap.c.

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

Definition at line 849 of file plplotluacLUA_wrap.c.

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 268 of file plplotluacLUA_wrap.c.

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 263 of file plplotluacLUA_wrap.c.

#define SWIG_TYPE_TABLE_NAME

Definition at line 141 of file plplotluacLUA_wrap.c.

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

Definition at line 1626 of file plplotluacLUA_wrap.c.

#define SWIGEXPORT

Definition at line 99 of file plplotluacLUA_wrap.c.

#define SWIGINLINE

Definition at line 38 of file plplotluacLUA_wrap.c.

#define SWIGINTERN   static SWIGUNUSED

Definition at line 73 of file plplotluacLUA_wrap.c.

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 78 of file plplotluacLUA_wrap.c.

#define SWIGLUA

Definition at line 11 of file plplotluacLUA_wrap.c.

#define SWIGRUNTIME   SWIGINTERN

Definition at line 154 of file plplotluacLUA_wrap.c.

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 158 of file plplotluacLUA_wrap.c.

#define SWIGSTDCALL

Definition at line 109 of file plplotluacLUA_wrap.c.

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 29 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_char   swig_types[1]

Definition at line 1613 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_double   swig_types[2]

Definition at line 1614 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_f_double_double__int   swig_types[3]

Definition at line 1615 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_f_double_double_p_double_p_double_p_void__void   swig_types[4]

Definition at line 1616 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_f_int_double_p_char_int_p_void__void   swig_types[5]

Definition at line 1617 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_f_int_p_double_p_double__void   swig_types[6]

Definition at line 1618 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_f_int_p_q_const__double_p_q_const__double__void   swig_types[7]

Definition at line 1619 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_int   swig_types[8]

Definition at line 1620 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_p_char   swig_types[9]

Definition at line 1621 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_p_double   swig_types[10]

Definition at line 1622 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_PLGraphicsIn   swig_types[0]

Definition at line 1612 of file plplotluacLUA_wrap.c.

#define SWIGTYPE_p_unsigned_int   swig_types[11]

Definition at line 1623 of file plplotluacLUA_wrap.c.

#define SWIGUNUSED

Definition at line 53 of file plplotluacLUA_wrap.c.

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 67 of file plplotluacLUA_wrap.c.

Typedef Documentation

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

Definition at line 2000 of file plplotluacLUA_wrap.c.

typedef PLINT( * defined_func)(PLFLT, PLFLT)

Definition at line 1997 of file plplotluacLUA_wrap.c.

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

Definition at line 2002 of file plplotluacLUA_wrap.c.

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

Definition at line 1998 of file plplotluacLUA_wrap.c.

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

Definition at line 2003 of file plplotluacLUA_wrap.c.

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

Definition at line 2001 of file plplotluacLUA_wrap.c.

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

Definition at line 1999 of file plplotluacLUA_wrap.c.

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

Definition at line 305 of file plplotluacLUA_wrap.c.

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

Definition at line 306 of file plplotluacLUA_wrap.c.

Function Documentation

SWIGINTERN void _SWIG_Lua_AddMetatable ( lua_State *  L,
swig_type_info type 
)

Definition at line 1387 of file plplotluacLUA_wrap.c.

static int _wrap_abort ( lua_State *  L)
static

Definition at line 11132 of file plplotluacLUA_wrap.c.

static int _wrap_adv ( lua_State *  L)
static

Definition at line 2844 of file plplotluacLUA_wrap.c.

static int _wrap_arc ( lua_State *  L)
static

Definition at line 2863 of file plplotluacLUA_wrap.c.

static int _wrap_axes ( lua_State *  L)
static

Definition at line 2903 of file plplotluacLUA_wrap.c.

static int _wrap_bin ( lua_State *  L)
static

Definition at line 2943 of file plplotluacLUA_wrap.c.

static int _wrap_bop ( lua_State *  L)
static

Definition at line 3038 of file plplotluacLUA_wrap.c.

static int _wrap_box ( lua_State *  L)
static

Definition at line 3054 of file plplotluacLUA_wrap.c.

static int _wrap_box3 ( lua_State *  L)
static

Definition at line 3088 of file plplotluacLUA_wrap.c.

static int _wrap_btime ( lua_State *  L)
static

Definition at line 2995 of file plplotluacLUA_wrap.c.

static int _wrap_calc_world ( lua_State *  L)
static

Definition at line 3140 of file plplotluacLUA_wrap.c.

static int _wrap_clear ( lua_State *  L)
static

Definition at line 3174 of file plplotluacLUA_wrap.c.

static int _wrap_col0 ( lua_State *  L)
static

Definition at line 3190 of file plplotluacLUA_wrap.c.

static int _wrap_col1 ( lua_State *  L)
static

Definition at line 3209 of file plplotluacLUA_wrap.c.

static int _wrap_colorbar ( lua_State *  L)
static

Definition at line 5502 of file plplotluacLUA_wrap.c.

static int _wrap_configtime ( lua_State *  L)
static

Definition at line 3228 of file plplotluacLUA_wrap.c.

static int _wrap_cont ( lua_State *  L)
static

Definition at line 3277 of file plplotluacLUA_wrap.c.

static int _wrap_cpstrm ( lua_State *  L)
static

Definition at line 3611 of file plplotluacLUA_wrap.c.

static int _wrap_ctime ( lua_State *  L)
static

Definition at line 3573 of file plplotluacLUA_wrap.c.

static int _wrap_env ( lua_State *  L)
static

Definition at line 3665 of file plplotluacLUA_wrap.c.

static int _wrap_env0 ( lua_State *  L)
static

Definition at line 3699 of file plplotluacLUA_wrap.c.

static int _wrap_eop ( lua_State *  L)
static

Definition at line 3733 of file plplotluacLUA_wrap.c.

static int _wrap_errx ( lua_State *  L)
static

Definition at line 3749 of file plplotluacLUA_wrap.c.

static int _wrap_erry ( lua_State *  L)
static

Definition at line 3816 of file plplotluacLUA_wrap.c.

static int _wrap_famadv ( lua_State *  L)
static

Definition at line 3883 of file plplotluacLUA_wrap.c.

static int _wrap_fill ( lua_State *  L)
static

Definition at line 3899 of file plplotluacLUA_wrap.c.

static int _wrap_fill3 ( lua_State *  L)
static

Definition at line 3948 of file plplotluacLUA_wrap.c.

static int _wrap_flush ( lua_State *  L)
static

Definition at line 4067 of file plplotluacLUA_wrap.c.

static int _wrap_font ( lua_State *  L)
static

Definition at line 4083 of file plplotluacLUA_wrap.c.

static int _wrap_fontld ( lua_State *  L)
static

Definition at line 4102 of file plplotluacLUA_wrap.c.

static int _wrap_gchr ( lua_State *  L)
static

Definition at line 4121 of file plplotluacLUA_wrap.c.

static int _wrap_gcmap1_range ( lua_State *  L)
static

Definition at line 7888 of file plplotluacLUA_wrap.c.

static int _wrap_gcol0 ( lua_State *  L)
static

Definition at line 4145 of file plplotluacLUA_wrap.c.

static int _wrap_gcol0a ( lua_State *  L)
static

Definition at line 4176 of file plplotluacLUA_wrap.c.

static int _wrap_gcolbg ( lua_State *  L)
static

Definition at line 4211 of file plplotluacLUA_wrap.c.

static int _wrap_gcolbga ( lua_State *  L)
static

Definition at line 4239 of file plplotluacLUA_wrap.c.

static int _wrap_gcompression ( lua_State *  L)
static

Definition at line 4271 of file plplotluacLUA_wrap.c.

static int _wrap_gdev ( lua_State *  L)
static

Definition at line 4291 of file plplotluacLUA_wrap.c.

static int _wrap_gdidev ( lua_State *  L)
static

Definition at line 4316 of file plplotluacLUA_wrap.c.

static int _wrap_gdiori ( lua_State *  L)
static

Definition at line 4348 of file plplotluacLUA_wrap.c.

static int _wrap_gdiplt ( lua_State *  L)
static

Definition at line 4368 of file plplotluacLUA_wrap.c.

static int _wrap_gfam ( lua_State *  L)
static

Definition at line 4400 of file plplotluacLUA_wrap.c.

static int _wrap_gfci ( lua_State *  L)
static

Definition at line 4428 of file plplotluacLUA_wrap.c.

static int _wrap_gfnam ( lua_State *  L)
static

Definition at line 4448 of file plplotluacLUA_wrap.c.

static int _wrap_gfont ( lua_State *  L)
static

Definition at line 4473 of file plplotluacLUA_wrap.c.

static int _wrap_glevel ( lua_State *  L)
static

Definition at line 4501 of file plplotluacLUA_wrap.c.

static int _wrap_gpage ( lua_State *  L)
static

Definition at line 4521 of file plplotluacLUA_wrap.c.

static int _wrap_gra ( lua_State *  L)
static

Definition at line 4561 of file plplotluacLUA_wrap.c.

static int _wrap_gradient ( lua_State *  L)
static

Definition at line 4015 of file plplotluacLUA_wrap.c.

static int _wrap_griddata ( lua_State *  L)
static

Definition at line 4577 of file plplotluacLUA_wrap.c.

static int _wrap_gspa ( lua_State *  L)
static

Definition at line 4728 of file plplotluacLUA_wrap.c.

static int _wrap_gstrm ( lua_State *  L)
static

Definition at line 4760 of file plplotluacLUA_wrap.c.

static int _wrap_gver ( lua_State *  L)
static

Definition at line 4780 of file plplotluacLUA_wrap.c.

static int _wrap_gvpd ( lua_State *  L)
static

Definition at line 4805 of file plplotluacLUA_wrap.c.

static int _wrap_gvpw ( lua_State *  L)
static

Definition at line 4837 of file plplotluacLUA_wrap.c.

static int _wrap_gxax ( lua_State *  L)
static

Definition at line 4869 of file plplotluacLUA_wrap.c.

static int _wrap_gyax ( lua_State *  L)
static

Definition at line 4893 of file plplotluacLUA_wrap.c.

static int _wrap_gzax ( lua_State *  L)
static

Definition at line 4917 of file plplotluacLUA_wrap.c.

static int _wrap_hist ( lua_State *  L)
static

Definition at line 4941 of file plplotluacLUA_wrap.c.

static int _wrap_hlsrgb ( lua_State *  L)
static

Definition at line 4984 of file plplotluacLUA_wrap.c.

static int _wrap_image ( lua_State *  L)
static

Definition at line 10588 of file plplotluacLUA_wrap.c.

static int _wrap_imagefr ( lua_State *  L)
static

Definition at line 10667 of file plplotluacLUA_wrap.c.

static int _wrap_init ( lua_State *  L)
static

Definition at line 5021 of file plplotluacLUA_wrap.c.

static int _wrap_join ( lua_State *  L)
static

Definition at line 5037 of file plplotluacLUA_wrap.c.

static int _wrap_lab ( lua_State *  L)
static

Definition at line 5065 of file plplotluacLUA_wrap.c.

static int _wrap_legend ( lua_State *  L)
static

Definition at line 5090 of file plplotluacLUA_wrap.c.

static int _wrap_lightsource ( lua_State *  L)
static

Definition at line 5752 of file plplotluacLUA_wrap.c.

static int _wrap_line ( lua_State *  L)
static

Definition at line 5777 of file plplotluacLUA_wrap.c.

static int _wrap_line3 ( lua_State *  L)
static

Definition at line 5826 of file plplotluacLUA_wrap.c.

static int _wrap_lsty ( lua_State *  L)
static

Definition at line 5893 of file plplotluacLUA_wrap.c.

static int _wrap_map ( lua_State *  L)
static

Definition at line 10475 of file plplotluacLUA_wrap.c.

static int _wrap_meridians ( lua_State *  L)
static

Definition at line 10530 of file plplotluacLUA_wrap.c.

static int _wrap_mesh ( lua_State *  L)
static

Definition at line 5912 of file plplotluacLUA_wrap.c.

static int _wrap_meshc ( lua_State *  L)
static

Definition at line 5997 of file plplotluacLUA_wrap.c.

static int _wrap_MinMax2dGrid ( lua_State *  L)
static

Definition at line 11030 of file plplotluacLUA_wrap.c.

static int _wrap_mkstrm ( lua_State *  L)
static

Definition at line 6097 of file plplotluacLUA_wrap.c.

static int _wrap_mtex ( lua_State *  L)
static

Definition at line 6117 of file plplotluacLUA_wrap.c.

static int _wrap_mtex3 ( lua_State *  L)
static

Definition at line 6148 of file plplotluacLUA_wrap.c.

static int _wrap_new_PLGraphicsIn ( lua_State *  L)
static

Definition at line 2751 of file plplotluacLUA_wrap.c.

static int _wrap_parseopts ( lua_State *  L)
static

Definition at line 6737 of file plplotluacLUA_wrap.c.

static int _wrap_pat ( lua_State *  L)
static

Definition at line 6806 of file plplotluacLUA_wrap.c.

static int _wrap_plClearOpts ( lua_State *  L)
static

Definition at line 10960 of file plplotluacLUA_wrap.c.

static int _wrap_plend ( lua_State *  L)
static

Definition at line 3633 of file plplotluacLUA_wrap.c.

static int _wrap_plend1 ( lua_State *  L)
static

Definition at line 3649 of file plplotluacLUA_wrap.c.

static int _wrap_plGetCursor ( lua_State *  L)
static

Definition at line 11087 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_button_get ( lua_State *  L)
static

Definition at line 2320 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_button_set ( lua_State *  L)
static

Definition at line 2293 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_dX_get ( lua_State *  L)
static

Definition at line 2577 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_dX_set ( lua_State *  L)
static

Definition at line 2551 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_dY_get ( lua_State *  L)
static

Definition at line 2627 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_dY_set ( lua_State *  L)
static

Definition at line 2601 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_keysym_get ( lua_State *  L)
static

Definition at line 2269 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_keysym_set ( lua_State *  L)
static

Definition at line 2242 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_pX_get ( lua_State *  L)
static

Definition at line 2477 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_pX_set ( lua_State *  L)
static

Definition at line 2451 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_pY_get ( lua_State *  L)
static

Definition at line 2527 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_pY_set ( lua_State *  L)
static

Definition at line 2501 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_state_get ( lua_State *  L)
static

Definition at line 2218 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_state_set ( lua_State *  L)
static

Definition at line 2191 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_string_get ( lua_State *  L)
static

Definition at line 2427 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_string_set ( lua_State *  L)
static

Definition at line 2394 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_subwindow_get ( lua_State *  L)
static

Definition at line 2370 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_subwindow_set ( lua_State *  L)
static

Definition at line 2344 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_type_get ( lua_State *  L)
static

Definition at line 2167 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_type_set ( lua_State *  L)
static

Definition at line 2141 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_wX_get ( lua_State *  L)
static

Definition at line 2677 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_wX_set ( lua_State *  L)
static

Definition at line 2651 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_wY_get ( lua_State *  L)
static

Definition at line 2727 of file plplotluacLUA_wrap.c.

static int _wrap_PLGraphicsIn_wY_set ( lua_State *  L)
static

Definition at line 2701 of file plplotluacLUA_wrap.c.

static int _wrap_plOptUsage ( lua_State *  L)
static

Definition at line 11014 of file plplotluacLUA_wrap.c.

static int _wrap_plot3d ( lua_State *  L)
static

Definition at line 6179 of file plplotluacLUA_wrap.c.

static int _wrap_plot3dc ( lua_State *  L)
static

Definition at line 6267 of file plplotluacLUA_wrap.c.

static int _wrap_plot3dcl ( lua_State *  L)
static

Definition at line 6367 of file plplotluacLUA_wrap.c.

static int _wrap_plResetOpts ( lua_State *  L)
static

Definition at line 10976 of file plplotluacLUA_wrap.c.

static int _wrap_plSetUsage ( lua_State *  L)
static

Definition at line 10992 of file plplotluacLUA_wrap.c.

static int _wrap_poin ( lua_State *  L)
static

Definition at line 6854 of file plplotluacLUA_wrap.c.

static int _wrap_poin3 ( lua_State *  L)
static

Definition at line 6906 of file plplotluacLUA_wrap.c.

static int _wrap_poly3 ( lua_State *  L)
static

Definition at line 6976 of file plplotluacLUA_wrap.c.

static int _wrap_prec ( lua_State *  L)
static

Definition at line 7064 of file plplotluacLUA_wrap.c.

static int _wrap_psty ( lua_State *  L)
static

Definition at line 7086 of file plplotluacLUA_wrap.c.

static int _wrap_ptex ( lua_State *  L)
static

Definition at line 7105 of file plplotluacLUA_wrap.c.

static int _wrap_ptex3 ( lua_State *  L)
static

Definition at line 7139 of file plplotluacLUA_wrap.c.

static int _wrap_randd ( lua_State *  L)
static

Definition at line 7188 of file plplotluacLUA_wrap.c.

static int _wrap_replot ( lua_State *  L)
static

Definition at line 7205 of file plplotluacLUA_wrap.c.

static int _wrap_rgbhls ( lua_State *  L)
static

Definition at line 7221 of file plplotluacLUA_wrap.c.

static int _wrap_schr ( lua_State *  L)
static

Definition at line 7258 of file plplotluacLUA_wrap.c.

static int _wrap_scmap0 ( lua_State *  L)
static

Definition at line 7280 of file plplotluacLUA_wrap.c.

static int _wrap_scmap0a ( lua_State *  L)
static

Definition at line 7348 of file plplotluacLUA_wrap.c.

static int _wrap_scmap0n ( lua_State *  L)
static

Definition at line 7434 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1 ( lua_State *  L)
static

Definition at line 7453 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1_range ( lua_State *  L)
static

Definition at line 7866 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1a ( lua_State *  L)
static

Definition at line 7521 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1l ( lua_State *  L)
static

Definition at line 7607 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1la ( lua_State *  L)
static

Definition at line 7718 of file plplotluacLUA_wrap.c.

static int _wrap_scmap1n ( lua_State *  L)
static

Definition at line 7847 of file plplotluacLUA_wrap.c.

static int _wrap_scol0 ( lua_State *  L)
static

Definition at line 7912 of file plplotluacLUA_wrap.c.

static int _wrap_scol0a ( lua_State *  L)
static

Definition at line 7940 of file plplotluacLUA_wrap.c.

static int _wrap_scolbg ( lua_State *  L)
static

Definition at line 7971 of file plplotluacLUA_wrap.c.

static int _wrap_scolbga ( lua_State *  L)
static

Definition at line 7996 of file plplotluacLUA_wrap.c.

static int _wrap_scolor ( lua_State *  L)
static

Definition at line 8024 of file plplotluacLUA_wrap.c.

static int _wrap_scompression ( lua_State *  L)
static

Definition at line 8043 of file plplotluacLUA_wrap.c.

static int _wrap_sdev ( lua_State *  L)
static

Definition at line 8062 of file plplotluacLUA_wrap.c.

static int _wrap_sdidev ( lua_State *  L)
static

Definition at line 8081 of file plplotluacLUA_wrap.c.

static int _wrap_sdimap ( lua_State *  L)
static

Definition at line 8109 of file plplotluacLUA_wrap.c.

static int _wrap_sdiori ( lua_State *  L)
static

Definition at line 8143 of file plplotluacLUA_wrap.c.

static int _wrap_sdiplt ( lua_State *  L)
static

Definition at line 8162 of file plplotluacLUA_wrap.c.

static int _wrap_sdiplz ( lua_State *  L)
static

Definition at line 8190 of file plplotluacLUA_wrap.c.

static int _wrap_seed ( lua_State *  L)
static

Definition at line 8218 of file plplotluacLUA_wrap.c.

static int _wrap_sesc ( lua_State *  L)
static

Definition at line 8238 of file plplotluacLUA_wrap.c.

static int _wrap_setcontlabelformat ( lua_State *  L)
static

Definition at line 2794 of file plplotluacLUA_wrap.c.

static int _wrap_setcontlabelparam ( lua_State *  L)
static

Definition at line 2816 of file plplotluacLUA_wrap.c.

static int _wrap_setopt ( lua_State *  L)
static

Definition at line 8257 of file plplotluacLUA_wrap.c.

static int _wrap_sfam ( lua_State *  L)
static

Definition at line 8280 of file plplotluacLUA_wrap.c.

static int _wrap_sfci ( lua_State *  L)
static

Definition at line 8305 of file plplotluacLUA_wrap.c.

static int _wrap_sfnam ( lua_State *  L)
static

Definition at line 8325 of file plplotluacLUA_wrap.c.

static int _wrap_sfont ( lua_State *  L)
static

Definition at line 8344 of file plplotluacLUA_wrap.c.

static int _wrap_shade ( lua_State *  L)
static

Definition at line 8685 of file plplotluacLUA_wrap.c.

static int _wrap_shades ( lua_State *  L)
static

Definition at line 8369 of file plplotluacLUA_wrap.c.

static int _wrap_slabelfunc ( lua_State *  L)
static

Definition at line 9004 of file plplotluacLUA_wrap.c.

static int _wrap_smaj ( lua_State *  L)
static

Definition at line 9048 of file plplotluacLUA_wrap.c.

static int _wrap_smin ( lua_State *  L)
static

Definition at line 9070 of file plplotluacLUA_wrap.c.

static int _wrap_sori ( lua_State *  L)
static

Definition at line 9092 of file plplotluacLUA_wrap.c.

static int _wrap_spage ( lua_State *  L)
static

Definition at line 9111 of file plplotluacLUA_wrap.c.

static int _wrap_spal0 ( lua_State *  L)
static

Definition at line 9145 of file plplotluacLUA_wrap.c.

static int _wrap_spal1 ( lua_State *  L)
static

Definition at line 9164 of file plplotluacLUA_wrap.c.

static int _wrap_spause ( lua_State *  L)
static

Definition at line 9186 of file plplotluacLUA_wrap.c.

static int _wrap_sstrm ( lua_State *  L)
static

Definition at line 9205 of file plplotluacLUA_wrap.c.

static int _wrap_ssub ( lua_State *  L)
static

Definition at line 9224 of file plplotluacLUA_wrap.c.

static int _wrap_ssym ( lua_State *  L)
static

Definition at line 9246 of file plplotluacLUA_wrap.c.

static int _wrap_star ( lua_State *  L)
static

Definition at line 9268 of file plplotluacLUA_wrap.c.

static int _wrap_start ( lua_State *  L)
static

Definition at line 9290 of file plplotluacLUA_wrap.c.

static int _wrap_stransform ( lua_State *  L)
static

Definition at line 9315 of file plplotluacLUA_wrap.c.

static int _wrap_string ( lua_State *  L)
static

Definition at line 9356 of file plplotluacLUA_wrap.c.

static int _wrap_string3 ( lua_State *  L)
static

Definition at line 9408 of file plplotluacLUA_wrap.c.

static int _wrap_stripa ( lua_State *  L)
static

Definition at line 9478 of file plplotluacLUA_wrap.c.

static int _wrap_stripc ( lua_State *  L)
static

Definition at line 9506 of file plplotluacLUA_wrap.c.

static int _wrap_stripd ( lua_State *  L)
static

Definition at line 9653 of file plplotluacLUA_wrap.c.

static int _wrap_styl ( lua_State *  L)
static

Definition at line 9672 of file plplotluacLUA_wrap.c.

static int _wrap_surf3d ( lua_State *  L)
static

Definition at line 6502 of file plplotluacLUA_wrap.c.

static int _wrap_surf3dl ( lua_State *  L)
static

Definition at line 6602 of file plplotluacLUA_wrap.c.

static int _wrap_svect ( lua_State *  L)
static

Definition at line 9720 of file plplotluacLUA_wrap.c.

static int _wrap_svpa ( lua_State *  L)
static

Definition at line 9773 of file plplotluacLUA_wrap.c.

static int _wrap_sxax ( lua_State *  L)
static

Definition at line 9801 of file plplotluacLUA_wrap.c.

static int _wrap_syax ( lua_State *  L)
static

Definition at line 9823 of file plplotluacLUA_wrap.c.

static int _wrap_sym ( lua_State *  L)
static

Definition at line 9845 of file plplotluacLUA_wrap.c.

static int _wrap_szax ( lua_State *  L)
static

Definition at line 9897 of file plplotluacLUA_wrap.c.

static int _wrap_text ( lua_State *  L)
static

Definition at line 9919 of file plplotluacLUA_wrap.c.

static int _wrap_timefmt ( lua_State *  L)
static

Definition at line 9935 of file plplotluacLUA_wrap.c.

static int _wrap_vasp ( lua_State *  L)
static

Definition at line 9954 of file plplotluacLUA_wrap.c.

static int _wrap_vect ( lua_State *  L)
static

Definition at line 9973 of file plplotluacLUA_wrap.c.

static int _wrap_vpas ( lua_State *  L)
static

Definition at line 10281 of file plplotluacLUA_wrap.c.

static int _wrap_vpor ( lua_State *  L)
static

Definition at line 10312 of file plplotluacLUA_wrap.c.

static int _wrap_vsta ( lua_State *  L)
static

Definition at line 10340 of file plplotluacLUA_wrap.c.

static int _wrap_w3d ( lua_State *  L)
static

Definition at line 10356 of file plplotluacLUA_wrap.c.

static int _wrap_warn ( lua_State *  L)
static

Definition at line 11111 of file plplotluacLUA_wrap.c.

static int _wrap_width ( lua_State *  L)
static

Definition at line 10405 of file plplotluacLUA_wrap.c.

static int _wrap_wind ( lua_State *  L)
static

Definition at line 10424 of file plplotluacLUA_wrap.c.

static int _wrap_xormod ( lua_State *  L)
static

Definition at line 10452 of file plplotluacLUA_wrap.c.

LUA_DECLARE_TYPEMAP_ARR_FN ( double  ,
double   
)
LUA_DECLARE_TYPEMAP_ARR_FN ( int  ,
int   
)
void mapform ( PLINT  n,
PLFLT x,
PLFLT y 
)

Definition at line 1937 of file plplotluacLUA_wrap.c.

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

Definition at line 2053 of file plplotluacLUA_wrap.c.

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

Definition at line 2095 of file plplotluacLUA_wrap.c.

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

Definition at line 2009 of file plplotluacLUA_wrap.c.

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

Definition at line 1847 of file plplotluacLUA_wrap.c.

SWIG_DECLARE_TYPEMAP_ARR_FN ( schar  ,
signed  char 
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( uchar  ,
unsigned  char 
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( int  ,
int   
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( uint  ,
unsigned  int 
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( short  ,
short   
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( ushort  ,
unsigned  short 
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( long  ,
long   
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( ulong  ,
unsigned  long 
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( float  ,
float   
)
SWIG_DECLARE_TYPEMAP_ARR_FN ( double  ,
double   
)
static void swig_delete_PLGraphicsIn ( void obj)
static

Definition at line 2768 of file plplotluacLUA_wrap.c.

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

Definition at line 1804 of file plplotluacLUA_wrap.c.

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

Definition at line 1818 of file plplotluacLUA_wrap.c.

SWIGEXPORT int SWIG_init ( lua_State *  L)

Definition at line 11780 of file plplotluacLUA_wrap.c.

void SWIG_init_user ( lua_State *  L)

Definition at line 11850 of file plplotluacLUA_wrap.c.

SWIGRUNTIME void SWIG_InitializeModule ( void clientdata)

Definition at line 11584 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_itable_size ( lua_State *  L,
int  index 
)

Definition at line 1698 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_add_class_details ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 1284 of file plplotluacLUA_wrap.c.

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

Definition at line 1267 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_class_destruct ( lua_State *  L)

Definition at line 1186 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_class_disown ( lua_State *  L)

Definition at line 1227 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_class_get ( lua_State *  L)

Definition at line 1089 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_class_register ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 1337 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_class_set ( lua_State *  L)

Definition at line 1139 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_class_tostring ( lua_State *  L)

Definition at line 1207 of file plplotluacLUA_wrap.c.

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

Definition at line 1475 of file plplotluacLUA_wrap.c.

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

Definition at line 1422 of file plplotluacLUA_wrap.c.

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

Definition at line 1587 of file plplotluacLUA_wrap.c.

SWIGRUNTIME int SWIG_Lua_equal ( lua_State *  L)

Definition at line 1512 of file plplotluacLUA_wrap.c.

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

Definition at line 1258 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_get_class_registry ( lua_State *  L)

Definition at line 1240 of file plplotluacLUA_wrap.c.

SWIGRUNTIME swig_module_info* SWIG_Lua_GetModule ( lua_State *  L)

Definition at line 889 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_init_base_class ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 1321 of file plplotluacLUA_wrap.c.

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

Definition at line 1533 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_lua_isnilstring ( lua_State *  L,
int  idx 
)

Definition at line 2131 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_module_add_function ( lua_State *  L,
const char *  name,
lua_CFunction  fn 
)

Definition at line 1079 of file plplotluacLUA_wrap.c.

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

Definition at line 1058 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_module_begin ( lua_State *  L,
const char *  name 
)

Definition at line 1023 of file plplotluacLUA_wrap.c.

SWIGINTERN void SWIG_Lua_module_end ( lua_State *  L)

Definition at line 1052 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_module_get ( lua_State *  L)

Definition at line 926 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_module_set ( lua_State *  L)

Definition at line 972 of file plplotluacLUA_wrap.c.

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 1451 of file plplotluacLUA_wrap.c.

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

Definition at line 1463 of file plplotluacLUA_wrap.c.

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

Definition at line 1404 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_Lua_set_immutable ( lua_State *  L)

Definition at line 914 of file plplotluacLUA_wrap.c.

SWIGRUNTIME void SWIG_Lua_SetModule ( lua_State *  L,
swig_module_info module 
)

Definition at line 900 of file plplotluacLUA_wrap.c.

SWIGRUNTIME int SWIG_Lua_type ( lua_State *  L)

Definition at line 1503 of file plplotluacLUA_wrap.c.

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

Definition at line 1489 of file plplotluacLUA_wrap.c.

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

Definition at line 524 of file plplotluacLUA_wrap.c.

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

Definition at line 598 of file plplotluacLUA_wrap.c.

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

Definition at line 666 of file plplotluacLUA_wrap.c.

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

Definition at line 642 of file plplotluacLUA_wrap.c.

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 11736 of file plplotluacLUA_wrap.c.

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

Definition at line 1792 of file plplotluacLUA_wrap.c.

SWIGINTERN int SWIG_table_size ( lua_State *  L,
int  index 
)

Definition at line 1711 of file plplotluacLUA_wrap.c.

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

Definition at line 442 of file plplotluacLUA_wrap.c.

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

Definition at line 388 of file plplotluacLUA_wrap.c.

SWIGRUNTIME swig_cast_info* SWIG_TypeCheckStruct ( swig_type_info from,
swig_type_info ty 
)

Definition at line 415 of file plplotluacLUA_wrap.c.

SWIGRUNTIME void SWIG_TypeClientData ( swig_type_info ti,
void clientdata 
)

Definition at line 494 of file plplotluacLUA_wrap.c.

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

Definition at line 361 of file plplotluacLUA_wrap.c.

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

Definition at line 450 of file plplotluacLUA_wrap.c.

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

Definition at line 380 of file plplotluacLUA_wrap.c.

SWIGRUNTIMEINLINE const char* SWIG_TypeName ( const swig_type_info ty)

Definition at line 464 of file plplotluacLUA_wrap.c.

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

Definition at line 346 of file plplotluacLUA_wrap.c.

SWIGRUNTIME void SWIG_TypeNewClientData ( swig_type_info ti,
void clientdata 
)

Definition at line 510 of file plplotluacLUA_wrap.c.

SWIGRUNTIME const char* SWIG_TypePrettyName ( const swig_type_info type)

Definition at line 473 of file plplotluacLUA_wrap.c.

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

Definition at line 569 of file plplotluacLUA_wrap.c.

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

Definition at line 614 of file plplotluacLUA_wrap.c.

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

Definition at line 681 of file plplotluacLUA_wrap.c.

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

Definition at line 653 of file plplotluacLUA_wrap.c.

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

Definition at line 1837 of file plplotluacLUA_wrap.c.

Variable Documentation

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

Definition at line 11500 of file plplotluacLUA_wrap.c.

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

Definition at line 11501 of file plplotluacLUA_wrap.c.

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 11502 of file plplotluacLUA_wrap.c.

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 11503 of file plplotluacLUA_wrap.c.

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 11504 of file plplotluacLUA_wrap.c.

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 11505 of file plplotluacLUA_wrap.c.

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 11506 of file plplotluacLUA_wrap.c.

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

Definition at line 11507 of file plplotluacLUA_wrap.c.

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

Definition at line 11508 of file plplotluacLUA_wrap.c.

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

Definition at line 11509 of file plplotluacLUA_wrap.c.

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

Definition at line 11499 of file plplotluacLUA_wrap.c.

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

Definition at line 11510 of file plplotluacLUA_wrap.c.

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

Definition at line 11472 of file plplotluacLUA_wrap.c.

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

Definition at line 11473 of file plplotluacLUA_wrap.c.

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 11474 of file plplotluacLUA_wrap.c.

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 11475 of file plplotluacLUA_wrap.c.

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 11476 of file plplotluacLUA_wrap.c.

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 11477 of file plplotluacLUA_wrap.c.

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 11478 of file plplotluacLUA_wrap.c.

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

Definition at line 11479 of file plplotluacLUA_wrap.c.

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

Definition at line 11480 of file plplotluacLUA_wrap.c.

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

Definition at line 11481 of file plplotluacLUA_wrap.c.

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

Definition at line 11471 of file plplotluacLUA_wrap.c.

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

Definition at line 11482 of file plplotluacLUA_wrap.c.

PLINT Alen = 0
static

Definition at line 1686 of file plplotluacLUA_wrap.c.

char label_funcstr[255]
static

Definition at line 2093 of file plplotluacLUA_wrap.c.

char mapform_funcstr[255]
static

Definition at line 1935 of file plplotluacLUA_wrap.c.

char myct_funcstr[255]
static

Definition at line 2049 of file plplotluacLUA_wrap.c.

lua_State* myL = NULL
static

Definition at line 1934 of file plplotluacLUA_wrap.c.

char mypltr_funcstr[255]
static

Definition at line 2005 of file plplotluacLUA_wrap.c.

struct luaL_Reg swig_commands[]
static

Definition at line 11157 of file plplotluacLUA_wrap.c.

swig_lua_const_info swig_constants[]
static

Definition at line 11337 of file plplotluacLUA_wrap.c.

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

Definition at line 11846 of file plplotluacLUA_wrap.c.

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

Definition at line 1625 of file plplotluacLUA_wrap.c.

const char* swig_PLGraphicsIn_base_names[] = {0}
static

Definition at line 2791 of file plplotluacLUA_wrap.c.

swig_lua_class* swig_PLGraphicsIn_bases[] = {0}
static

Definition at line 2790 of file plplotluacLUA_wrap.c.

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

Definition at line 2772 of file plplotluacLUA_wrap.c.

swig_type_info* swig_types[13]
static

Definition at line 1624 of file plplotluacLUA_wrap.c.

swig_lua_var_info swig_variables[]
static
Initial value:
= {
{0,0,0}
}

Definition at line 11333 of file plplotluacLUA_wrap.c.

PLINT Xlen = 0
static

Definition at line 1687 of file plplotluacLUA_wrap.c.

PLINT Ylen = 0
static

Definition at line 1687 of file plplotluacLUA_wrap.c.