Class Point
Class Point.
public class Point
- Inheritance
-
Point
- Derived
- Inherited Members
Constructors
Point()
public Point()
Properties
X
Gets or sets the x.
public double X { get; set; }
Property Value
- double
The x.
Y
Gets or sets the y.
public double Y { get; set; }
Property Value
- double
The y.
Methods
Render()
Renders this instance.
public string Render()
Returns
- string
System.String.
ToCartesian(double, double)
Converts to cartesian.
public Point ToCartesian(double radius, double angle)
Parameters
Returns
- Point
Point.