ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rtotypes.h
Revision: 1.2
Committed: Thu Jun 23 11:51:47 2005 UTC (18 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R7P2, rad3R7P1, rad4R0, rad3R8, rad3R9
Changes since 1.1: +4 -4 lines
Log Message:
Made use of rtotypes.h more logical

File Contents

# Content
1 /* RCSid $Id$ */
2 /*
3 * External functions implementing Radiance object types
4 */
5
6 typedef int otype_tracef(OBJREC *o, RAY *r);
7
8 extern otype_tracef o_sphere, o_face, o_cone, o_instance, o_mesh;
9
10 extern otype_tracef m_aniso, m_dielectric, m_glass, m_alias, m_light,
11 m_normal, m_mist, m_mirror, m_direct, m_clip, m_brdf, m_brdf2;
12
13 extern otype_tracef t_func, t_data;
14
15 extern otype_tracef p_cfunc, p_bfunc, p_pdata, p_cdata, p_bdata;
16
17 extern otype_tracef mx_func, mx_data, mx_pdata;
18
19 extern otype_tracef do_text;
20
21 /* text.c */
22 extern void freetext(OBJREC *m);