#ifndef DOT_SPHERE_H #define DOT_SPHERE_H #include #include class DotSphere : public std::vector { public: // Constructors DotSphere(float radius, float density) { createSphereDots(radius, density); } int createSphereDots(float radius, float density); }; #endif