aboutsummaryrefslogtreecommitdiffstats
path: root/sphere.h
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-05-15 08:38:27 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-05-15 08:38:27 -0400
commit577d44970b25f46cacfa093c909a569e1bf53294 (patch)
tree4c512249bbca2b7476016b13b58783c91a251ba2 /sphere.h
parent7d174816febeed6977a7e90be5c80e9b99b11df9 (diff)
un-fix threads; more refactoring
Diffstat (limited to 'sphere.h')
-rw-r--r--sphere.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sphere.h b/sphere.h
index c27f29b..3cb2c8c 100644
--- a/sphere.h
+++ b/sphere.h
@@ -10,9 +10,10 @@
#include <tuple>
enum class Material : int {
- Lambertian,
+ Lambertian = 0,
Metal,
- Dielectric
+ Dielectric,
+ Undefined
};
struct Sphere