Actual source code: vdraw.h

  1: /* $Id: vdraw.h,v 1.4 2001/01/15 21:43:15 bsmith Exp $ */
  2: /*
  3:      Data structure for the PetscDraw version of the viewer
  4: */


 9:  #include src/sys/src/viewer/viewerimpl.h
 10: typedef struct {
 11:   int            draw_max;
 12:   PetscDraw      *draw;
 13:   PetscDrawLG    *drawlg;
 14:   PetscDrawAxis  *drawaxis;
 15:   int            w,h;        /* These are saved in case additional windows are opened */
 16:   char           *display;
 17:   PetscTruth     singleton_made;
 18: } PetscViewer_Draw;

 20: #endif