drawSphere function

void drawSphere(
  1. Vector3 centerPos,
  2. double radius,
  3. Color color
)

Draw sphere.

Implementation

void drawSphere(Vector3 centerPos, double radius, Color color) {
  return library.DrawSphere(centerPos.ref, radius, color.ref);
}