MeVisLab Toolbox Reference
CSOGeneratePathPoints.h File Reference
#include "MLCSOIncludes.h"
#include <CSOBase/CSO.h>

Go to the source code of this file.

Namespaces

 ml
 Main documentation file for ML users and developers.
 
 ml::CSOGeneratePathPoints
 The CSOGeneratePathPoints namespace offers interpolation methods (computing path points between seed points) as a linear interpolation, a spline interpolation and a spline approximation.
 

Enumerations

enum  ml::SplineModes { ml::SPLINE_MODE_INTERPOLATION = 0 , ml::SPLINE_MODE_APPROXIMATION = 1 }
 Enumeration of the different spline modes. More...
 

Functions

MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillAllPathPointsLinear (CSO *cso, double pointDistanceInMM=1)
 Fills all CSOPathPoints of the given CSO by a linear interpolation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillAllPathPointsSpline (CSO *cso, double pointDistanceInMM=1, int splineMode=0)
 Fills all CSOPathPoints of the given CSO by a spline method splineMode. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillAllPathPointsSplineInterpolation (CSO *cso, double pointDistanceInMM=1)
 Fills all CSOPathPoints of the given CSO by a spline interpolation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillAllPathPointsSplineApproximation (CSO *cso, double pointDistanceInMM=1)
 Fills all CSOPathPoints of the given CSO by a spline approximation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillAllPathPointsWithSeedPoints (CSO *cso)
 Fills all CSOPathPoints of the given CSO by setting each seed point as a path point. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::smoothPointsSplineApproximation (const std::vector< Vector3 > &inputPoints, std::vector< Vector3 > &outputPoints)
 Smooths the given positions by a spline approximation. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::smoothPointsSplineInterpolation (const std::vector< Vector3 > &inputPoints, std::vector< Vector3 > &outputPoints)
 Smooths the given positions by a spline interpolation. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::smoothPointsSpline (const std::vector< Vector3 > &inputPoints, std::vector< Vector3 > &outputPoints, SplineModes splineMode)
 Smooths the given positions by a spline interpolation. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointEllipse (CSO *cso, double pointDistanceInMM=1)
 Fills up the CSOPathPoints of the given CSOs to result in an ellipse. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsLinear (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a linear interpolation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsHermite (CSO *cso, CSOPathPoints *pPoints, const Vector3 &tangentTail, const Vector3 &tangentHead, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a Hermite interpolation method using the given tangents for the head and the tail of the path. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSpline (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM=1, int splineMode=0)
 Fills up the given CSOPathPoints of the given CSO by a spline method splineMode. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSplineInterpolation (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a spline interpolation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSplineApproximation (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a spline approximation method. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSplineInterpolation (CSO *cso, CSOPathPoints *pPoints, const std::vector< Vector3 > &positions, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a spline interpolation method on base of the given positions. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSplineApproximation (CSO *cso, CSOPathPoints *pPoints, const std::vector< Vector3 > &positions, double pointDistanceInMM=1)
 Fills up the given CSOPathPoints of the given CSO by a spline approximation method on base of the given positions. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSpline (CSO *cso, CSOPathPoints *pPoints, const std::vector< Vector3 > &positions, double pointDistanceInMM=1, int splineMode=0)
 Fills up the given CSOPathPoints of the given CSO by a spline method splineMode on base of the given positions. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsWithSeedPoint (CSO *cso, CSOPathPoints *pPoints)
 Fills up the given CSOPathPoints of the given CSO by the corresponding seed point. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::reduceToOneSeedPoint (CSO *cso)
 Removes all seed points but the first, leaving only one path point list with all the positions. More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsLinearNoPathChanged (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM)
 Like fillPathPointsLinear, without calling pathChanged(). More...
 
MLCSO_EXPORT void ml::CSOGeneratePathPoints::fillPathPointsSplineNoPathChanged (CSO *cso, CSOPathPoints *pPoints, double pointDistanceInMM, int splineMode)
 Like fillPathPointsSpline, without calling pathChanged(). More...
 
double ml::CSOGeneratePathPoints::_catmullRomBasisFunc (int i, double t)
 Computes value of a basis function at section i of a Catmull-Rom spline. More...
 
void ml::CSOGeneratePathPoints::_computeSingleCatmullRomPoint (int i, double t, Vector3 &pos, double *xCoords, double *yCoords, double *zCoords)
 Computes a single point for the Catmull-Rom spline interpolation. More...
 
double ml::CSOGeneratePathPoints::_B_SplineBasisFunc (int i, double t)
 Computes value of a basis function at section i of a B-Spline. More...
 
void ml::CSOGeneratePathPoints::_computeSingleB_SplinePoint (int i, double t, Vector3 &pos, double *xCoords, double *yCoords, double *zCoords)
 Computes a single point for the B-Spline approximation. More...