vtkSphere : passing a null parameter in ComputeBoundingSphere from Python

Though this won’t help people using the current version of VTK, vtkSphere should add an overload that defaults hints to nullptr:

template <class T>
void ComputeBoundingSphere(T* pts, vtkIdType numPts, double sphere[4])
{
  return ComputeBoundingSphere(pts, numPts, sphere, nullptr);
}

Edit: I see this has already been suggested above.