16 lines
207 B
C++
16 lines
207 B
C++
![]() |
#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;
|
||
|
}
|