CODICE PER SAGE
sage: from sage.plot.plot3d.transform import Transformation sage: from sage.plot.plot3d.base import BoundingSphere sage: BoundingSphere((0,0,0), 10).transform(Transformation(trans=(1,2,3))) Center (1.0, 2.0, 3.0) radius 10.0 sage: BoundingSphere((0,0,0), 10).transform(Transformation(scale=(1/2, 1, 2))) Center (0.0, 0.0, 0.0) radius 20.0 sage: BoundingSphere((0,0,3), 10).transform(Transformation(scale=(2, 2, 2))) Center (0.0, 0.0, 6.0) radius 20.0