Table of Contents

Class Point

Namespace
Radzen.Blazor
Assembly
Radzen.Blazor.dll

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

radius double

The radius.

angle double

The angle.

Returns

Point

Point.