#include #include class Plane { public: Plane(std::string& text); float* getPoints(); uint64_t* getColor(); private: float* points; uint64_t* color; }