/usr/include/vtk-6.3/vtkSpline.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkSpline.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.
=========================================================================*/
// .NAME vtkSpline - spline abstract class for interpolating splines
// .SECTION Description
// vtkSpline interpolates a set of data points (i.e., interpolation means
// that the spline passes through the points). vtkSpline is an abstract
// class: its subclasses vtkCardinalSpline and vtkKochenekSpline do the
// interpolation. Note that this spline maps the 1D parametric coordinate
// t into a single value x. Thus if you want to use the spline to
// interpolate points (i.e. x[3]), you have to create three splines for
// each of the x-y-z coordinates. Fortunately, the vtkParametricSpline
// class does this for you.
//
// Typically a spline is used by adding a sequence of parametric coordinate /
// data (t,x) values followed by use of an evaluation function (e.g.,
// vtkCardinalSpline::Evaluate()). Since these splines are 1D, a point in
// this context is an independent / dependent variable pair.
//
// Splines can also be set up to be closed or open. Closed splines continue
// from the last point to the first point with continuous function and
// derivative values. (You don't need to duplicate the first point to close
// the spline, just set ClosedOn.)
//
// This implementation of splines does not use a normalized parametric
// coordinate. If the spline is open, then the parameter space is (tMin <= t
// <= tMax) where tMin and tMax are the minimum and maximum parametric values
// seen when performing AddPoint(). If the spline is closed, then the
// parameter space is (tMin <= t <= (tMax+1)) where tMin and tMax are the
// minimum and maximum parametric values seen when performing AddPoint().
// Note, however, that this behavior can be changed by explicitly setting
// the ParametricRange(tMin,tMax). If set, the parameter space remains
// (tMin <= t <= tMax), except that additions of data with parametric
// values outside this range are clamped within this range.
// .SECTION See Also
// vtkCardinalSpline vtkKochenekSpline vtkParametricSpline
// vtkParametricFunctionSource
#ifndef vtkSpline_h
#define vtkSpline_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkObject.h"
class vtkPiecewiseFunction;
class VTKCOMMONDATAMODEL_EXPORT vtkSpline : public vtkObject
{
public:
vtkTypeMacro(vtkSpline,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set/Get the parametric range. If not set, the range is determined
// implicitly by keeping track of the (min,max) parameter values for
// t. If set, the AddPoint() method will clamp the t value to lie
// within the specified range.
void SetParametricRange(double tMin, double tMax);
void SetParametricRange(double tRange[2])
{this->SetParametricRange(tRange[0],tRange[1]);}
void GetParametricRange(double tRange[2]) const;
// Description:
// Set/Get ClampValue. If On, results of the interpolation will be
// clamped to the min/max of the input data.
vtkSetMacro(ClampValue,int);
vtkGetMacro(ClampValue,int);
vtkBooleanMacro(ClampValue,int);
// Description:
// Compute the coefficients for the spline.
virtual void Compute () = 0;
// Description:
// Interpolate the value of the spline at parametric location of t.
virtual double Evaluate (double t) = 0;
// Description:
// Return the number of points inserted thus far.
int GetNumberOfPoints();
// Description:
// Add a pair of points to be fit with the spline.
void AddPoint (double t, double x);
// Description:
// Remove a point from the data to be fit with the spline.
void RemovePoint (double t);
// Description:
// Remove all points from the data.
void RemoveAllPoints ();
// Description:
// Control whether the spline is open or closed. A closed spline forms
// a continuous loop: the first and last points are the same, and
// derivatives are continuous.
vtkSetMacro(Closed,int);
vtkGetMacro(Closed,int);
vtkBooleanMacro(Closed,int);
// Description:
// Set the type of constraint of the left(right) end points. Four
// constraints are available:
//
// 0: the first derivative at left(right) most point is determined
// from the line defined from the first(last) two points.
//
// 1: the first derivative at left(right) most point is set to
// Left(Right)Value.
//
// 2: the second derivative at left(right) most point is set to
// Left(Right)Value.
//
// 3: the second derivative at left(right)most points is Left(Right)Value
// times second derivative at first interior point.
vtkSetClampMacro(LeftConstraint,int,0,3);
vtkGetMacro(LeftConstraint,int);
vtkSetClampMacro(RightConstraint,int,0,3);
vtkGetMacro(RightConstraint,int);
// Description:
// The values of the derivative on the left and right sides. The value
// is used only if the left(right) constraint is type 1-3.
vtkSetMacro(LeftValue,double);
vtkGetMacro(LeftValue,double);
vtkSetMacro(RightValue,double);
vtkGetMacro(RightValue,double);
// Description:
// Return the MTime also considering the Piecewise function.
unsigned long GetMTime();
// Description:
// Deep copy of spline data.
virtual void DeepCopy(vtkSpline *s);
protected:
vtkSpline();
~vtkSpline();
unsigned long ComputeTime;
int ClampValue;
double *Intervals;
double *Coefficients;
int LeftConstraint;
double LeftValue;
int RightConstraint;
double RightValue;
vtkPiecewiseFunction *PiecewiseFunction;
int Closed;
// Explicitly specify the parametric range.
double ParametricRange[2];
// Helper methods
double ComputeLeftDerivative();
double ComputeRightDerivative();
int FindIndex(int size, double t);
private:
vtkSpline(const vtkSpline&); // Not implemented.
void operator=(const vtkSpline&); // Not implemented.
};
#endif
|