translate method

Sphere translate(
  1. Vector3 offset
)

Implementation

Sphere translate(Vector3 offset) {
  center.add(offset);

  return this;
}