C# Class NPlot.PointD

Represtents a point in two-dimensional space. Used for representation of points world coordinates.
Show file Open project: GridProtectionAlliance/openHistorian Class Usage Examples

Public Properties

Property Type Description
X double
Y double

Public Methods

Method Description
PointD ( double x, double y )

Constructor

ToString ( ) : string

returns a string representation of the point.

Method Details

PointD() public method

Constructor
public PointD ( double x, double y )
x double X-Coordinate of the point.
y double Y-Coordinate of the point.

ToString() public method

returns a string representation of the point.
public ToString ( ) : string
return string

Property Details

X public property

X-Coordinate of the point.
public double X
return double

Y public property

Y-Coordinate of the point.
public double Y
return double