2023-02-26 03:27:15 +00:00
|
|
|
const float INF = 45.0;
|
2021-08-10 01:11:22 +01:00
|
|
|
const float PI = 3.14159;
|
2021-08-13 13:43:54 +01:00
|
|
|
const float E = 2.71828;
|
2023-02-24 01:12:51 +00:00
|
|
|
const int BOUNCES = 5;
|
2022-01-30 22:01:02 +00:00
|
|
|
|
|
|
|
// materials
|
|
|
|
const int MAT_SKY = -1;
|
|
|
|
const int MAT_LAMBERT = 0;
|
|
|
|
const int MAT_CHROME = 1;
|