This commit is contained in:
iutbgdin 2025-10-09 11:19:08 +02:00
parent c0513fb17c
commit 4fc6072d11
6 changed files with 43 additions and 0 deletions

15
pointObject.cpp Normal file
View file

@ -0,0 +1,15 @@
#include <cstdint>
#include <string>
class Point {
public:
Point(std::string& txt);
uint16_t 3dTranslate();
float getX();
float getY();
float getZ();
private:
float x;
float y;
float z;
}