Adafruit_TouchScreen
Adafruit_TouchScreen copied to clipboard
Code comment
https://github.com/adafruit/Adafruit_TouchScreen/blob/4f845058265afb23c6f29967130d6486920ff5d7/TouchScreen.cpp#L38
should be:
- @brief Check if the current point is equivalent to another point
as the function compares two points:
bool TSPoint::operator==(TSPoint p1) {
return ((p1.x == x) && (p1.y == y) && (p1.z == z));
}