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