Ticket #4303 (closed defect: duplicate)
Plotting: points(list_of_points, rgbcolor=c) gives strangely colored results with exactly 3 points.
| Reported by: | jbandlow | Owned by: | was |
|---|---|---|---|
| Priority: | major | Milestone: | sage-duplicate/invalid/wontfix |
| Component: | user interface | Keywords: | plotting |
| Cc: | Author(s): | ||
| Report Upstream: | Reviewer(s): | ||
| Merged in: | Work issues: |
Description
From the docstring for point2d, the following works fine:
sage: p = point(((0.5, 0.5), (1, 2), (0.5, 0.9), (-1,-1)), rgbcolor=hue(1), pointsize=30); p.show()
However
sage: p = point(((0.5, 0.5), (1, 2), (0.5, 0.9)), rgbcolor=hue(1), pointsize=30); p.show()
gives one purple(?) point and two blue points. This seems to happen if and only if the number of points specified is exactly three, regardless of the specified color.
Change History
Note: See
TracTickets for help on using
tickets.
