TouchGFX + 0/3 examples
CodeScope will show references to touchgfx::Rect::y from the following samples and libraries:
Examples
STM32469I-Discovery
Demonstrations
STM32469I_EVAL
Demonstrations
STM32F429I-Discovery
Demonstrations
 
Symbols
loading...
Files
loading...

touchgfx::Rect::y field

Syntax

int16_t y;

Examples

touchgfx::Rect::y is referenced by 3 libraries and example projects.

References

LocationReferrerScopeText
Types.hpp:187
int16_t y; ///< The y coordinate
Drawable.hpp:281touchgfx::Drawable::getY() consttouchgfx::Drawable
return rect.y;
Drawable.hpp:341touchgfx::Drawable::setY()touchgfx::Drawable
rect.y = y;
Drawable.hpp:566touchgfx::Drawable::moveTo()touchgfx::Drawable
Drawable.hpp:698touchgfx::Drawable::getCachedAbsX()touchgfx::Drawable
cachedAbsY = absRect.y;
Drawable.hpp:720touchgfx::Drawable::getCachedAbsY()touchgfx::Drawable
cachedAbsY = absRect.y;
JSMOCHelper.hpp:116touchgfx::JSMOCHelper::getCachedAbsX()touchgfx::JSMOCHelper
cachedAbsY = absRect.y;
JSMOCHelper.hpp:136touchgfx::JSMOCHelper::getCachedAbsY()touchgfx::JSMOCHelper
cachedAbsY = absRect.y;
Types.hpp:161touchgfx::Rect::Rect()touchgfx::Rect
this->y = 0;
Types.hpp:181touchgfx::Rect::Rect()touchgfx::Rect
this->y = y;
Types.hpp:216touchgfx::Rect::bottom() consttouchgfx::Rect
return y + height;
Types.hpp:234touchgfx::Rect::intersect() consttouchgfx::Rect
otherY >= y && otherY < bottom());
Types.hpp:251touchgfx::Rect::intersect() consttouchgfx::Rect
y >= other.bottom() || bottom() <= other.y);
Types.hpp:269touchgfx::Rect::includes() consttouchgfx::Rect
other.y >= y &&
Types.hpp:309touchgfx::Rect::operator&=()touchgfx::Rect
int16_t newY = MAX(y, other.y);
Types.hpp:314touchgfx::Rect::operator&=()touchgfx::Rect
y = newY;
Types.hpp:319touchgfx::Rect::operator&=()touchgfx::Rect
y = 0;
Types.hpp:343touchgfx::Rect::expandToFit()touchgfx::Rect
y = other.y;
Types.hpp:350touchgfx::Rect::expandToFit()touchgfx::Rect
int16_t newY = MIN(y, other.y);
Types.hpp:356touchgfx::Rect::expandToFit()touchgfx::Rect
y = newY;
Types.hpp:427touchgfx::Rect::isEqual() consttouchgfx::Rect
(y == other.y) &&