summaryrefslogtreecommitdiff
path: root/vcl/source/filter/sgvspln.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/filter/sgvspln.cxx')
-rw-r--r--vcl/source/filter/sgvspln.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/vcl/source/filter/sgvspln.cxx b/vcl/source/filter/sgvspln.cxx
index b95fc50c8f44..f68652843759 100644
--- a/vcl/source/filter/sgvspln.cxx
+++ b/vcl/source/filter/sgvspln.cxx
@@ -17,10 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <math.h>
-
#include <tools/poly.hxx>
#include <boost/scoped_array.hpp>
@@ -32,7 +30,6 @@ extern "C" {
/*.fe The include file u_const.h should be stored in the directory, */
/*.fe where the compiler searches for include files. */
-
/*----------------------- FILE u_const.h ---------------------------*/
#define IEEE
@@ -98,7 +95,6 @@ short basis() /* calculate BASE machine independence */
#define MAXEXPON 1023.0 /* largest exponent */
#define MINEXPON -1024.0 /* smallest exponent */
-
#define MACH_EPS masch()
#define POSMAX pow ((double) BASIS, MAXEXPON)
@@ -114,16 +110,11 @@ short basis() /* calculate BASE machine independence */
/*-------------------- END of FILE u_const.h -----------------------*/
-
-
-
-
/*.HL appendix: C - programs*/
/*.HR Systems of equations for tridiagonal matrices*/
/*.FE P 3.7 tridiagonal systems of equations */
-
/*---------------------- MODULE tridiagonal -----------------------*/
sal_uInt16 TriDiagGS(bool rep, sal_uInt16 n, double* lower,
@@ -243,23 +234,13 @@ sal_uInt16 TriDiagGS(bool rep, sal_uInt16 n, double* lower,
/*----------------------- END OF TRIDIAGONAL ------------------------*/
-
-
-
-
-
-
-
-
/*.HL Appendix: C - Programs*/
/*.HRSystems of equations with cyclic tridiagonal matrices*/
/*.FE P 3.8 Systems with cyclic tridiagonal matrices */
-
/*---------------- Module cyclic tridiagonal -----------------------*/
-
sal_uInt16 ZyklTriDiagGS(bool rep, sal_uInt16 n, double* lower, double* diag,
double* upper, double* lowrow, double* ricol, double* b)
/******************************/
@@ -400,10 +381,8 @@ sal_uInt16 ZyklTriDiagGS(bool rep, sal_uInt16 n, double* lower, double* diag,
/*------------------ END of CYCLIC TRIDIAGONAL ---------------------*/
-
} // extern "C"
-
/*************************************************************************
|*
|* NaturalSpline()
@@ -507,7 +486,6 @@ sal_uInt16 NaturalSpline(sal_uInt16 n, double* x, double* y,
return 0;
}
-
/*************************************************************************
|*
|* PeriodicSpline()
@@ -517,7 +495,6 @@ sal_uInt16 NaturalSpline(sal_uInt16 n, double* x, double* y,
|*
*************************************************************************/
-
sal_uInt16 PeriodicSpline(sal_uInt16 n, double* x, double* y,
double* b, double* c, double* d)
{ // array dimensions should range from [0..n]!
@@ -576,8 +553,6 @@ sal_uInt16 PeriodicSpline(sal_uInt16 n, double* x, double* y,
return 0;
}
-
-
/*************************************************************************
|*
|* ParaSpline()
@@ -652,8 +627,6 @@ sal_uInt16 ParaSpline(sal_uInt16 n, double* x, double* y, sal_uInt8 MargCond,
return 0;
}
-
-
/*************************************************************************
|*
|* CalcSpline()
@@ -737,7 +710,6 @@ bool CalcSpline(Polygon& rPoly, bool Periodic, sal_uInt16& n,
return bRet;
}
-
/*************************************************************************
|*
|* Spline2Poly()