Creates a new interval, given its lower endpoint and width.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Interval FromEndpointAndWidth(
	double endpoint,
	double width
)
Public Shared Function FromEndpointAndWidth ( _
	endpoint As Double, _
	width As Double _
) As Interval
public:
static Interval FromEndpointAndWidth(
	double endpoint, 
	double width
)

Parameters

endpoint
Double
The left (lower) endpoint of the interval.
width
Double
The width of the interval.

Return Value

The specified interval.

See Also