DrawCapsule method

void DrawCapsule(
  1. Vector3C startPos,
  2. Vector3C endPos,
  3. double radius,
  4. int slices,
  5. int rings,
  6. ColorC color,
)

Draw a capsule with the center of its sphere caps at startPos and endPos

Implementation

void DrawCapsule(Vector3C startPos, Vector3C endPos, double radius, int slices, int rings, ColorC color)
  => _DrawCapsule(startPos, endPos, radius, slices, rings, color);