DrawCylinderEx method

void DrawCylinderEx(
  1. Vector3C startPos,
  2. Vector3C endPos,
  3. double startRadius,
  4. double endRadius,
  5. int sides,
  6. ColorC color,
)

Draw a cylinder with base at startPos and top at endPos

Implementation

void DrawCylinderEx(Vector3C startPos, Vector3C endPos, double startRadius, double endRadius, int sides, ColorC color)
  => _DrawCylinderEx(startPos, endPos, startRadius, endRadius, sides, color);