ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/pmapamb.h
Revision: 2.4
Committed: Tue Sep 1 16:27:52 2015 UTC (8 years, 8 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R0
Changes since 2.3: +1 -2 lines
Log Message:
Removed redundant $Id: in file

File Contents

# Content
1 /* RCSid $Id: pmapamb.h,v 2.3 2015/08/18 18:45:55 greg Exp $ */
2 /*
3 ==================================================================
4 Photon map interface to RADIANCE ambient calculation
5
6 Roland Schregle (roland.schregle@{hslu.ch, gmail.com})
7 (c) Fraunhofer Institute for Solar Energy Systems,
8 (c) Lucerne University of Applied Sciences and Arts,
9 supported by the Swiss National Science Foundation (SNSF, #147053)
10 ==================================================================
11
12 */
13
14
15 #ifndef PMAPAMB_H
16 #define PMAPAMB_H
17
18 #include "pmapdata.h"
19
20 int ambPmap (COLOR aval, RAY *r, int rdepth);
21 /* Factor irradiance from global photon map into ambient coefficient
22 * aval; return 1 on success, else 0 (with aval unmodified) */
23
24 int ambPmapCaustic (COLOR aval, RAY *r, int rdepth);
25 /* Factor irradiance from caustic photon map into ambient coeffiecient
26 * aval; return 1 if successful, else 0 (with aval set to zero) */
27 #endif