Scribus
Open source desktop publishing at your fingertips
sbasis-poly.h
1 #ifndef _SBASIS_TO_POLY
2 #define _SBASIS_TO_POLY
3 
4 #include "poly.h"
5 #include "sbasis.h"
6 
7 /*** Conversion between SBasis and Poly. Not recommended for general
8  * use due to instability.
9  */
10 
11 namespace Geom{
12 
13 SBasis poly_to_sbasis(Poly const & p);
14 Poly sbasis_to_poly(SBasis const & s);
15 
16 };
17 
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 :
28 
29 #endif
Definition: angle.h:38
Definition: poly.h:10