typhoon/tempest/sphere/CAaSphere.hpp
2022-12-25 22:08:55 -06:00

13 lines
202 B
C++

#ifndef TEMPEST_SPHERE_C_AASPHERE_HPP
#define TEMPEST_SPHERE_C_AASPHERE_HPP
#include "tempest/Vector.hpp"
class CAaSphere {
public:
// Member variables
C3Vector c;
float r;
};
#endif