dir structure

This commit is contained in:
Tristan Krause 2019-05-15 10:51:39 +02:00
parent 30d8aefce3
commit 2c4f2653cd
32 changed files with 7 additions and 4 deletions

22
driver/src/drv/dot.cpp Normal file
View file

@ -0,0 +1,22 @@
#include "dot.h"
Dot::Dot(uint16_t x, uint16_t y, uint8_t curve) : x(x), y(y), curve(curve)
{
if(curve >= 64)
throw std::range_error("Kurvenindex muss im Bereich [0, 63] liegen");
}
uint16_t Dot::getX() const
{
return x;
}
uint16_t Dot::getY() const
{
return y;
}
uint8_t Dot::getCurve(void) const
{
return curve;
}