Code

update to latest 2geom (rev1497)
[inkscape.git] / src / 2geom / svg-path.cpp
1 /*
2  * callback interface for SVG path data
3  *
4  * Copyright 2007 MenTaLguY <mental@rydia.net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it either under the terms of the GNU Lesser General Public
8  * License version 2.1 as published by the Free Software Foundation
9  * (the "LGPL") or, at your option, under the terms of the Mozilla
10  * Public License Version 1.1 (the "MPL"). If you do not alter this
11  * notice, a recipient may use your version of this file under either
12  * the MPL or the LGPL.
13  *
14  * You should have received a copy of the LGPL along with this library
15  * in the file COPYING-LGPL-2.1; if not, output to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  * You should have received a copy of the MPL along with this library
18  * in the file COPYING-MPL-1.1
19  *
20  * The contents of this file are subject to the Mozilla Public License
21  * Version 1.1 (the "License"); you may not use this file except in
22  * compliance with the License. You may obtain a copy of the License at
23  * http://www.mozilla.org/MPL/
24  *
25  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
26  * OF ANY KIND, either express or implied. See the LGPL or the MPL for
27  * the specific language governing rights and limitations.
28  *
29  */
31 #include <2geom/sbasis-to-bezier.h>
32 #include <2geom/svg-path.h>
33 #include <2geom/exception.h>
35 namespace Geom {
37 void output(Curve const &curve, SVGPathSink &sink) {
38     std::vector<Point> pts = sbasis_to_bezier(curve.toSBasis(), 2); //TODO: use something better!
39     sink.curveTo(pts[0], pts[1], pts[2]);
40 }
42 void output(HLineSegment const &curve, SVGPathSink &sink) {
43     sink.hlineTo(curve.finalPoint()[X]);
44 }
46 void output(VLineSegment const &curve, SVGPathSink &sink) {
47     sink.vlineTo(curve.finalPoint()[Y]);
48 }
50 void output(LineSegment const &curve, SVGPathSink &sink) {
51     sink.lineTo(curve[1]);
52 }
54 void output(CubicBezier const &curve, SVGPathSink &sink) {
55     sink.curveTo(curve[1], curve[2], curve[3]);
56 }
58 void output(QuadraticBezier const &curve, SVGPathSink &sink) {
59     sink.quadTo(curve[1], curve[2]);
60 }
62 void output(SVGEllipticalArc const &curve, SVGPathSink &sink) {
63     sink.arcTo( curve.ray(X), curve.ray(Y), curve.rotation_angle(),
64                         curve.large_arc_flag(), curve.sweep_flag(),
65                         curve.finalPoint() );
66 }
68 template <typename T>
69 bool output_as(Curve const &curve, SVGPathSink &sink) {
70     T const *t = dynamic_cast<T const *>(&curve);
71     if (t) {
72         output(*t, sink);
73         return true;
74     } else {
75         return false;
76     }
77 }
79 void output_svg_path(Path &path, SVGPathSink &sink) {
80     sink.moveTo(path.front().initialPoint());
82     Path::iterator iter;
83     for ( iter = path.begin() ; iter != path.end() ; ++iter ) {
84         output_as<HLineSegment>(*iter, sink) ||
85         output_as<VLineSegment>(*iter, sink) ||
86         output_as<LineSegment>(*iter, sink) ||
87         output_as<CubicBezier>(*iter, sink) ||
88         output_as<QuadraticBezier>(*iter, sink) ||
89         output_as<SVGEllipticalArc>(*iter, sink) ||
90         output_as<Curve>(*iter, sink);
91     }
93     if (path.closed()) {
94         sink.closePath();
95     }
96     sink.finish();
97 }
99 }
101 /*
102   Local Variables:
103   mode:c++
104   c-file-style:"stroustrup"
105   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
106   indent-tabs-mode:nil
107   fill-column:99
108   End:
109 */
110 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :