PointD

Delphi TPointD = record X, Y: double; end;

C++ struct PointD { double x; double y; };

C#  public struct PointD { public double X; { get; set; } public double Y; { get; set; } ... };


The PointD structure is used to represent a single floating point coordinate. A series of these coordinates forms a PathD structure.

See Also

PathD, Point64