DrawCapsuleWires method
void
DrawCapsuleWires()
Draw capsule wireframe with the center of its sphere caps at startPos and endPos
Implementation
void DrawCapsuleWires(
Vector3D startPos,
Vector3D endPos,
num radius,
num slices,
num rings,
ColorD color,
) => run(
() => _debugLabels.DrawCapsuleWires(startPos, endPos, radius, slices, rings, color),
() => _flat.DrawCapsuleWires(
startPos,
endPos,
radius.toDouble(),
slices.toInt(),
rings.toInt(),
color,
),
);