Class Point
Class Point.
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class Point
Constructors
Point()
Class Point.
Declaration
public Point()
Properties
X
Gets or sets the x.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
double | The x. |
Y
Gets or sets the y.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
double | The y. |
Methods
Render()
Renders this instance.
Declaration
public string Render()
Returns
Type | Description |
---|---|
string | System.String. |
ToCartesian(double, double)
Converts to cartesian.
Declaration
public Point ToCartesian(double radius, double angle)
Parameters
Type | Name | Description |
---|---|---|
double | radius | The radius. |
double | angle | The angle. |
Returns
Type | Description |
---|---|
Point | Point. |