/* RCSid $Id: rtotypes.h,v 1.4 2012/07/29 19:01:39 greg Exp $ */ /* * External functions implementing Radiance object types */ typedef int otype_implf(OBJREC *o, RAY *r); extern otype_implf o_sphere, o_face, o_cone, o_instance, o_mesh; extern otype_implf m_aniso, m_dielectric, m_glass, m_alias, m_light, m_normal, m_mist, m_mirror, m_direct, m_clip, m_brdf, m_brdf2, m_bsdf, m_ashikhmin; extern otype_implf t_func, t_data; extern otype_implf p_cfunc, p_bfunc, p_pdata, p_cdata, p_bdata; extern otype_implf mx_func, mx_data, mx_pdata; extern otype_implf do_text; /* text.c */ extern void freetext(OBJREC *m);