drawSphereEx function

void drawSphereEx(
  1. Vector3 centerPos,
  2. double radius,
  3. int rings,
  4. int slices,
  5. Color color,
)

Draw sphere with extended parameters.

Implementation

void drawSphereEx(
  Vector3 centerPos,
  double radius,
  int rings,
  int slices,
  Color color,
) {
  return library.DrawSphereEx(
    centerPos.ref,
    radius,
    rings,
    slices,
    color.ref,
  );
}