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

Side by Side Diff: Source/core/svg/SVGTransformDistance.h

Issue 183743004: Remove moar unused SVG methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
« no previous file with comments | « Source/core/svg/SVGScriptElement.h ('k') | Source/core/svg/SVGTransformDistance.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 18 matching lines...) Expand all
29 class SVGTransformDistance { 29 class SVGTransformDistance {
30 public: 30 public:
31 SVGTransformDistance(); 31 SVGTransformDistance();
32 SVGTransformDistance(PassRefPtr<SVGTransform> fromTransform, PassRefPtr<SVGT ransform> toTransform); 32 SVGTransformDistance(PassRefPtr<SVGTransform> fromTransform, PassRefPtr<SVGT ransform> toTransform);
33 33
34 SVGTransformDistance scaledDistance(float scaleFactor) const; 34 SVGTransformDistance scaledDistance(float scaleFactor) const;
35 PassRefPtr<SVGTransform> addToSVGTransform(PassRefPtr<SVGTransform>) const; 35 PassRefPtr<SVGTransform> addToSVGTransform(PassRefPtr<SVGTransform>) const;
36 36
37 static PassRefPtr<SVGTransform> addSVGTransforms(PassRefPtr<SVGTransform>, P assRefPtr<SVGTransform>, unsigned repeatCount = 1); 37 static PassRefPtr<SVGTransform> addSVGTransforms(PassRefPtr<SVGTransform>, P assRefPtr<SVGTransform>, unsigned repeatCount = 1);
38 38
39 bool isZero() const; 39 float distance() const;
40 40
41 float distance() const;
42 private: 41 private:
43 SVGTransformDistance(SVGTransformType, float angle, float cx, float cy, cons t AffineTransform&); 42 SVGTransformDistance(SVGTransformType, float angle, float cx, float cy, cons t AffineTransform&);
44 43
45 SVGTransformType m_transformType; 44 SVGTransformType m_transformType;
46 float m_angle; 45 float m_angle;
47 float m_cx; 46 float m_cx;
48 float m_cy; 47 float m_cy;
49 AffineTransform m_transform; // for storing scale, translation or matrix tra nsforms 48 AffineTransform m_transform; // for storing scale, translation or matrix tra nsforms
50 }; 49 };
51 } 50 }
52 51
53 #endif // SVGTransformDistance_h 52 #endif // SVGTransformDistance_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGScriptElement.h ('k') | Source/core/svg/SVGTransformDistance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698