drawSphereWires function

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

Draw sphere wires.

Implementation

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