A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
657 B

// Copyright (c) 2009-2010 Math.NET Taken from http://github.com/mathnet/mathnet-numerics and modified for Wasabi Wallet
namespace MathNet
{
/// <summary>
/// Left and right boundary conditions.
/// </summary>
public enum SplineBoundaryCondition
{
/// <summary>
/// Natural Boundary (Zero second derivative).
/// </summary>
Natural = 0,
/// <summary>
/// Parabolically Terminated boundary.
/// </summary>
ParabolicallyTerminated,
/// <summary>
/// Fixed first derivative at the boundary.
/// </summary>
FirstDerivative,
/// <summary>
/// Fixed second derivative at the boundary.
/// </summary>
SecondDerivative
}
}