C# Class ControlSystem.VecPoint

Class to contain point for use in one of the vector classes.
Show file Open project: syre/SortingIndustrialRobot Class Usage Examples

Public Properties

Property Type Description
iPitch int
iRoll int
iX int
iY int
iZ int

Public Methods

Method Description
ToString ( ) : string

The position in string format.

VecPoint ( int _iX, int _iY, int _iZ, int _iPitch, int _iRoll ) : System

Constructor setting up the point location.

Method Details

ToString() public method

The position in string format.
public ToString ( ) : string
return string

VecPoint() public method

Constructor setting up the point location.
public VecPoint ( int _iX, int _iY, int _iZ, int _iPitch, int _iRoll ) : System
_iX int X coordinate.
_iY int Y coordinate.
_iZ int Z coordinate.
_iPitch int Pitch.
_iRoll int Roll.
return System

Property Details

iPitch public property

public int iPitch
return int

iRoll public property

public int iRoll
return int

iX public property

public int iX
return int

iY public property

public int iY
return int

iZ public property

public int iZ
return int