ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/otspecial.h
Revision: 2.5
Committed: Fri Jun 27 06:53:22 2003 UTC (20 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.4: +1 -4 lines
Log Message:
Broke standard.h into rtio.h, rterror.h, rtmath.h, and rtmisc.h

File Contents

# User Rev Content
1 greg 2.5 /* RCSid $Id: otspecial.h,v 2.4 2003/06/07 00:54:58 schorsch Exp $ */
2 greg 1.1 /*
3     * Special type flags for objects used in rendering.
4     * Depends on definitions in otypes.h
5 greg 2.2 */
6 schorsch 2.4 #ifndef _RAD_OTSPECIAL_H_
7     #define _RAD_OTSPECIAL_H_
8     #ifdef __cplusplus
9     extern "C" {
10     #endif
11 greg 1.1
12     /* flag for materials to ignore during irradiance comp. */
13     #define T_IRR_IGN T_SP1
14    
15     #define irr_ignore(t) (ofun[t].flags & T_IRR_IGN)
16 schorsch 2.4
17    
18     #ifdef __cplusplus
19     }
20     #endif
21     #endif /* _RAD_OTSPECIAL_H_ */
22