| 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "core/svg/SVGTransform.h" | 23 #include "core/svg/SVGTransform.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 class AffineTransform; | 27 class AffineTransform; |
| 28 | 28 |
| 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(PassRefPtrWillBeRawPtr<SVGTransform> fromTransform, Pas
sRefPtrWillBeRawPtr<SVGTransform> toTransform); |
| 33 | 33 |
| 34 SVGTransformDistance scaledDistance(float scaleFactor) const; | 34 SVGTransformDistance scaledDistance(float scaleFactor) const; |
| 35 PassRefPtr<SVGTransform> addToSVGTransform(PassRefPtr<SVGTransform>) const; | 35 PassRefPtrWillBeRawPtr<SVGTransform> addToSVGTransform(PassRefPtrWillBeRawPt
r<SVGTransform>) const; |
| 36 | 36 |
| 37 static PassRefPtr<SVGTransform> addSVGTransforms(PassRefPtr<SVGTransform>, P
assRefPtr<SVGTransform>, unsigned repeatCount = 1); | 37 static PassRefPtrWillBeRawPtr<SVGTransform> addSVGTransforms(PassRefPtrWillB
eRawPtr<SVGTransform>, PassRefPtrWillBeRawPtr<SVGTransform>, unsigned repeatCoun
t = 1); |
| 38 | 38 |
| 39 float distance() const; | 39 float distance() const; |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 SVGTransformDistance(SVGTransformType, float angle, float cx, float cy, cons
t AffineTransform&); | 42 SVGTransformDistance(SVGTransformType, float angle, float cx, float cy, cons
t AffineTransform&); |
| 43 | 43 |
| 44 SVGTransformType m_transformType; | 44 SVGTransformType m_transformType; |
| 45 float m_angle; | 45 float m_angle; |
| 46 float m_cx; | 46 float m_cx; |
| 47 float m_cy; | 47 float m_cy; |
| 48 AffineTransform m_transform; // for storing scale, translation or matrix tra
nsforms | 48 AffineTransform m_transform; // for storing scale, translation or matrix tra
nsforms |
| 49 }; | 49 }; |
| 50 } | 50 } |
| 51 | 51 |
| 52 #endif // SVGTransformDistance_h | 52 #endif // SVGTransformDistance_h |
| OLD | NEW |