/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Sphere.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ycontre +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/12/23 19:12:51 by ycontre #+# #+# */ /* Updated: 2024/12/23 19:47:09 by ycontre ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef RT_SPHERE__HPP # define RT_SPHERE__HPP # include "RT.hpp" class Sphere : public Object { public: float radius; glm::vec3 position; private: }; #endif