#ifndef RWSIM_FUNCTIONS_H #define RWSIM_FUNCTIONS_H #include #include #include #include int nearest_index(const std::vector&, double, int); double lerp(const std::vector&, const std::vector&, double, int); std::array spherical_to_xyz(double, double); std::pair xyz_to_spherical(const std::array& xyz); std::chrono::time_point printSteps(std::chrono::time_point, std::chrono::time_point, int, int); #endif