OLD | NEW |
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 Loading... |
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 |
OLD | NEW |