C# 클래스 ControlSystem.VecPoint

Class to contain point for use in one of the vector classes.
파일 보기 프로젝트 열기: syre/SortingIndustrialRobot 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
iPitch int
iRoll int
iX int
iY int
iZ int

공개 메소드들

메소드 설명
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.

메소드 상세

ToString() 공개 메소드

The position in string format.
public ToString ( ) : string
리턴 string

VecPoint() 공개 메소드

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.
리턴 System

프로퍼티 상세

iPitch 공개적으로 프로퍼티

public int iPitch
리턴 int

iRoll 공개적으로 프로퍼티

public int iRoll
리턴 int

iX 공개적으로 프로퍼티

public int iX
리턴 int

iY 공개적으로 프로퍼티

public int iY
리턴 int

iZ 공개적으로 프로퍼티

public int iZ
리턴 int