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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransform.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/core/svg/SVGTransform.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTransform.cpp b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
index 0518512768ffa8b4cae33ef550c6ca5434e0b7e6..1033b33ec810bdaf95491c6d464e6a1ff5aeb204 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransform.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
@@ -179,11 +179,10 @@ String SVGTransform::valueAsString() const {
double angleInRad = deg2rad(m_angle);
double cosAngle = cos(angleInRad);
double sinAngle = sin(angleInRad);
- float cx = clampTo<float>(
- cosAngle != 1
- ? (m_matrix.e() * (1 - cosAngle) - m_matrix.f() * sinAngle) /
- (1 - cosAngle) / 2
- : 0);
+ float cx = clampTo<float>(cosAngle != 1 ? (m_matrix.e() * (1 - cosAngle) -
+ m_matrix.f() * sinAngle) /
+ (1 - cosAngle) / 2
+ : 0);
float cy = clampTo<float>(
cosAngle != 1
? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2

Powered by Google App Engine
This is Rietveld 408576698