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

Unified Diff: third_party/WebKit/Source/platform/transforms/Rotation.h

Issue 2392653002: reflow comments in platform/{transforms,weborigin} (Closed)
Patch Set: Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/transforms/Rotation.h
diff --git a/third_party/WebKit/Source/platform/transforms/Rotation.h b/third_party/WebKit/Source/platform/transforms/Rotation.h
index aaa62e00c19668595f97436da86bb85404941bd8..188fde8ec90805ca187456981eb3ed93e6de1ffd 100644
--- a/third_party/WebKit/Source/platform/transforms/Rotation.h
+++ b/third_party/WebKit/Source/platform/transforms/Rotation.h
@@ -14,16 +14,18 @@ struct PLATFORM_EXPORT Rotation {
Rotation(const FloatPoint3D& axis, double angle) : axis(axis), angle(angle) {}
- // If either rotation is effectively "zero" or both rotations share the same normalized axes this function returns true
- // and the "non-zero" axis is returned as resultAxis and the effective angles are returned as resultAngleA and resultAngleB.
- // Otherwise false is returned.
+ // If either rotation is effectively "zero" or both rotations share the same
+ // normalized axes this function returns true and the "non-zero" axis is
+ // returned as resultAxis and the effective angles are returned as
+ // resultAngleA and resultAngleB. Otherwise false is returned.
static bool getCommonAxis(const Rotation& /*a*/,
const Rotation& /*b*/,
FloatPoint3D& resultAxis,
double& resultAngleA,
double& resultAngleB);
- // A progress of 0 corresponds to "from" and a progress of 1 corresponds to "to".
+ // A progress of 0 corresponds to "from" and a progress of 1 corresponds to
+ // "to".
static Rotation slerp(const Rotation& from,
const Rotation& to,
double progress);

Powered by Google App Engine
This is Rietveld 408576698