ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/pmapray.h
Revision: 2.6
Committed: Wed Nov 2 22:09:14 2016 UTC (7 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, rad5R2, rad5R3, rad5R1
Changes since 2.5: +5 -2 lines
Log Message:
Fixed bug in ranimove introduced with photon map

File Contents

# User Rev Content
1 greg 2.6 /* RCSid $Id: pmapray.h,v 2.5 2016/05/17 17:39:47 rschregle Exp $ */
2 rschregle 2.5
3 greg 2.1 /*
4     ==================================================================
5     Photon map interface to RADIANCE raycalls
6    
7     Roland Schregle (roland.schregle@{hslu.ch, gmail.com})
8     (c) Fraunhofer Institute for Solar Energy Systems,
9 rschregle 2.2 (c) Lucerne University of Applied Sciences and Arts,
10     supported by the Swiss National Science Foundation (SNSF, #147053)
11 greg 2.1 ==================================================================
12    
13 greg 2.6 $Id: pmapray.h,v 2.5 2016/05/17 17:39:47 rschregle Exp $
14 greg 2.1 */
15    
16    
17     #include "ray.h"
18    
19    
20     void ray_init_pmap ();
21     /* Interface to ray_init() and rtmain/rpmain/rvmain; init & load pmaps */
22    
23     void ray_done_pmap ();
24     /* Interface to ray_done() and rtmain/rpmain/rvmain; free photon maps */
25    
26     void ray_save_pmap (RAYPARAMS *rp);
27     /* Interface to ray_save(); save photon map params */
28    
29     void ray_restore_pmap (RAYPARAMS *rp);
30     /* Interface to ray_restore(); restore photon mapping params */
31 greg 2.6
32     void ray_defaults_pmap (RAYPARAMS *rp);
33     /* Interface to ray_defaults(); set photon mapping defaults */