typhoon/tempest/sphere/CAaSphere.hpp

14 lines
202 B
C++
Raw Normal View History

2022-12-24 23:10:21 -06:00
#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