Ask Your Question
1

sage.plot.plot3d.shapes2.Line() does not work in the cloud

asked 9 years ago

Jeremy Martin gravatar image

The following code (straight from http://doc.sagemath.org/html/en/refer...) does not work in the SageMath Cloud, at least not for me:

from sage.plot.plot3d.shapes2 import Line
Line([(i*math.sin(i), i*math.cos(i), i/3) for i in range(30)], arrow_head=True)

The result is a long error message ending with "TypeError: 0 is not JSON serializable". Am I doing something wrong?

Preview: (hide)

Comments

I guess I can just use line3d() instead.... but maybe this error indicates something else is going on.

Jeremy Martin gravatar imageJeremy Martin ( 9 years ago )

I think this is a SMC 3d renderer bug, as this works fine in the normal Sage notebook.

kcrisman gravatar imagekcrisman ( 9 years ago )
1
William Stein gravatar imageWilliam Stein ( 9 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 9 years ago

fidbc gravatar image

You don't seem to be doing anything wrong.

Another option to get similar output is to use the line3d function.

line3d([(i*math.sin(i), i*math.cos(i), i/3) for i in range(30)], arrow_head=True)
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 9 years ago

Seen: 278 times

Last updated: Sep 24 '15