Actual source code: psimpl.h

  1: /* $Id: psimpl.h,v 1.5 2001/04/10 19:34:15 bsmith Exp $ */

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

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

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

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

 21: #endif