Struct PointD
Simple struct that stores X and Y coordinates as doubles.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
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 |
---|---|---|
System.Double | x | The X coordinate |
System.Double | y | The Y coordinate |
Fields
| Improve this Doc View SourceX
The X coordinate
Declaration
public double X
Field Value
Type | Description |
---|---|
System.Double |
Y
The Y coordinate
Declaration
public double Y
Field Value
Type | Description |
---|---|
System.Double |