home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
gondwana.ecr.mu.oz.au/pub/
/
Graphics.tar
/
Graphics
/
VOGLE.ZIP
/
SRC
/
SUNPAS
/
PVIEWP.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-27
|
429b
|
41 lines
#include "vogle.h"
/*
* PushViewPort
*/
void
PushViewPort()
{
pushviewport();
}
/*
* PopViewPort
*/
void
PopViewPort()
{
popviewport();
}
/*
* ViewPort
*/
void
ViewPort(xlow, xhigh, ylow, yhigh)
float xlow, ylow, xhigh, yhigh;
{
viewport(xlow, xhigh, ylow, yhigh);
}
/*
* GetViewPort
*/
void
GetViewPort(left, right, bottom, top)
double *left, *right, *bottom, *top;
{
getviewport(left, right, bottom, top);
}