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

Side by Side Diff: cc/math_util.h

Issue 11418197: Move temporary MathUtil wrappers to permanent home in gfx::Transform (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: patch for landing Created 8 years 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
« no previous file with comments | « cc/layer_tree_host_common_unittest.cc ('k') | cc/math_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CC_MATH_UTIL_H_ 5 #ifndef CC_MATH_UTIL_H_
6 #define CC_MATH_UTIL_H_ 6 #define CC_MATH_UTIL_H_
7 7
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "cc/cc_export.h" 9 #include "cc/cc_export.h"
10 #include "ui/gfx/point_f.h" 10 #include "ui/gfx/point_f.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 static float smallestAngleBetweenVectors(gfx::Vector2dF, gfx::Vector2dF); 113 static float smallestAngleBetweenVectors(gfx::Vector2dF, gfx::Vector2dF);
114 114
115 // Projects the |source| vector onto |destination|. Neither vector is assume d to be normalized. 115 // Projects the |source| vector onto |destination|. Neither vector is assume d to be normalized.
116 static gfx::Vector2dF projectVector(gfx::Vector2dF source, gfx::Vector2dF de stination); 116 static gfx::Vector2dF projectVector(gfx::Vector2dF source, gfx::Vector2dF de stination);
117 117
118 // Temporary API to ease migration from gfx::Transform 118 // Temporary API to ease migration from gfx::Transform
119 // to gfx::Transform. 119 // to gfx::Transform.
120 // 120 //
121 // TODO(shawnsingh, vollick) we should phase out as much as possible of 121 // TODO(shawnsingh, vollick) we should phase out as much as possible of
122 // these temporary functions, putting functionality into gfx::Transform. 122 // these temporary functions, putting functionality into gfx::Transform.
123 static bool isBackFaceVisible(const gfx::Transform&);
124 static bool isIdentityOrTranslation(const gfx::Transform&);
125 static bool hasPerspective(const gfx::Transform&);
126 static void rotateEulerAngles(gfx::Transform*, double eulerX, double eulerY, double eulerZ); 123 static void rotateEulerAngles(gfx::Transform*, double eulerX, double eulerY, double eulerZ);
127 static void rotateAxisAngle(gfx::Transform*, double i, double j, double k, d ouble degrees);
128 static gfx::Transform inverse(const gfx::Transform&); 124 static gfx::Transform inverse(const gfx::Transform&);
129 static gfx::Transform to2dTransform(const gfx::Transform&); 125 static gfx::Transform to2dTransform(const gfx::Transform&);
130 // Note carefully: the args here are labeled as per Webcore indexing convent ions. 126 // Note carefully: the args here are labeled as per Webcore indexing convent ions.
131 static gfx::Transform createGfxTransform(double m11, double m12, double m13, double m14, 127 static gfx::Transform createGfxTransform(double m11, double m12, double m13, double m14,
132 double m21, double m22, double m23, double m24, 128 double m21, double m22, double m23, double m24,
133 double m31, double m32, double m33, double m34, 129 double m31, double m32, double m33, double m34,
134 double m41, double m42, double m43, double m44); 130 double m41, double m42, double m43, double m44);
135 131
136 static gfx::Transform createGfxTransform(double a, double b, double c, 132 static gfx::Transform createGfxTransform(double a, double b, double c,
137 double d, double e, double f); 133 double d, double e, double f);
138 }; 134 };
139 135
140 } // namespace cc 136 } // namespace cc
141 137
142 #endif // CC_MATH_UTIL_H_ 138 #endif // CC_MATH_UTIL_H_
OLDNEW
« no previous file with comments | « cc/layer_tree_host_common_unittest.cc ('k') | cc/math_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698