home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / picture / line.c < prev    next >
Encoding:
Text File  |  1993-09-23  |  2.2 KB  |  25 lines  |  [TEXT/????]

  1. //    Copyright 1993 Ralph Gonzalez
  2.  
  3. /*
  4. *    FILE:        line.c
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    October 6, 1990
  7. *
  8. *    defines methods for 3D line segment
  9. */
  10.  
  11. # include    "line.h"
  12.  
  13. /******************************************************************
  14. *    initialize
  15. ******************************************************************/
  16. Lline::Lline(void)
  17. {
  18.     c1 = new Coord3;
  19.     c2 = new Coord3;
  20.     set_coord(10.,0.,0.,10.,0.,1.);
  21.     set_color(WHITE);
  22. }
  23.  
  24. /******************************************************************
  25. *    set coordinate