RationalCurve Constructor

Constructs a new RationalCurve with the specified degrees in the numerator and the denominator.

Definition

Namespace: Extreme.Mathematics.Curves.Nonlinear
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public RationalCurve(
	int degreeOfNumerator,
	int degreeOfDenominator
)

Parameters

degreeOfNumerator  Int32
The degree of the polynomial in the numerator.
degreeOfDenominator  Int32
The degree of the polynomial in the denominator.

Exceptions

ArgumentOutOfRangeException

degreeOfNumerator is less than zero.

-or-

degreeOfDenominator is less than zero.

See Also