Opened 11 years ago
Closed 11 years ago
#8082 closed enhancement (fixed)
correct point and line behavior with complex numbers
Reported by: | vdelecroix | Owned by: | vdelecroix |
---|---|---|---|
Priority: | major | Milestone: | sage-4.3.3 |
Component: | graphics | Keywords: | plot, complex numbers |
Cc: | Merged in: | sage-4.3.3.alpha0 | |
Authors: | Vincent Delecroix | Reviewers: | Ross Kyprianou |
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description (last modified by )
We have a strange behavior
sage: point(CC(0)) # plot a point with coordinates (0, 0) sage: point(CC(1)) # plot a point with coordinates (1, 0) sage: point([CC(0),CC(1)]) # plot a point with coordinates (0, 1)
The patch add a line in plot.py to correct this and get the two points (0,0) and (1,0) when doing
sage: point([CC(0), CC(1)])
see also #4838
Attachments (1)
Change History (7)
Changed 11 years ago by
comment:1 Changed 11 years ago by
- Description modified (diff)
- Keywords complex numbers added
- Status changed from new to needs_review
comment:2 Changed 11 years ago by
- Status changed from needs_review to needs_work
comment:3 Changed 11 years ago by
- Description modified (diff)
- Status changed from needs_work to needs_review
comment:4 Changed 11 years ago by
- Status changed from needs_review to positive_review
comment:5 Changed 11 years ago by
The patch commit string is insufficiently descriptive. I've refreshed it to #8082: Correct point and line behavior with complex numbers
in the queue for 4.3.3.alpha0.
comment:6 Changed 11 years ago by
- Merged in set to sage-4.3.3.alpha0
- Resolution set to fixed
- Reviewers set to Ross Kyprianou
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
Works as advertised