DrawCapsuleWires method
void
DrawCapsuleWires()
override
Draw capsule wireframe with the center of its sphere caps at startPos and endPos
Implementation
@override
void DrawCapsuleWires(
Vector3D startPos,
Vector3D endPos,
double radius,
int slices,
int rings,
ColorD color,
) => _ffi.DrawCapsuleWires(
$.Vector3$.Ref1(startPos).asNativePointer<Vector3C>().ref,
$.Vector3$.Ref2(endPos).asNativePointer<Vector3C>().ref,
radius,
slices,
rings,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);