ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rtotypes.h
Revision: 1.3
Committed: Fri Feb 18 00:40:25 2011 UTC (13 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad4R1
Changes since 1.2: +9 -9 lines
Log Message:
Major code reorg, moving mgflib to common and introducing BSDF material

File Contents

# User Rev Content
1 greg 1.3 /* RCSid $Id: rtotypes.h,v 1.2 2005/06/23 11:51:47 greg Exp $ */
2 greg 1.2 /*
3     * External functions implementing Radiance object types
4     */
5 schorsch 1.1
6 greg 1.3 typedef int otype_implf(OBJREC *o, RAY *r);
7 schorsch 1.1
8 greg 1.3 extern otype_implf o_sphere, o_face, o_cone, o_instance, o_mesh;
9 schorsch 1.1
10 greg 1.3 extern otype_implf 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, m_bsdf;
12 schorsch 1.1
13 greg 1.3 extern otype_implf t_func, t_data;
14 schorsch 1.1
15 greg 1.3 extern otype_implf p_cfunc, p_bfunc, p_pdata, p_cdata, p_bdata;
16 schorsch 1.1
17 greg 1.3 extern otype_implf mx_func, mx_data, mx_pdata;
18 schorsch 1.1
19 greg 1.3 extern otype_implf do_text;
20 schorsch 1.1
21     /* text.c */
22     extern void freetext(OBJREC *m);