| 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 // Defines a simple float vector class. This class is used to indicate a | 5 // Defines a simple float vector class. This class is used to indicate a |
| 6 // distance in two dimensions between two points. Subtracting two points should | 6 // distance in two dimensions between two points. Subtracting two points should |
| 7 // produce a vector, and adding a vector to a point produces the point at the | 7 // produce a vector, and adding a vector to a point produces the point at the |
| 8 // vector's distance from the original point. | 8 // vector's distance from the original point. |
| 9 | 9 |
| 10 #ifndef UI_GFX_GEOMETRY_VECTOR3D_F_H_ | 10 #ifndef UI_GFX_GEOMETRY_VECTOR3D_F_H_ |
| 11 #define UI_GFX_GEOMETRY_VECTOR3D_F_H_ | 11 #define UI_GFX_GEOMETRY_VECTOR3D_F_H_ |
| 12 | 12 |
| 13 #include <iosfwd> |
| 13 #include <string> | 14 #include <string> |
| 14 | 15 |
| 15 #include "ui/gfx/geometry/vector2d_f.h" | 16 #include "ui/gfx/geometry/vector2d_f.h" |
| 16 #include "ui/gfx/gfx_export.h" | 17 #include "ui/gfx/gfx_export.h" |
| 17 | 18 |
| 18 namespace gfx { | 19 namespace gfx { |
| 19 | 20 |
| 20 class GFX_EXPORT Vector3dF { | 21 class GFX_EXPORT Vector3dF { |
| 21 public: | 22 public: |
| 22 Vector3dF(); | 23 Vector3dF(); |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 GFX_EXPORT Vector3dF ScaleVector3d(const Vector3dF& v, | 113 GFX_EXPORT Vector3dF ScaleVector3d(const Vector3dF& v, |
| 113 float x_scale, | 114 float x_scale, |
| 114 float y_scale, | 115 float y_scale, |
| 115 float z_scale); | 116 float z_scale); |
| 116 | 117 |
| 117 // Return a vector that is |v| scaled by the given scale factor. | 118 // Return a vector that is |v| scaled by the given scale factor. |
| 118 inline Vector3dF ScaleVector3d(const Vector3dF& v, float scale) { | 119 inline Vector3dF ScaleVector3d(const Vector3dF& v, float scale) { |
| 119 return ScaleVector3d(v, scale, scale, scale); | 120 return ScaleVector3d(v, scale, scale, scale); |
| 120 } | 121 } |
| 121 | 122 |
| 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. |
| 125 // This should not be used in production code - call ToString() instead. |
| 126 void PrintTo(const Vector3dF& vector, ::std::ostream* os); |
| 127 |
| 122 } // namespace gfx | 128 } // namespace gfx |
| 123 | 129 |
| 124 #endif // UI_GFX_GEOMETRY_VECTOR3D_F_H_ | 130 #endif // UI_GFX_GEOMETRY_VECTOR3D_F_H_ |
| OLD | NEW |