| 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 WebCore { | 25 namespace WebCore { |
| 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(const SVGTransform& fromTransform, const SVGTransform&
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 SVGTransform addToSVGTransform(const SVGTransform&) const; | 35 PassRefPtr<SVGTransform> addToSVGTransform(PassRefPtr<SVGTransform>) const; |
| 36 | 36 |
| 37 static SVGTransform addSVGTransforms(const SVGTransform&, const SVGTransform
&, unsigned repeatCount = 1); | 37 static PassRefPtr<SVGTransform> addSVGTransforms(PassRefPtr<SVGTransform>, P
assRefPtr<SVGTransform>, unsigned repeatCount = 1); |
| 38 | 38 |
| 39 bool isZero() const; | 39 bool isZero() const; |
| 40 | 40 |
| 41 float distance() const; | 41 float distance() const; |
| 42 private: | 42 private: |
| 43 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx,
float cy, const AffineTransform&); | 43 SVGTransformDistance(SVGTransformType, float angle, float cx, float cy, cons
t AffineTransform&); |
| 44 | 44 |
| 45 SVGTransform::SVGTransformType m_type; | 45 SVGTransformType m_transformType; |
| 46 float m_angle; | 46 float m_angle; |
| 47 float m_cx; | 47 float m_cx; |
| 48 float m_cy; | 48 float m_cy; |
| 49 AffineTransform m_transform; // for storing scale, translation or matrix tra
nsforms | 49 AffineTransform m_transform; // for storing scale, translation or matrix tra
nsforms |
| 50 }; | 50 }; |
| 51 } | 51 } |
| 52 | 52 |
| 53 #endif // SVGTransformDistance_h | 53 #endif // SVGTransformDistance_h |
| OLD | NEW |