home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
gondwana.ecr.mu.oz.au/pub/
/
Graphics.tar
/
Graphics
/
VOGLE.ZIP
/
SRC
/
SUNPAS
/
PMATRIX.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-27
|
365b
|
50 lines
#include "vogle.h"
/*
* PushMatrix
*/
void
PushMatrix()
{
pushmatrix();
}
/*
* PopMatrix
*/
void
PopMatrix()
{
popmatrix();
}
/*
* GetMatrix
*/
void
GetMatrix(mat)
float *mat;
{
getmatrix(mat);
}
/*
* LoadMatrix
*/
void
LoadMatrix(mat)
float *mat;
{
loadmatrix(mat);
}
/*
* MultMatrix
*/
void
MultMatrix(mat)
float *mat;
{
multmatrix(mat);
}