home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / polygon < prev    next >
Encoding:
Text File  |  1997-04-23  |  796 b   |  27 lines

  1.     
  2.     _P_o_l_y_g_o_n _D_r_a_w_i_n_g
  3.     
  4.          polygon(x, y, col=NULL, border=NULL, ...) {
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.              x,y : vectors containing the coordinates of the
  9.                    vertices of the polygon.
  10.     
  11.              col : an integer specifying the color to be used in
  12.                    filling the polygon.  The default is to leave
  13.                    polygons unfilled.
  14.     
  15.           border : the color to draw the border.  The default is
  16.                    to leave the border undrawn.
  17.     
  18.              ... : graphical parameters can be given as argu-
  19.                    ments to polygon.
  20.     
  21.     _D_e_s_c_r_i_p_t_i_o_n:
  22.     
  23.          polygon draws the polygons whose vertices are given in
  24.          x and y.  Note that if neither of col or border is
  25.          specified then nothing is drawn.
  26.     
  27.