home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / rad386 / radiosit / src / objects.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-21  |  369 b   |  11 lines

  1. typedef struct{
  2.         void *(*read_geometry_specific_input)();
  3.         Vector3 (*get_surface_normal)();
  4.         double (*intersect_object)();
  5.         void (*object_specific_preprocess)();
  6.         Matrix4 (*get_local_matrix)();
  7.     Point3 (*compute_center_point_in_the_grid_cell)();
  8.     Point3 (*object_point)();
  9. } ObjectFunctions;
  10. extern ObjectFunctions ofunc[];
  11.