// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
namespace CommonLang.Geometry
{
///
/// Defines the different tangent types to be calculated for points in a .
///
public enum CurveTangent
{
///
/// The tangent which always has a value equal to zero.
///
Flat,
///
/// The tangent which contains a difference between current tangent value and the tangent value from the previous .
///
Linear,
///
/// The smoouth tangent which contains the inflection between and by taking into account the values of both neighbors of the .
///
Smooth
}
}