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