C# Class SANTA.Datatype.DoublePoint

A structure that holds a point using double-precision numerics.
Show file Open project: siegleal/iSanta

Public Properties

Property Type Description
X double
Y double

Public Methods

Method Description
DoublePoint ( double newXPoint, double newYPoint ) : System

Constructor to set points when created.

Method Details

DoublePoint() public method

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

Property Details

X public property

The x-coordinate of the point.
public double X
return double

Y public property

The y-coordinate of the point.
public double Y
return double