Ask Your Question
1

Wireframe surface diagrams

asked 11 years ago

Alasdair gravatar image

I can plot a simple surface with

plot3d(x^2-y^2,(x-2,2),(y,-2,2))

which gives me a nice Jmol rendered surface. But what I can't find out is how to draw the same surface with wireframes (including hidden lines). Thanks!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 11 years ago

calc314 gravatar image

There is a bug in passing the mesh option. So you need to do:

var('x y')
plot3d(x^2-y^3,(x,-2,2),(y,-2,2)).show(mesh=true)

Also, in more recent versions of Sage & Jmol, you can a button that gives you access to Jmol options. This then allows you to adjust the color of the mesh.

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

Stats

Asked: 11 years ago

Seen: 1,157 times

Last updated: Jul 18 '13