| 1 | initial version |
You can draw a sphere as follows:
sage: sphere((0,0,0), size=1, color='red')
You can add plots together:
sage: sphere((0,0,0), size=1, color='red') + sphere((2,0,0), size=1.5, color='green')
You can ensure that all the axes are on the same scale, with aspect_ratio=1:
sage: sphere((0,0,0), size=1, color='red') + sphere((2,0,0), size=1.5, color='green', aspect_ratio=1)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.