home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iritsm3s.zip / irit / attribut.h < prev    next >
C/C++ Source or Header  |  1991-09-27  |  854b  |  21 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. *                                         *
  4. * Written by:  Gershon Elber                Ver 0.2, Mar. 1990   *
  5. ******************************************************************************
  6. * Setting attributes for geometric objects.                     *
  7. *****************************************************************************/
  8.  
  9. #ifndef ATTRIBUTE_H
  10. #define ATTRIBUTE_H
  11.  
  12. int GetObjectColor(ObjectStruct *PObj);
  13. void SetObjectColor(ObjectStruct *PObj, int Color);
  14. void SetObjectStrAttrib(ObjectStruct *PObj, char *Name, char *Data);
  15. char *GetObjectStrAttrib(ObjectStruct *PObj, char *Name);
  16. void ReleaseStrAttrib(ObjectStruct *PObj);
  17. void CopyGeomAttrib(ObjectStruct *Dest, ObjectStruct *Src);
  18. void ResetObjectAttribs(ObjectStruct *PObj);
  19.  
  20. #endif /* ATTRIBUTE_H */
  21.