C# 클래스 AForge.IntRange

파일 보기 프로젝트 열기: atosorigin/Kinect 1 사용 예제들

공개 메소드들

메소드 설명
IntRange ( int min, int max )

Initializes a new instance of the IntRange class.

IsInside ( IntRange range ) : bool

Check if the specified range is inside of the range.

IsInside ( int x ) : bool

Check if the specified value is inside of the range.

IsOverlapping ( IntRange range ) : bool

Check if the specified range overlaps with the range.

메소드 상세

IntRange() 공개 메소드

Initializes a new instance of the IntRange class.
public IntRange ( int min, int max )
min int Minimum value of the range.
max int Maximum value of the range.

IsInside() 공개 메소드

Check if the specified range is inside of the range.
public IsInside ( IntRange range ) : bool
range IntRange Range to check.
리턴 bool

IsInside() 공개 메소드

Check if the specified value is inside of the range.
public IsInside ( int x ) : bool
x int Value to check.
리턴 bool

IsOverlapping() 공개 메소드

Check if the specified range overlaps with the range.
public IsOverlapping ( IntRange range ) : bool
range IntRange Range to check for overlapping.
리턴 bool