📄 glmodule.c
字号:
static PyObject *
gl_setbell(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
return NULL;
setbell( arg1 );
Py_INCREF(Py_None);
return Py_None;
}
/* void blankscreen long s */
static PyObject *
gl_blankscreen(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
return NULL;
blankscreen( arg1 );
Py_INCREF(Py_None);
return Py_None;
}
/* void depthcue long s */
static PyObject *
gl_depthcue(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
return NULL;
depthcue( arg1 );
Py_INCREF(Py_None);
return Py_None;
}
/* void zbuffer long s */
static PyObject *
gl_zbuffer(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
return NULL;
zbuffer( arg1 );
Py_INCREF(Py_None);
return Py_None;
}
/* void backface long s */
static PyObject *
gl_backface(PyObject *self, PyObject *args)
{
long arg1 ;
if (!getilongarg(args, 1, 0, &arg1))
return NULL;
backface( arg1 );
Py_INCREF(Py_None);
return Py_None;
}
/* void cmov2i long s long s */
static PyObject *
gl_cmov2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
cmov2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void draw2i long s long s */
static PyObject *
gl_draw2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
draw2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void move2i long s long s */
static PyObject *
gl_move2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
move2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pnt2i long s long s */
static PyObject *
gl_pnt2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
pnt2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void patchbasis long s long s */
static PyObject *
gl_patchbasis(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
patchbasis( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void patchprecision long s long s */
static PyObject *
gl_patchprecision(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
patchprecision( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pdr2i long s long s */
static PyObject *
gl_pdr2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
pdr2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pmv2i long s long s */
static PyObject *
gl_pmv2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
pmv2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rpdr2i long s long s */
static PyObject *
gl_rpdr2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
rpdr2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rpmv2i long s long s */
static PyObject *
gl_rpmv2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
rpmv2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void xfpt2i long s long s */
static PyObject *
gl_xfpt2i(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
xfpt2i( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void objdelete long s long s */
static PyObject *
gl_objdelete(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
objdelete( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void patchcurves long s long s */
static PyObject *
gl_patchcurves(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
patchcurves( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void minsize long s long s */
static PyObject *
gl_minsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
minsize( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void maxsize long s long s */
static PyObject *
gl_maxsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
maxsize( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void keepaspect long s long s */
static PyObject *
gl_keepaspect(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
keepaspect( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void prefsize long s long s */
static PyObject *
gl_prefsize(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
prefsize( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void stepunit long s long s */
static PyObject *
gl_stepunit(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
stepunit( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void fudge long s long s */
static PyObject *
gl_fudge(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
fudge( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void winmove long s long s */
static PyObject *
gl_winmove(PyObject *self, PyObject *args)
{
long arg1 ;
long arg2 ;
if (!getilongarg(args, 2, 0, &arg1))
return NULL;
if (!getilongarg(args, 2, 1, &arg2))
return NULL;
winmove( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void attachcursor short s short s */
static PyObject *
gl_attachcursor(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
attachcursor( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void deflinestyle short s short s */
static PyObject *
gl_deflinestyle(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
deflinestyle( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void noise short s short s */
static PyObject *
gl_noise(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
noise( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void picksize short s short s */
static PyObject *
gl_picksize(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
picksize( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void qenter short s short s */
static PyObject *
gl_qenter(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
qenter( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void setdepth short s short s */
static PyObject *
gl_setdepth(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
setdepth( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void cmov2s short s short s */
static PyObject *
gl_cmov2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
cmov2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void draw2s short s short s */
static PyObject *
gl_draw2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
draw2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void move2s short s short s */
static PyObject *
gl_move2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
move2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pdr2s short s short s */
static PyObject *
gl_pdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
pdr2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pmv2s short s short s */
static PyObject *
gl_pmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
pmv2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void pnt2s short s short s */
static PyObject *
gl_pnt2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
pnt2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rdr2s short s short s */
static PyObject *
gl_rdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
rdr2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rmv2s short s short s */
static PyObject *
gl_rmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
rmv2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rpdr2s short s short s */
static PyObject *
gl_rpdr2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
rpdr2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void rpmv2s short s short s */
static PyObject *
gl_rpmv2s(PyObject *self, PyObject *args)
{
short arg1 ;
short arg2 ;
if (!getishortarg(args, 2, 0, &arg1))
return NULL;
if (!getishortarg(args, 2, 1, &arg2))
return NULL;
rpmv2s( arg1 , arg2 );
Py_INCREF(Py_None);
return Py_None;
}
/* void xfpt2s short s short s */
static PyObject *
gl_xfpt2s(PyObject *self, PyObject *args)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -