Table of Contents

Class IntervalD

Namespace
FellowOakDicom.Imaging.Mathematics
Assembly
fo-dicom.core.dll

Represents an interval of double values

public class IntervalD
Inheritance
IntervalD
Inherited Members
Extension Methods

Constructors

IntervalD(double, double)

public IntervalD(double min, double max)

Parameters

min double
max double

Properties

Center

public double Center { get; }

Property Value

double

Max

The upper bound of the interval

public double Max { get; }

Property Value

double

Min

The lower bound of the interval

public double Min { get; }

Property Value

double

Width

public double Width { get; }

Property Value

double

Methods

Contains(double)

Returns true if the value is between Min and Max including the boundries

public bool Contains(double value)

Parameters

value double

Returns

bool