Struct PointDouble
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Point, double format.
public struct PointDouble
- Inherited Members
Constructors
PointDouble(PointDoubleXY)
Construct the point by using PointDoubleXY as source info.
public PointDouble(PointDoubleXY point)
Parameters
pointPointDoubleXYSource point
PointDouble(double, double)
Constructor.
public PointDouble(double x, double y)
Parameters
Fields
X
X value.
public double X
Field Value
Y
Y value.
public double Y
Field Value
Methods
Equals(object)
Object equals to PointDouble.
public override bool Equals(object obj)
Parameters
objobjectObject.
Returns
- bool
True if object equals to PointDouble, otherwise false.
ToString()
Convert class description to string.
public override string ToString()
Returns
- string
Class description as a string.
Operators
operator ==(PointDouble, PointDouble)
Identity of two points.
public static bool operator ==(PointDouble a, PointDouble b)
Parameters
aPointDoublePointDouble a.
bPointDoublePointDouble b.
Returns
- bool
True if points are identical, otherwise false.
operator !=(PointDouble, PointDouble)
Difference of two points.
public static bool operator !=(PointDouble a, PointDouble b)
Parameters
aPointDoublePointDouble a.
bPointDoublePointDouble b.
Returns
- bool
True if points are different, otherwise false.