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

touchgfx::Rect::x field

Syntax

int16_t x;

Examples

touchgfx::Rect::x is referenced by 4 libraries and example projects.

References

LocationReferrerScopeText
Types.hpp:186
int16_t x; ///< The x coordinate
Drawable.hpp:267touchgfx::Drawable::getX() consttouchgfx::Drawable
return rect.x;
Drawable.hpp:325touchgfx::Drawable::setX()touchgfx::Drawable
rect.x = x;
Drawable.hpp:566touchgfx::Drawable::moveTo()touchgfx::Drawable
Drawable.hpp:654touchgfx::Drawable::resetDrawChainCache()touchgfx::Drawable
Drawable.hpp:672touchgfx::Drawable::getCachedVisibleRect()touchgfx::Drawable
Drawable.hpp:697touchgfx::Drawable::getCachedAbsX()touchgfx::Drawable
cachedAbsX = absRect.x;
Drawable.hpp:719touchgfx::Drawable::getCachedAbsY()touchgfx::Drawable
cachedAbsX = absRect.x;
JSMOCHelper.hpp:60touchgfx::JSMOCHelper::setWidget()touchgfx::JSMOCHelper
JSMOCHelper.hpp:115touchgfx::JSMOCHelper::getCachedAbsX()touchgfx::JSMOCHelper
cachedAbsX = absRect.x;
JSMOCHelper.hpp:135touchgfx::JSMOCHelper::getCachedAbsY()touchgfx::JSMOCHelper
cachedAbsX = absRect.x;
JSMOCHelper.hpp:191touchgfx::JSMOCHelper::hasCachedVisibleRect()touchgfx::JSMOCHelper
Types.hpp:160touchgfx::Rect::Rect()touchgfx::Rect
this->x = 0;
Types.hpp:180touchgfx::Rect::Rect()touchgfx::Rect
this->x = x;
Types.hpp:202touchgfx::Rect::right() consttouchgfx::Rect
return x + width;
Types.hpp:233touchgfx::Rect::intersect() consttouchgfx::Rect
return (otherX >= x && otherX < right() &&
Types.hpp:250touchgfx::Rect::intersect() consttouchgfx::Rect
return !(x >= other.right() || right() <= other.x ||
Types.hpp:268touchgfx::Rect::includes() consttouchgfx::Rect
return (other.x >= x &&
Types.hpp:308touchgfx::Rect::operator&=()touchgfx::Rect
int16_t newX = MAX(x, other.x);
Types.hpp:313touchgfx::Rect::operator&=()touchgfx::Rect
x = newX;
Types.hpp:318touchgfx::Rect::operator&=()touchgfx::Rect
x = 0;
Types.hpp:342touchgfx::Rect::expandToFit()touchgfx::Rect
x = other.x;
Types.hpp:349touchgfx::Rect::expandToFit()touchgfx::Rect
int16_t newX = MIN(x, other.x);
Types.hpp:355touchgfx::Rect::expandToFit()touchgfx::Rect
x = newX;
Types.hpp:426touchgfx::Rect::isEqual() consttouchgfx::Rect
return ((x == other.x) &&