C# Class ControlSystem.SIRVector

Base class for vector used in wrapper. Should use the derived classes.
Afficher le fichier Open project: syre/SortingIndustrialRobot Class Usage Examples

Méthodes publiques

Свойство Type Description
lstPoints List

Protected Properties

Свойство Type Description
iType int
sName string

Méthodes publiques

Méthode Description
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.

Method Details

addPoint() public méthode

Add a point to the vector.
public addPoint ( VecPoint pNewVecPoint ) : void
pNewVecPoint VecPoint
Résultat void

getPoint() public méthode

Gets a point from the vector.
public getPoint ( int iIndex ) : VecPoint
iIndex int Index of the point.
Résultat VecPoint

getSize() public méthode

Number of points in vector.
public getSize ( ) : int
Résultat int

Property Details

iType protected_oe property

Type of vector.(Should be set in classes inheriting from this.)
protected int iType
Résultat int

lstPoints public_oe property

public List lstPoints
Résultat List

sName protected_oe property

protected string sName
Résultat string