| 
            plmesh
          ( | x , | 
| y , | |
| z , | |
| nx , | |
| ny , | |
| opt ); | 
      Plots a surface mesh within the environment set up by plw3d.  The
      surface is defined by the matrix
      
        ,
      the point z[nx][ny]
      z[i][j](.
      Note that the points in vectors x[i], y[j])xyopt
x
          (PLFLT_VECTORA vector containing the x coordinates at which the function is evaluated.
y
          (PLFLT_VECTORA vector containing the y coordinates at which the function is evaluated.
z
          (PLFLT_MATRIX
	    A matrix containing function values to plot.  Should have
	    dimensions of nx by ny.
          
nx
          (PLINT
            Number of x
ny
          (PLINT
            Number of y
opt
          (PLINTDetermines the way in which the surface is represented:
                  
                    : Lines
                  are drawn showing
                  opt=DRAW_LINEX
                  
                     as a function
                  of z
                  
                     for each
                  value of x
                  
                    .
                y[j]
                  
                  
                    : Lines
                  are drawn showing
                  opt=DRAW_LINEY
                  
                     as a function
                  of z
                  
                     for each
                  value of y
                  
                    .
                x[i]
                  
                  
                    : Network
                  of lines is drawn connecting points at which function is
                  defined.
                opt=DRAW_LINEXY
                  
      Redacted form: plmesh(x, y, z, opt)
    
This function is used in example 11.