ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/pmapopt.h
Revision: 2.5
Committed: Tue May 17 17:39:47 2016 UTC (7 years, 11 months ago) by rschregle
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, rad5R2, rad5R3, rad5R1, HEAD
Changes since 2.4: +12 -6 lines
Log Message:
Initial import of ooC photon map

File Contents

# User Rev Content
1 rschregle 2.5 /* RCSid $Id: pmapopt.h,v 1.2 2015/10/24 20:43:02 u-no-hoo Exp u-no-hoo $ */
2    
3 greg 2.1 /*
4     ==================================================================
5     Photon map interface to RADIANCE render options
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 rschregle 2.5 $Id: pmapopt.h,v 1.2 2015/10/24 20:43:02 u-no-hoo Exp u-no-hoo $
14 greg 2.1 */
15    
16    
17    
18 rschregle 2.5 #ifndef PMAPOPT_H
19     #define PMAPOPT_H
20    
21     int getPmapRenderOpt (int ac, char *av []);
22     /* Parse next render option for photon map; interface to getrenderopt();
23     * return -1 if parsing failed, else number of parameters consumed */
24 greg 2.1
25 rschregle 2.5 void printPmapDefaults ();
26     /* Print defaults for photon map render options */
27     #endif