Code

update 2geom
[inkscape.git] / src / 2geom / sbasis-poly.h
1 #ifndef _SBASIS_TO_POLY
2 #define _SBASIS_TO_POLY
4 #include "poly.h"
5 #include "sbasis.h"
7 /*** Conversion between SBasis and Poly.  Not recommended for general
8  * use due to instability.
9  */
11 namespace Geom{
13 SBasis poly_to_sbasis(Poly const & p);
14 Poly sbasis_to_poly(SBasis const & s);
16 };
18 /*
19   Local Variables:
20   mode:c++
21   c-file-style:"stroustrup"
22   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
23   indent-tabs-mode:nil
24   fill-column:99
25   End:
26 */
27 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
29 #endif