You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.9 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkCardinalSpline.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkCardinalSpline
* @brief computes an interpolating spline using a
* a Cardinal basis.
*
*
* vtkCardinalSpline is a concrete implementation of vtkSpline using a
* Cardinal basis.
*
* @sa
* vtkSpline vtkKochanekSpline
*/
#ifndef vtkCardinalSpline_h
#define vtkCardinalSpline_h
#include "vtkCommonComputationalGeometryModule.h" // For export macro
#include "vtkSpline.h"
class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkCardinalSpline : public vtkSpline
{
public:
static vtkCardinalSpline* New();
vtkTypeMacro(vtkCardinalSpline, vtkSpline);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Compute Cardinal Splines for each dependent variable
*/
void Compute() override;
/**
* Evaluate a 1D cardinal spline.
*/
double Evaluate(double t) override;
/**
* Deep copy of cardinal spline data.
*/
void DeepCopy(vtkSpline* s) override;
protected:
vtkCardinalSpline();
~vtkCardinalSpline() override {}
void Fit1D(int n, double* x, double* y, double* w, double coefficients[][4], int leftConstraint,
double leftValue, int rightConstraint, double rightValue);
void FitClosed1D(int n, double* x, double* y, double* w, double coefficients[][4]);
private:
vtkCardinalSpline(const vtkCardinalSpline&) = delete;
void operator=(const vtkCardinalSpline&) = delete;
};
#endif