We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caacd0a commit 7352e55Copy full SHA for 7352e55
src/sage/plot/point.py
@@ -8,7 +8,7 @@
8
sage: P = E(0,0) # optional - sage.schemes
9
sage: def get_points(n):
10
....: return sum(point(list(i*P)[:2], size=3)
11
-....: for i in range(-n,n) if i != 0 and (i*P)[0] < 3)
+ ....: for i in range(-n,n) if i != 0 and (i*P)[0] < 3)
12
sage: sum(get_points(15*n).plot3d(z=n) for n in range(1,10)) # optional - sage.schemes
13
Graphics3d Object
14
"""
0 commit comments