C# Class ControlSystem.VecPoint

Class to contain point for use in one of the vector classes.
ファイルを表示 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_oe property

public int iPitch
return int

iRoll public_oe property

public int iRoll
return int

iX public_oe property

public int iX
return int

iY public_oe property

public int iY
return int

iZ public_oe property

public int iZ
return int