DrawCylinderEx method

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

Implementation

void DrawCylinderEx(
  Vector3C startPos,
  Vector3C endPos,
  double startRadius,
  double endRadius,
  int sides,
  ColorC color,
) {
  return _DrawCylinderEx(
    startPos,
    endPos,
    startRadius,
    endRadius,
    sides,
    color,
  );
}