Why GetBounds() for sphere is different than sphere radius? What is the logic?

>>> sphere.Radius = 0.5
>>> print(sphere.GetDataInformation().GetBounds())
(-0.48746395111083984, 0.48746395111083984, -0.48746395111083984, 0.48746395111083984, -0.5, 0.5)

Thank you

The sphere source is a discretization of a sphere and thus only approximate. If you increase the Theta Resolution and/or the Phi Resolution you should get closer to the true requested radius.

Andy

Thank you that make sense