Home | History | Annotate | Download | only in geometry

Lines Matching defs:origin

33   constexpr RectF(const PointF& origin, const SizeF& size)
34 : origin_(origin), size_(size) {}
60 constexpr const PointF& origin() const { return origin_; }
61 void set_origin(const PointF& origin) { origin_ = origin; }
102 // A rect is less than another rect if its origin is less than
103 // the other rect's origin. If the origins are equal, then the
104 // shortest rect is less than the other. If the origin and the
175 set_origin(ScalePoint(origin(), x_scale, y_scale));
193 return lhs.origin() == rhs.origin() && lhs.size() == rhs.size();