1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #ifndef INCLUDED_BASEGFX_TOOLS_UNOTOOLS_HXX
11 #define INCLUDED_BASEGFX_TOOLS_UNOTOOLS_HXX
13 #include <cppuhelper/basemutex.hxx>
14 #include <cppuhelper/compbase3.hxx>
15 #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
16 #include <com/sun/star/lang/XServiceInfo.hpp>
17 #include <com/sun/star/rendering/FillRule.hpp>
18 #include <com/sun/star/rendering/XLinePolyPolygon2D.hpp>
19 #include <com/sun/star/rendering/XBezierPolyPolygon2D.hpp>
20 #include <basegfx/polygon/b2dpolypolygon.hxx>
30 BASEGFX_DLLPUBLIC B2DPolyPolygon
polyPolygonBezierToB2DPolyPolygon(const ::com::sun::star::drawing::PolyPolygonBezierCoords
& rSourcePolyPolygon
)
31 throw( ::com::sun::star::lang::IllegalArgumentException
);
33 BASEGFX_DLLPUBLIC
void b2DPolyPolygonToPolyPolygonBezier( const B2DPolyPolygon
& rPolyPoly
,
34 ::com::sun::star::drawing::PolyPolygonBezierCoords
& rRetval
);
38 #endif // INCLUDED_BASEGFX_TOOLS_UNOTOOLS_HXX
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */