1 package graphics.raytracers.rmiRaytracer.raytracer; 2 3 4 class SceneConsts { 5 static double ambientLightIntensity = 0.1; 6 static double ambientLightReflectance = 1.0; 7 static double globalObjectReflectance = 1.0; 8 static double globalShadowReflectance = 0.0005; 9 static double Ip = 1.0; 10 }