- /// \name Intersection
- /// \{
-
- /// \brief Determines if the coordinates (x, y) are within the ofRectangle.
- ///
- /// Note that coordinates on the edge of the ofRectangle are not
- /// considered within the rectangle and will return false.
- ///
- /// Coordinates (x, y) are considered inside the rectangle if:
- ///
- /// `x > rectMinX && x < rectMinX && y > rectMinY && y < rectMaxY`
- ///
- /// \param px The x-coordinate to test.
- /// \param py The y-coordinate to test.
- /// \returns true if px and py are inside this ofRectangle.
- bool inside(float px, float py) const;
-
- /// \brief Determines if the ofPoint is within the ofRectangle.
- ///
- /// Note that points on the edge of the ofRectangle are not
This file has been truncated. show original