C# Class SANTA.Datatype.DoublePoint

A structure that holds a point using double-precision numerics.
Afficher le fichier Open project: siegleal/iSanta

Méthodes publiques

Свойство Type Description
X double
Y double

Méthodes publiques

Méthode Description
DoublePoint ( double newXPoint, double newYPoint ) : System

Constructor to set points when created.

Method Details

DoublePoint() public méthode

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

Property Details

X public_oe property

The x-coordinate of the point.
public double X
Résultat double

Y public_oe property

The y-coordinate of the point.
public double Y
Résultat double