import Vector from '../../math/Vector'; import Ray from '../../utils/Ray'; /** * A {@code RayConfiguration} is a collection of rays typically used for collision avoidance. * * @param Type of vector, either 2D or 3D, implementing the {@link Vector} interface * * @author davebaol */ interface RayConfiguration> { updateRays(): Ray[]; } export default RayConfiguration;