Class Point

Point class

Represent point with fractional coordinates.

public sealed class Point

Constructors

NameDescription
Point(double, double)Initializes new instance of the Point.

Properties

NameDescription
static Trivial { get; }Gets point with zero coordinates.
X { get; set; }X coordinate value.
Y { get; set; }Y coordinate value.

Methods

NameDescription
ToPoint()Converts point into System.Drawing.PointF object.
override ToString()Return string represention current point.
static Distance(Point, Point)Calculates distance between two points.

See Also