build fix: no comphelper/profilezone.hxx in this branch
[LibreOffice.git] / vcl / source / filter / sgvspln.hxx
blob906dbe2c6f47e25a82642d2e01f2d24f891bf024
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
24 * Calculates the coefficients of parametrised natural or periodic cubic
25 * polynom-splines. The corner points of the polygon passed are used as
26 * support points. n returns the number of partial polynoms. This function
27 * returns TRUE if no error occurred. Only in this case memory for the
28 * coefficient array has been allocated, which can be freed by the caller
29 * using a delete.
31 bool CalcSpline(tools::Polygon& rPoly, bool Periodic, sal_uInt16& n,
32 double*& ax, double*& ay, double*& bx, double*& by,
33 double*& cx, double*& cy, double*& dx, double*& dy, double*& T);
36 * Converts a parametrised cubic spline (natural or periodic) to an approximate
37 * polygon. The function returns false, if an error occurred during the
38 * calculation of the coefficients or the polygon became too large (>PolyMax=16380).
39 * In the first case the polygon has 0, in the second case PolyMax points.
40 * To prevent coordinate overflows we limit them to +/-32000.
42 bool Spline2Poly(tools::Polygon& rSpln, bool Periodic, tools::Polygon& rPoly);
44 #endif // INCLUDED_VCL_SOURCE_FILTER_SGVSPLN_HXX
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */