Home→Forums→MonoBrick EV3 Firmware→lcd_out at (x,y) ?→Reply To: lcd_out at (x,y) ?
May 18, 2014 at 19:06
#4367
Helmut Wunder
Participant
puuuh.. rather complicated this new-point-box-offeset-whatever-thing.
A half side of text just for an equivalent to
TextOut(10,24,"Hello World");
?
Can’t the coordinates be used by simple numbers or variables?
for (int x=0; x<8; ++x) {NumOut(x, x*10, x);}
or, more C-like, more easy and “universal” formattable
{printfxy(x, x*10, "%2d", x);}
C# seems to need 20 times more letters and lines to write as C (CMIIW)… 🙁
Follow