| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGPathSegCurvetoCubic_h | 21 #ifndef SVGPathSegCurvetoCubic_h |
| 22 #define SVGPathSegCurvetoCubic_h | 22 #define SVGPathSegCurvetoCubic_h |
| 23 | 23 |
| 24 #include "core/svg/SVGPathSegWithContext.h" | 24 #include "core/svg/SVGPathSeg.h" |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 | 27 |
| 28 class SVGPathSegCurvetoCubic : public SVGPathSegWithContext { | 28 class SVGPathSegCurvetoCubic : public SVGPathSeg { |
| 29 public: | 29 public: |
| 30 SVGPathSegCurvetoCubic(SVGPathElement* element, float x, float y, float x1,
float y1, float x2, float y2) | 30 SVGPathSegCurvetoCubic(SVGPathElement* element, float x, float y, float x1,
float y1, float x2, float y2) |
| 31 : SVGPathSegWithContext(element) | 31 : SVGPathSeg(element) |
| 32 , m_x(x) | 32 , m_x(x) |
| 33 , m_y(y) | 33 , m_y(y) |
| 34 , m_x1(x1) | 34 , m_x1(x1) |
| 35 , m_y1(y1) | 35 , m_y1(y1) |
| 36 , m_x2(x2) | 36 , m_x2(x2) |
| 37 , m_y2(y2) | 37 , m_y2(y2) |
| 38 { | 38 { |
| 39 } | 39 } |
| 40 | 40 |
| 41 float x() const { return m_x; } | 41 float x() const { return m_x; } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 float m_y; | 85 float m_y; |
| 86 float m_x1; | 86 float m_x1; |
| 87 float m_y1; | 87 float m_y1; |
| 88 float m_x2; | 88 float m_x2; |
| 89 float m_y2; | 89 float m_y2; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif | 94 #endif |
| OLD | NEW |