#2100: sensible defaults for aspect ratio
-------------------------------------------------------+--------------------
Reporter: jason | Owner: was
Type: enhancement | Status:
needs_work
Priority: major | Milestone:
sage-4.6.2
Component: graphics | Keywords:
Author: Jason Grout, Karl-Dieter Crisman | Upstream: N/A
Reviewer: Andrey Novoseltsev, Karl-Dieter Crisman | Merged:
Work_issues: Plotting of vectors examples |
-------------------------------------------------------+--------------------
Comment(by kcrisman):
Replying to [comment:38 kcrisman]:
> Replying to [comment:36 novoselt]:
> > Actually, I was too hasty:
> > sage -t -long "devel/sage-main/sage/modules/free_module_element.pyx"
> Aargh! I'll try to fix this...
> > These are the only errors on the whole library. I guess they should be
fixed in the same way as in the reviewer patch. Or maybe there should be a
better fix?..
> No, that is the correct fix for now. An overarching ticket is #10638,
which I forgot to mention before.
The correct fix is to remove that kwd from the plot when
{{{
if plot_type == 'arrow' or plot_type == 'point':
dimension = len(coords)
if dimension == 3:
from sage.plot.plot3d.shapes2 import line3d, point3d
if plot_type == 'arrow':
return line3d([(0,0,0), coords], arrow_head=True,
**kwds)
else:
return point3d(coords, **kwds)
}}}
that should do it. I will try this later.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/2100#comment:39>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
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-trac?hl=en.