Searched refs:bottomRight (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/libavoid/
H A Dgeomtypes.h298 //! @param[in] bottomRight The opposing corner point of the rectangle.
300 Rectangle(const Point& topLeft, const Point& bottomRight);
H A Dgeomtypes.cpp515 Rectangle::Rectangle(const Point& topLeft, const Point& bottomRight) argument
518 double xMin = std::min(topLeft.x, bottomRight.x);
519 double xMax = std::max(topLeft.x, bottomRight.x);
520 double yMin = std::min(topLeft.y, bottomRight.y);
521 double yMax = std::max(topLeft.y, bottomRight.y);

Completed in 14 milliseconds