# Circle

### Introduction

The Circle method draws a circle of the argument radius at the argument position.

### Code Example: Drawing a Circle at the Cursor

```csharp
float radius = 10;
EditorVisuals.Circle(radius, GuiManager.Cursor.WorldPosition.ToVector3());
```

<figure><img src="https://951240982-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M_fye9Ufg3vzJxwX5Hk%2Fuploads%2FbF7rBRAtyed0IyxGBeIn%2Fimage.png?alt=media&#x26;token=deaa6591-dd87-42aa-bfd3-c7968738d283" alt=""><figcaption><p>Circle drawn at the cursor position</p></figcaption></figure>
