Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/DrawDebugHelpers.h |
| Include | #include "DrawDebugHelpers.h" |
| Source | /Engine/Source/Runtime/Engine/Private/DrawDebugHelpers.cpp |
void DrawDebugCanvasCircle
(
UCanvas * Canvas,
const FVector & Base,
const FVector & X,
const FVector & Y,
FColor Color,
float Radius,
int32 NumSides
)
Remarks
Draws a circle using lines.
Parameters
| Name | Description |
|---|---|
| Canvas | The Canvas to draw on. |
| Base | Center of the circle. |
| X | X alignment axis to draw along. |
| Y | Y alignment axis to draw along. |
| Color | Color of the circle. |
| Radius | Radius of the circle. |
| NumSides | Numbers of sides that the circle has. |