Hi, In the current code we have is a strange behavior of "point" and "line"
{{{ sage: point(CC(0)) # plot the point with coordinates (0, 0) as expected sage: point(CC(1)) # plot the point with coordinates (0, 1) as expected sage: point([CC(0), CC(1)]) # plot the point with coordinates (0, 1) sage: line([CC(0), CC(1)]) # plot nothing but a point with coordinates (0, 1) }}} (this comes from sage.plot.xydata_convert_from_point_list) This is now http://trac.sagemath.org/sage_trac/ticket/8082 which have a patch... but I really don't know if the method I choose is the good one. Vincent -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org