Line data Source code
1 : #include "Bresenham.hpp" 2 : 3 : BEGIN_CS_NAMESPACE 4 : 5 0 : size_t BresenhamLine::Pixel::printTo(Print &p) const { 6 0 : return p.print('(') + p.print(x) + p.print(", ") + p.print(y) + 7 0 : p.print(')'); 8 : } 9 : 10 : END_CS_NAMESPACE