public LightSource(Vector postion, Vector direction, Colors color) { this.postion = postion; this.direction = direction; colorSet = color; }
public LightSource() // postioned on origin { postion = new Vector(0, 0, 0); colorSet = new Colors(255, 255, 255, 1); }