File size: 328 Bytes
8efb4bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #ifndef DOT_SPHERE_H
#define DOT_SPHERE_H
#include <Vector3.h>
#include <vector>
class DotSphere : public std::vector<Vector3> {
public:
// Constructors
DotSphere(float radius, float density) {
createSphereDots(radius, density);
}
int createSphereDots(float radius, float density);
};
#endif
|