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 <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 return !(lhs == rhs); | 114 return !(lhs == rhs); |
115 } | 115 } |
116 | 116 |
117 // Add a vector to a quad, offseting each point in the quad by the vector. | 117 // Add a vector to a quad, offseting each point in the quad by the vector. |
118 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs); | 118 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs); |
119 // Subtract a vector from a quad, offseting each point in the quad by the | 119 // Subtract a vector from a quad, offseting each point in the quad by the |
120 // inverse of the vector. | 120 // inverse of the vector. |
121 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs); | 121 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs); |
122 | 122 |
123 // This is declared here for use in gtest-based unit tests but is defined in | 123 // This is declared here for use in gtest-based unit tests but is defined in |
124 // the gfx_test_support target. Depend on that to use this in your unit test. | 124 // the //ui/gfx:test_support target. Depend on that to use this in your unit |
125 // This should not be used in production code - call ToString() instead. | 125 // test. This should not be used in production code - call ToString() instead. |
126 void PrintTo(const QuadF& quad, ::std::ostream* os); | 126 void PrintTo(const QuadF& quad, ::std::ostream* os); |
127 | 127 |
128 } // namespace gfx | 128 } // namespace gfx |
129 | 129 |
130 #endif // UI_GFX_GEOMETRY_QUAD_F_H_ | 130 #endif // UI_GFX_GEOMETRY_QUAD_F_H_ |
OLD | NEW |