Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/SceneManagement.h |
| Include | #include "SceneManagement.h" |
| Source | /Engine/Source/Runtime/Engine/Private/PrimitiveDrawingUtils.cpp |
void DrawWireChoppedCone
(
class FPrimitiveDrawInterface * PDI,
const FVector & Base,
const FVector & X,
const FVector & Y,
const FVector & Z,
const FLinearColor & Color,
double Radius,
double TopRadius,
double HalfHeight,
int32 NumSides,
uint8 DepthPriority
)
Remarks
Draws a wireframe chopped cone (cylinder with independent top and bottom radius).
Parameters
| Name | Description |
|---|---|
| PDI | Draw interface. |
| Base | Center pointer of the base of the cone. |
| X | X alignment axis to draw along. |
| Y | Y alignment axis to draw along. |
| Z | Z alignment axis to draw along. |
| Color | Color of the cone. |
| Radius | Radius of the cone at the bottom. |
| TopRadius | Radius of the cone at the top. |
| HalfHeight | Half of the height of the cone. |
| NumSides | Numbers of sides that the cone has. |
| DepthPriority | Depth priority for the cone. |