Opened 12 years ago
Closed 9 years ago
#11426 closed defect (invalid)
point3d needs to accept single vectors, not just lists of them
Reported by: | kcrisman | Owned by: | jason, was |
---|---|---|---|
Priority: | major | Milestone: | sage-duplicate/invalid/wontfix |
Component: | graphics | Keywords: | |
Cc: | jason, slabbe | Merged in: | |
Authors: | Reviewers: | Punarbasu Purkayastha | |
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
sage: point3d([3,2,1]) <works fine> sage: point3d([vector([3,2,1]),vector([1,2,3])]) <works fine> sage: point3d(vector(3,2,1)) ---------------------------------------------------------- TypeError: object of type 'sage.rings.integer.Integer' has no len()
See also #10948.
Change History (5)
comment:1 Changed 9 years ago by
Milestone: | sage-5.11 → sage-5.12 |
---|
comment:2 Changed 9 years ago by
Milestone: | sage-5.13 → sage-duplicate/invalid/wontfix |
---|---|
Status: | new → needs_review |
comment:3 Changed 9 years ago by
Reviewers: | → Punarbasu Purkayastha |
---|---|
Status: | needs_review → positive_review |
comment:4 Changed 9 years ago by
Huh, you are right! I don't know why I didn't notice that when I first generated this. Such a nice round point in the middle of a Jmol box...
comment:5 Changed 9 years ago by
Resolution: | → invalid |
---|---|
Status: | positive_review → closed |
Note: See
TracTickets for help on using
tickets.
Invalid ticket:
vector(3,2,1)
should bevector([3,2,1])