Share via


PathF.AppendCircle Method

Definition

Overloads

AppendCircle(PointF, Single)

Appends an approximated circle path centered at the specified point.

AppendCircle(Single, Single, Single)

Appends an approximated circle path centered at the specified point.

AppendCircle(PointF, Single)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Appends an approximated circle path centered at the specified point.

public:
 void AppendCircle(Microsoft::Maui::Graphics::PointF center, float r);
public void AppendCircle(Microsoft.Maui.Graphics.PointF center, float r);
member this.AppendCircle : Microsoft.Maui.Graphics.PointF * single -> unit
Public Sub AppendCircle (center As PointF, r As Single)

Parameters

center
PointF

Center point.

r
Single

Radius.

Applies to

AppendCircle(Single, Single, Single)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Appends an approximated circle path centered at the specified point.

public:
 void AppendCircle(float cx, float cy, float r);
public void AppendCircle(float cx, float cy, float r);
member this.AppendCircle : single * single * single -> unit
Public Sub AppendCircle (cx As Single, cy As Single, r As Single)

Parameters

cx
Single

Center X.

cy
Single

Center Y.

r
Single

Radius.

Applies to