|
* @brief Check if the current point is **not** equivalent to another point |
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));
}
Adafruit_TouchScreen/TouchScreen.cpp
Line 38 in 4f84505
should be:
as the function compares two points: