This commit is contained in:
iutbgdin 2025-10-10 10:21:36 +02:00
parent 8383fc1edf
commit 6ad7555ad7
12 changed files with 81 additions and 24 deletions

View file

@ -1,3 +1,4 @@
#pragma once
#include <cstdint>
#include <string>
#include <vector>
@ -13,6 +14,7 @@ class Plane {
uint8_t getB();
uint8_t getA();
uint8_t getL();
uint8_t getZ();
friend std::ostream & operator<<(std::ostream& os, Plane& p);
private:
std::vector<Point*> pts;