home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / alt / sources / 2608 / line_object.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-23  |  406 b   |  31 lines

  1. /*    @(#)line_object.h 1.1 92/05/28 SMI    */
  2. /*    from line_object.h 1.2 90/05/02 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  * this file is type definitions for object line descriptions.
  10.  *
  11.  */
  12.  
  13. #ifndef    LINE_OBJECT
  14. #define    LINE_OBJECT
  15.  
  16. #define    MOVE    0        /* flags in color field */
  17. #define    LINE_END -1
  18.  
  19.  
  20. typedef    struct xyzf {
  21.       Pt3d p ;
  22.       short    color ;
  23.     } XYZF ;
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. #endif    LINE_OBJECT
  31.