-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewIOR.inc
57 lines (47 loc) · 1.86 KB
/
NewIOR.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifdef(NewIOR_Inc_Temp)
// do nothing
#else
#declare NewIOR_Inc_Temp = version;
#version 3.7;
#ifdef(View_POV_Include_Stack)
#debug "including NewIOR.inc\n"
#end
// Include ior.inc if it has not been loaded
#ifndef(Ior_Inc_Temp)
#include "ior.inc"
#end
/************************************************************************
/////////////////////////////////////////////////////////////////////////
// //
// TITLE : NewIOR.INC //
// VERSION : 6.1.1 //
// AUTHOR : Sven-Erik Andersen //
// FIRST VERSION : 1994.06.28 //
// //
/////////////////////////////////////////////////////////////////////////
The latest version is available at GitHub at
https://github.com/SvenErik1968/NewIOR
If you spot an error or have suggestion for more values, please raise
an issue in the GitHub repository.
* DEFINITIONS:
- STP = Standard Temperature and Pressure 20°C and 1 atm. pressure (720 mm Hg)
*/
// Include the Birefringence file?
#declare Use_Birefringence = false;
// Include the Special files?
#declare Use_Specials = false;
#include "IOR_Biaxial.inc"
#include "IOR_Gases.inc"
#include "IOR_Isotropic.inc"
#include "IOR_Liquids.inc"
#include "IOR_Uniaxial.inc"
#if (Use_Birefringence)
#include "IOR_Birefringence.inc"
#end
#if (Use_Specials)
#include ".\Special\IOR_Gemstones.inc"
#include ".\Special\Gem_Cuts.inc"
#end
#version NewIOR_Inc_Temp;
#end
// END OF FILE NewIOR.INC