# include "grafein.h" # ifdef VOGLE /***************************************************************************/ /* Grafikbefehle ausfuehren lassen. */ /***************************************************************************/ void openWindow( int X, int Y, int Width, int Height, int Color,float left, float right, float bottom, float top) { prefsize( Width, Height); prefposition( X, Y); vinit( "X11"); ortho2(left,right,bottom,top); color( Color); clear(); } /***************************************************************************/ /* vogle-Fenster schliessen. */ /***************************************************************************/ void closeWindow() { vexit() ; } # endif