API Documentation
Loading...
Searching...
No Matches
SplineEnums.h
Go to the documentation of this file.
1#pragma once
2#include <NDEVR/StringStream.h>
3namespace NDEVR
4{
5 // spline types
6 enum class SplineType
7 {
8 e_linear = 10, // linear interpolation
9 e_cspline = 30, // cubic splines (classical C^2)
10 e_cspline_hermite = 31 // cubic hermite splines (local, only C^1)
11 };
12
13 // boundary condition type for the spline end-points
15 {
16 e_first_deriv = 1,
18 e_not_a_knot = 3
19 };
20
22}
#define NDEVR_BASE_API
Definition DLLInfo.h:78
Definition StringStream.h:62
Definition ACIColor.h:37
SplineType
Definition SplineEnums.h:7
@ e_linear
Definition BaseValues.hpp:257
SplineBoundaryType
Definition SplineEnums.h:15