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
Properties
Center
public double Center { get; }
Property Value
Max
The upper bound of the interval
public double Max { get; }
Property Value
Min
The lower bound of the interval
public double Min { get; }
Property Value
Width
public double Width { get; }
Property Value
Methods
Contains(double)
Returns true if the value is between Min and Max including the boundries
public bool Contains(double value)
Parameters
value
double