Searched defs:Rectangle (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/libavoid/
H A Dgeomtypes.h168 //! @note The Rectangle class can be used as an easy way of constructing a
288 //! @brief A Rectangle, a simpler way to define the polygon for square or
291 class Rectangle : public Polygon class in namespace:Avoid
300 Rectangle(const Point& topLeft, const Point& bottomRight);
310 Rectangle(const Point& centre, const double width, const double height);
H A Dgeomtypes.cpp515 Rectangle::Rectangle(const Point& topLeft, const Point& bottomRight) function in class:Avoid::Rectangle
530 Rectangle::Rectangle(const Point& centre, const double width, function in class:Avoid::Rectangle
/inkscape/src/libvpsc/
H A Dgenerate-constraints.h6 /* TODO replace file comment with appropriate doc comment on vpsc::Rectangle */
21 class Rectangle { class in namespace:vpsc
22 friend std::ostream& operator <<(std::ostream &os, const Rectangle &r);
25 Rectangle(double x, double X, double y, double Y);
56 inline double overlapX(Rectangle *r) const {
63 inline double overlapY(Rectangle *r) const {
79 int generateXConstraints(const int n, Rectangle** rs, Variable** vars, Constraint** &cs, const bool useNeighbourLists);
80 int generateYConstraints(const int n, Rectangle** rs, Variable** vars, Constraint** &cs);
H A Dgenerate-constraints.cpp28 std::ostream& operator <<(std::ostream &os, const Rectangle &r) {
33 Rectangle::Rectangle(double x, double X, double y, double Y) function in class:vpsc::Rectangle
46 Rectangle *r;
50 Node(Variable *v, Rectangle *r, double p) : v(v),r(r),pos(p) {
173 int generateXConstraints(const int n, Rectangle** rs, Variable** vars, Constraint** &cs, const bool useNeighbourLists) {
257 int generateYConstraints(const int n, Rectangle** rs, Variable** vars, Constraint** &cs) {

Completed in 33 milliseconds