Class Point
Point class
Represent point with fractional coordinates.
public sealed class Point
Constructors
| Name | Description |
|---|
| Point(double, double) | Initializes new instance of the Point. |
Properties
| Name | Description |
|---|
| static Trivial { get; } | Gets point with zero coordinates. |
| X { get; set; } | X coordinate value. |
| Y { get; set; } | Y coordinate value. |
Methods
| Name | Description |
|---|
| 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