fortschritt plottyfile
This commit is contained in:
parent
0f71e121fa
commit
71b156aa6f
13 changed files with 71 additions and 17 deletions
20
drv/dot.cpp
Normal file
20
drv/dot.cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#include "dot.h"
|
||||
|
||||
Dot::Dot(uint16_t x, uint16_t y, DotColor color) : x(x), y(y), color(color)
|
||||
{
|
||||
}
|
||||
|
||||
uint16_t Dot::getX() const
|
||||
{
|
||||
return x;
|
||||
}
|
||||
|
||||
uint16_t Dot::getY() const
|
||||
{
|
||||
return y;
|
||||
}
|
||||
|
||||
DotColor Dot::getColor(void) const
|
||||
{
|
||||
return color;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue