Actual source code: psimpl.h

  2: /*
  3:       Defines the internal data structures for the Postscript
  4:    implementation of the graphics functionality in PETSc.
  5: */

 7:  #include src/sys/draw/drawimpl.h
 8:  #include petscsys.h

 10: #if !defined(_PSIMPL_H)
 11: #define _PSIMPL_H

 13: typedef struct {
 14:     PetscViewer ps_file;
 15:     double      xl,xr,yl,yr;
 16:     int         ixl,ixr,iyl,iyr;
 17:     int         currentcolor;
 18: } PetscDraw_PS;

 20: #endif