summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Material.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Material.java b/src/Material.java
index 38ae8b9..f8b6bca 100644
--- a/src/Material.java
+++ b/src/Material.java
@@ -8,15 +8,15 @@ public enum Material {
* Modify the default values to make it look like gold.
*/
GOLD (
- new float[] {0.75164f, 0.60648f, 0.22648f, 1.0f},
- new float[] {0.628281f, 0.555802f, 0.366065f, 1.0f}),
+ new float[] {1f, 0.5f, 0f, 1.0f},
+ new float[] {1f, 0.5f, 0f, 1.0f}),
/**
* Silver material properties.
* Modify the default values to make it look like silver.
*/
SILVER (
- new float[] {0.50754f, 0.50754f, 0.50754f, 1.0f},
+ new float[] {0.35f, 0.35f, 0.35f, 1.0f},
new float[] {0.508273f, 0.508273f, 0.508273f, 1.0f}),
/**
@@ -32,8 +32,8 @@ public enum Material {
* Modify the default values to make it look like orange.
*/
ORANGE (
- new float[] {0.5f, 0.5f, 0.0f, 1.0f},
- new float[] {0.6f, 0.6f, 0.5f, 1.0f});
+ new float[] {0.5f, 0.2f, 0f, 1.0f},
+ new float[] {0.5f, 0.2f, 0f, 1.0f});
/** The diffuse RGBA reflectance of the material. */
float[] diffuse;