summaryrefslogtreecommitdiffstats
path: root/ui/gfx/geometry/quad_f.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gfx/geometry/quad_f.h')
-rw-r--r--ui/gfx/geometry/quad_f.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/ui/gfx/geometry/quad_f.h b/ui/gfx/geometry/quad_f.h
index d795064..ada5c54 100644
--- a/ui/gfx/geometry/quad_f.h
+++ b/ui/gfx/geometry/quad_f.h
@@ -10,7 +10,6 @@
#include <iosfwd>
#include <string>
-#include "base/logging.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/gfx_export.h"
@@ -68,18 +67,6 @@ class GFX_EXPORT QuadF {
return RectF(rl, rt, rr - rl, rb - rt);
}
- // Realigns the corners in the quad by rotating them n corners to the right.
- void Realign(size_t times) {
- DCHECK_LE(times, 4u);
- for (size_t i = 0; i < times; ++i) {
- PointF temp = p1_;
- p1_ = p2_;
- p2_ = p3_;
- p3_ = p4_;
- p4_ = temp;
- }
- }
-
// Add a vector to the quad, offseting each point in the quad by the vector.
void operator+=(const Vector2dF& rhs);
// Subtract a vector from the quad, offseting each point in the quad by the