Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: ui/gfx/vector2d_f.h

Issue 11293193: ui: Add non-member Vector2dScale() and Vector3dScale() methods to create scaled vectors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use it in cc/ Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_VECTOR2D_F_H_ 10 #ifndef UI_GFX_VECTOR2D_F_H_
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 result.Add(-rhs); 75 result.Add(-rhs);
76 return result; 76 return result;
77 } 77 }
78 78
79 // Return the cross product of two vectors. 79 // Return the cross product of two vectors.
80 UI_EXPORT double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs); 80 UI_EXPORT double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs);
81 81
82 // Return the dot product of two vectors. 82 // Return the dot product of two vectors.
83 UI_EXPORT double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs); 83 UI_EXPORT double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs);
84 84
85 // Return a vector that is |v| scaled by the given scale factors along each
86 // axis.
87 UI_EXPORT Vector2dF ScaleVector2d(
88 const Vector2dF& v, float x_scale, float y_scale);
sky 2012/11/09 17:06:21 nit: when you wrap, wrap each param on its own lin
danakj 2012/11/09 18:21:47 Done.
89
90 // Return a vector that is |v| scaled by the given scale factor.
91 inline Vector2dF ScaleVector2d(const Vector2dF& v, float scale) {
92 return ScaleVector2d(v, scale, scale);
93 }
94
85 } // namespace gfx 95 } // namespace gfx
86 96
87 #endif // UI_GFX_VECTOR2D_F_H_ 97 #endif // UI_GFX_VECTOR2D_F_H_
OLDNEW
« no previous file with comments | « cc/page_scale_animation.cc ('k') | ui/gfx/vector2d_f.cc » ('j') | ui/gfx/vector2d_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698