package graphics.raytracer;


class SceneConsts {
  static double ambientLightIntensity = 0.1;
  static double ambientLightReflectance = 1.0;
  static double globalObjectReflectance = 1.0;
  static double globalShadowReflectance = 0.0005;
  static double Ip = 1.0;
}