-class Light has been completely decoupled from class Ray
-class Ray is still in the project for reference, but is not used at all
-Light has been decoupled from the imgui variables, and instead has it's own member variables that are used to configure the object
-all of Light's bool variables are represented by a bit flag variable with appropriate functions to modify it
-the creation and sorting of end points for the Light object has been moved into the class itself
-extra functions and local variables have been created to help with readability of code
- Bounded light can now be greater than 180 degrees
-more imgui variables added to configure the light object
-class Light added to handle the construction of the triangle fan
-light can now be bounded between two bounderies
-differnt sections of main have been placed into different functions for readability
-imgui variables were made inline and moved to Utility.hpp for convenience
-the claculation of intersections for rays hav been moved to Ray::calculateIntersect
-variables containing std::vector<Ray>, class Light, and std::vector<sf::VertexArray> were moved outsid of main() for convenience