C# Class 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.
Mostra file Open project: xyzzer/WinRTXamlToolkit

Public Properties

Property Type Description
X double
Y double

Public Methods

Method Description
DoublePoint ( double x, double y ) : System

Initializes a new instance of the DoublePoint struct.

Method Details

DoublePoint() public method

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

Property Details

X public_oe property

The X coordinate.
public double X
return double

Y public_oe property

The Y coordinate.
public double Y
return double