#pragma once #include #include #include #include "point.h" class Plane { public: Plane(std::string& txt); std::vector getPoints(); uint64_t getColor(); friend std::ostream & operator<<(std::ostream& os, Plane& p); private: std::vector pts; uint64_t* color; };