var('t')
e=parametric_plot((3*sin(t), 2*cos(t)), (t,0,2*pi))
e.set_aspect_ratio(1)
e.set_axes_range(-3 , 3 , -3 ,3 )
p=point((2,2/3*sqrt(5)))
p.set_aspect_ratio(1)
p.set_axes_range(-3 , 3 , -3 ,3 )
e.show()
p.show()
(e+p).show()---------------------------------------------------------- e.show() and p.show() both look correct, with the axes extending from -3 to 3. But (e+p).show() only draws the y axis from -2 to 2. Am I doing something wrong? This is sage-4.0.2. --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
