C# 클래스 ControlSystem.SIRVector

Base class for vector used in wrapper. Should use the derived classes.
파일 보기 프로젝트 열기: syre/SortingIndustrialRobot 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
lstPoints List

보호된 프로퍼티들

프로퍼티 타입 설명
iType int
sName string

공개 메소드들

메소드 설명
addPoint ( VecPoint pNewVecPoint ) : void

Add a point to the vector.

getPoint ( int iIndex ) : VecPoint

Gets a point from the vector.

getSize ( ) : int

Number of points in vector.

메소드 상세

addPoint() 공개 메소드

Add a point to the vector.
public addPoint ( VecPoint pNewVecPoint ) : void
pNewVecPoint VecPoint
리턴 void

getPoint() 공개 메소드

Gets a point from the vector.
public getPoint ( int iIndex ) : VecPoint
iIndex int Index of the point.
리턴 VecPoint

getSize() 공개 메소드

Number of points in vector.
public getSize ( ) : int
리턴 int

프로퍼티 상세

iType 보호되어 있는 프로퍼티

Type of vector.(Should be set in classes inheriting from this.)
protected int iType
리턴 int

lstPoints 공개적으로 프로퍼티

public List lstPoints
리턴 List

sName 보호되어 있는 프로퍼티

protected string sName
리턴 string