olikraus / U8g2_for_Adafruit_GFX

Add U8g2 fonts to any Adafruit GFX based graphics library.
Other
112 stars 32 forks source link

(Feature request) Draw at negative position #44

Closed v-ivanyshyn closed 11 months ago

v-ivanyshyn commented 11 months ago

For example, I want to achieve scroll effect for some text (so the text line scrolls from it's start to the end toward to the left). It would be easy done by offsetting text position by subtracting scroll factor: u8g2.drawStr(strX - scrollOffset, strY, str). But the problem is that all position values are unsigned: u8g2_uint_t drawStr(u8g2_uint_t x, u8g2_uint_t y, const char *s)

Is there any other way how to place a text or any other object at negative position while drawing?

olikraus commented 11 months ago

The "unsigned" data type doesn't prevent you from doing the scrolling. Just go ahead and do some testing. It will work. You might need to enable 16 bit version of u8g2 however (which is I think the default for the latest releases)

v-ivanyshyn commented 11 months ago

Ups, my bad, didn't check it... Thanks for response!

olikraus commented 11 months ago

Update: There is no need to activate 16 bit mode in this lib. 16 bit is there by default. So: No todo. I just wanted to confirm this.