Module: GOffice::LineInterpolation
- Defined in:
- (unknown)
Constant Summary collapse
- LINEAR =
Linear interpolation.
0 or :linear
- SPLINE =
Bezier cubic spline interpolation.
1 or :spline
- CLOSED_SPLINE =
Closed Bezier cubic spline interpolation.
2 or :closed_spline
- CUBIC_SPLINE =
Cubic spline interpolation with natural limits.
3 or :cubic_spline
- PARABOLIC_CUBIC_SPLINE =
Cubic spline interpolation with parabolic limits.
4 or :parabolic_cubic_spline
- CUBIC_CUBIC_SPLINE =
Cubic spline interpolation with cubic limits.
5 or :cubic_cubic_spline
- CLAMPED_CUBIC_SPLINE =
Cubic spline interpolation with fixed derivatives at both ends.
6 or :clamped_cubic_spline
- STEP_START =
Steps using first y value.
7 or :step_start
- STEP_END =
Steps using last y value.
8 or :step_end
- STEP_CENTER_X =
Steps centered around each point.
9 or :step_center_x
- STEP_CENTER_Y =
Steps using mean y value.
10 or :step_center_y
- ODF_SPLINE =
ODF compatible Bezier cubic spline interpolation, cyclic if first and last points are identical.
11 or :odf_spline
- MAX =
First invalid value.
12 or :max