Struct FloatRange
Represents a range over float values.
public readonly struct FloatRange
- Inherited Members
Constructors
FloatRange(string, float, bool, float, bool)
public FloatRange(string label, float min, bool minInclusive, float max, bool maxInclusive)
Parameters
Properties
Label
Label that identifies this range.
public string Label { get; }
Property Value
Max
Maximum.
public float Max { get; }
Property Value
MaxInclusive
True if the maximum value is inclusive.
public bool MaxInclusive { get; }
Property Value
Min
Minimum.
public float Min { get; }
Property Value
MinInclusive
True if the minimum value is inclusive.
public bool MinInclusive { get; }