Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / vcl / source / filter / sgvspln.hxx
blob910d243eec2b4ba7f1f8035cd01084c5375cbc3b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_SOURCE_FILTER_SGVSPLN_HXX
21 #define INCLUDED_VCL_SOURCE_FILTER_SGVSPLN_HXX
23 /*************************************************************************
25 |* CalcSpline()
27 |* Beschreibung Berechnet die Koeffizienten eines parametrischen
28 |* nat�rlichen oder periodischen kubischen
29 |* Polynomsplines. Die Eckpunkte des šbergebenen
30 |* Polygons werden als St�tzstellen angenommen.
31 |* n liefert die Anzahl der Teilpolynome.
32 |* Ist die Berechnung fehlerfrei verlaufen, so
33 |* liefert die Funktion true. Nur in diesem Fall
34 |* ist Speicher f�r die Koeffizientenarrays
35 |* allokiert, der dann sp„ter vom Aufrufer mittels
36 |* delete freizugeben ist.
38 *************************************************************************/
40 bool CalcSpline(Polygon& rPoly, bool Periodic, sal_uInt16& n,
41 double*& ax, double*& ay, double*& bx, double*& by,
42 double*& cx, double*& cy, double*& dx, double*& dy, double*& T);
44 /*************************************************************************
46 |* Poly2Spline()
48 |* Beschreibung Konvertiert einen parametrichen kubischen
49 |* Polynomspline Spline (nat�rlich oder periodisch)
50 |* in ein angen„hertes Polygon.
51 |* Die Funktion liefert false, wenn ein Fehler bei
52 |* der Koeffizientenberechnung aufgetreten ist oder
53 |* das Polygon zu gro?wird (>PolyMax=16380). Im 1.
54 |* Fall hat das Polygon 0, im 2. Fall PolyMax Punkte.
55 |* Um Koordinaten�berl„ufe zu vermeiden werden diese
56 |* auf +/-32000 begrenzt.
58 *************************************************************************/
59 bool Spline2Poly(Polygon& rSpln, bool Periodic, Polygon& rPoly);
61 #endif // INCLUDED_VCL_SOURCE_FILTER_SGVSPLN_HXX
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */