This commit is contained in:
Tristan Krause 2019-04-01 15:16:17 +02:00
parent cc1e5e927c
commit 9cef606397
24 changed files with 0 additions and 0 deletions

21
driver/drv/dot.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef DOT_H
#define DOT_H
#include <cstdint>
#include <stdexcept>
class Dot
{
public:
Dot(uint16_t x, uint16_t y, uint8_t curve);
uint16_t getX(void) const;
uint16_t getY(void) const;
uint8_t getCurve(void) const;
private:
uint16_t x, y;
uint8_t curve;
};
#endif // DOT_H