Lines Matching refs:object
65 void add_object(object *obj) { in add_object()
66 object *objtemp; in add_object()
78 void free_objects(object *start) { in free_objects()
79 object *cur; in free_objects()
80 object *cur2; in free_objects()
84 cur2 = (object *)cur->nextobj; in free_objects()
100 object *cur; in intersect_objects()
101 object temp; in intersect_objects()
106 while ((cur = (object *)cur->nextobj) != nullptr) in intersect_objects()
118 void add_intersection(flt t, object *obj, ray *ry) { in add_intersection()
138 int closest_intersection(flt *t, object **obj, intersectstruct *intstruct) { in closest_intersection()