AForge.Range.Range C# (CSharp) Method

Range() public method

Initializes a new instance of the Range structure.
public Range ( float min, float max ) : System
min float Minimum value of the range.
max float Maximum value of the range.
return System
		public Range( float min, float max )
		{
			this.min = min;
			this.max = max;
		}