C# Class ControlSystem.SIRVector

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

Public Properties

Property Type Description
lstPoints List

Protected Properties

Property Type Description
iType int
sName string

Public Methods

Method 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 method

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

getPoint() public method

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

getSize() public method

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

Property Details

iType protected_oe property

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

lstPoints public_oe property

public List lstPoints
return List

sName protected_oe property

protected string sName
return string