Struct PointD
Simple struct that stores X and Y coordinates as doubles.
Inherited Members
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
[Serializable]
public struct PointD
Constructors
| Improve this Doc View SourcePointD(Double, Double)
Construct a PointD object from two double values.
Declaration
public PointD(double x, double y)
Parameters
Type | Name | Description |
---|---|---|
Double | x | The X coordinate |
Double | y | The Y coordinate |
Fields
| Improve this Doc View SourceX
The X coordinate
Declaration
public double X
Field Value
Type | Description |
---|---|
Double |
Y
The Y coordinate
Declaration
public double Y
Field Value
Type | Description |
---|---|
Double |