siFCurveSmoothFilterType Enum


Enumerations

enum   siFCurveSmoothFilterType {
  siFCurveAverageFilterType = 1,
  siFCurveGaussianFilterType = 2
}

Detailed Description

Specifies the kind of filter used for smoothing function curves.
See also:
FCurve::Smooth, FCurve::Smooth

Enumeration Type Documentation

enum siFCurveSmoothFilterType

Enumerator:
siFCurveAverageFilterType  [1] Moving Average filter. Use this filter to smooth the function curve by applying a moving average. The weights of the averages are uniformly distributed.
siFCurveGaussianFilterType  [2] Gaussian filter. Use this filter to smooth the function curve by applying a moving average. The weights of the averages are distributed as a bell curve. This usually gives better results than the average filter.