The following simple 3D plot always bears a rather wide empty space surrounding the sphere. I only need the sphere and vectors without box or axes. How to remove/control the empty space?
A few padding options I tried do not seem to help. And nonzero PlotRangePadding seems necessary to have a few vectors not cut at the boundary.
m = 1.1;
SliceVectorPlot3D[{y, -x, z},
x^2 + y^2 + z^2 == 1, {x, -m, m}, {y, -m, m}, {z, -m, m},
VectorPoints -> 5, VectorSizes -> 0.9, ViewPoint -> {0.1, -2, 2},
ViewVertical -> {-1, 0., 0.}, Boxed -> False, Axes -> False,
PlotRangePadding -> Automatic, ImagePadding -> 0, ImageMargins -> 0,
ImageSize -> Medium]



