[]
Represents a range of a float value.
public struct RangeF : IEquatable<RangeF>
Initializes a new instance of the RangeF struct.
public RangeF(float min, float max)
The maximum value.
public float Max
The minimal value.
public float Min
public bool Equals(RangeF other)
other
RangeFpublic override bool Equals(object obj)
obj
objectpublic override int GetHashCode()
Multiplies this Range by the v
.
public void Multiply(float v)
v
floatOffsets this Range by the v
.
public void Offset(float v)
v
floatpublic override string ToString()
Tests whether two specified RangeF structs are equivalent.
public static bool operator ==(RangeF v1, RangeF v2)
Tests whether two specified RangeF structs are NOT equivalent.
public static bool operator !=(RangeF v1, RangeF v2)