C# 클래스 SANTA.Datatype.DoublePoint

A structure that holds a point using double-precision numerics.
파일 보기 프로젝트 열기: siegleal/iSanta

공개 프로퍼티들

프로퍼티 타입 설명
X double
Y double

공개 메소드들

메소드 설명
DoublePoint ( double newXPoint, double newYPoint ) : System

Constructor to set points when created.

메소드 상세

DoublePoint() 공개 메소드

Constructor to set points when created.
public DoublePoint ( double newXPoint, double newYPoint ) : System
newXPoint double X Coordinate
newYPoint double Y Coordinate
리턴 System

프로퍼티 상세

X 공개적으로 프로퍼티

The x-coordinate of the point.
public double X
리턴 double

Y 공개적으로 프로퍼티

The y-coordinate of the point.
public double Y
리턴 double