OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_GFX_GEOMETRY_QUAD_F_H_ | 5 #ifndef UI_GFX_GEOMETRY_QUAD_F_H_ |
6 #define UI_GFX_GEOMETRY_QUAD_F_H_ | 6 #define UI_GFX_GEOMETRY_QUAD_F_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <cmath> | 9 #include <cmath> |
| 10 #include <iosfwd> |
10 #include <string> | 11 #include <string> |
11 | 12 |
12 #include "ui/gfx/geometry/point_f.h" | 13 #include "ui/gfx/geometry/point_f.h" |
13 #include "ui/gfx/geometry/rect_f.h" | 14 #include "ui/gfx/geometry/rect_f.h" |
14 #include "ui/gfx/gfx_export.h" | 15 #include "ui/gfx/gfx_export.h" |
15 | 16 |
16 namespace gfx { | 17 namespace gfx { |
17 | 18 |
18 // A Quad is defined by four corners, allowing it to have edges that are not | 19 // A Quad is defined by four corners, allowing it to have edges that are not |
19 // axis-aligned, unlike a Rect. | 20 // axis-aligned, unlike a Rect. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) { | 98 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) { |
98 return !(lhs == rhs); | 99 return !(lhs == rhs); |
99 } | 100 } |
100 | 101 |
101 // Add a vector to a quad, offseting each point in the quad by the vector. | 102 // Add a vector to a quad, offseting each point in the quad by the vector. |
102 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs); | 103 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs); |
103 // Subtract a vector from a quad, offseting each point in the quad by the | 104 // Subtract a vector from a quad, offseting each point in the quad by the |
104 // inverse of the vector. | 105 // inverse of the vector. |
105 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs); | 106 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs); |
106 | 107 |
| 108 // This is declared here for use in gtest-based unit tests but is defined in |
| 109 // the gfx_test_support target. Depend on that to use this in your unit test. |
| 110 // This should not be used in production code - call ToString() instead. |
| 111 void PrintTo(const QuadF& quad, ::std::ostream* os); |
| 112 |
107 } // namespace gfx | 113 } // namespace gfx |
108 | 114 |
109 #endif // UI_GFX_GEOMETRY_QUAD_F_H_ | 115 #endif // UI_GFX_GEOMETRY_QUAD_F_H_ |
OLD | NEW |