Navigation
API > API/Runtime > API/Runtime/Engine
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void DrawCircle
(
const UWorld* InWorld, |
Draw a circle using user define axis and radius | DrawDebugHelpers.h | |
void DrawCircle
(
FPrimitiveDrawInterface* PDI, |
Draws a wireframe circle. | PrimitiveDrawingUtils.h |
DrawCircle(const UWorld *, const FVector &, const FVector &, const FVector &, const FColor &, double, int32, bool, float, uint8, float)
Description
Draw a circle using user define axis and radius
| Name | DrawCircle |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/DrawDebugHelpers.h |
| Include Path | #include "DrawDebugHelpers.h" |
| Source | /Engine/Source/Runtime/Engine/Private/DrawDebugHelpers.cpp |
void DrawCircle
(
const UWorld * InWorld,
const FVector & Base,
const FVector & X,
const FVector & Y,
const FColor & Color,
double Radius,
int32 NumSides,
bool bPersistentLines,
float LifeTime,
uint8 DepthPriority,
float Thickness
)
DrawCircle(class FPrimitiveDrawInterface *, const FVector &, const FVector &, const FVector &, const FLinearColor &, double, int32, uint8, float, float, bool)
Description
Draws a wireframe circle.
| Name | DrawCircle |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/PrimitiveDrawingUtils.h |
| Include Path | #include "PrimitiveDrawingUtils.h" |
| Source | /Engine/Source/Runtime/Engine/Private/PrimitiveDrawingUtils.cpp |
void DrawCircle
(
class FPrimitiveDrawInterface * PDI,
const FVector & Base,
const FVector & X,
const FVector & Y,
const FLinearColor & Color,
double Radius,
int32 NumSides,
uint8 DepthPriority,
float Thickness,
float DepthBias,
bool bScreenSpace
)
Parameters
| Name | Remarks |
|---|---|
| PDI | Draw interface. |
| Center | Center of the circle. |
| X | X alignment axis to draw along. |
| Y | Y alignment axis to draw along. |
| Color | Color of the cylinder. |
| Radius | Radius of the cylinder. |
| NumSides | Numbers of sides that the cylinder has. |
| DepthPriority | Depth priority for the cylinder. |
| Thickness | Thickness of the lines comprising the circle |