glFrustum ( left right bottom top near_val far_val -- )


Vocabulary
opengl.gl

Definition
USING: alien.c-types alien.syntax ;

IN: opengl.gl

LIBRARY: gl FUNCTION: void glFrustum
( GLdouble left, GLdouble right, GLdouble bottom, GLdouble
top, GLdouble near_val, GLdouble far_val ) ; inline