C# 클래스 WinRTXamlToolkit.Controls.DoublePoint

Defines a point specified with double precision coordinates. Note that a Point struct specifies its dimensions using double precision X and Y coordinates, but the backing native struct that is projected to CLR is using single precision float values.
파일 보기 프로젝트 열기: xyzzer/WinRTXamlToolkit

공개 프로퍼티들

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

공개 메소드들

메소드 설명
DoublePoint ( double x, double y ) : System

Initializes a new instance of the DoublePoint struct.

메소드 상세

DoublePoint() 공개 메소드

Initializes a new instance of the DoublePoint struct.
public DoublePoint ( double x, double y ) : System
x double The x.
y double The y.
리턴 System

프로퍼티 상세

X 공개적으로 프로퍼티

The X coordinate.
public double X
리턴 double

Y 공개적으로 프로퍼티

The Y coordinate.
public double Y
리턴 double