Ask Your Question
2

use a colormap for implicit_plot3d

asked 2010-08-19 07:26:08 +0200

niles gravatar image

updated 2012-05-10 10:33:27 +0200

Here's a question I asked a while ago on sage-support, but never got answered, so I'll try it again here:

I've been trying to figure out how to plot a surface using implicit_plot3d, and color it according to a particular color map. I see that implicit_plot3d passes its arguments to

sage.plot.plot3d.implicit_plot3d.ImplicitSurface

but I can't figure out more than this . . . when I try

sage: sage.plot.plot3d.implicit_plot3d.ImplicitSurface??

I get

Error getting source: could not find class definition

and then a few more unhelpful details.

It seems like the two possible viewers are jMol and Tachyon, but I can't tell whether either of these support color maps.

Any ideas where else I should be looking?

Update: This is now Trac ticket 12212

edit retag flag offensive close merge delete

5 Answers

Sort by » oldest newest most voted
3

answered 2017-01-10 14:02:44 +0200

FrédéricC gravatar image

updated 2017-09-14 14:42:40 +0200

This is now possible as follows.

var('x,y,z')
cm = colormaps.autumn
f = cos(z*4).function(x,y,z)
implicit_plot3d(x^2-y^2*z == 0,(x,-4,4),(y,-4,4),(z,-4,4), color=(f,cm))

where cm is a chosen colormap among those available. Beware that the coloring function f must take values between 0 and 1.

edit flag offensive delete link more
4

answered 2010-08-19 09:15:50 +0200

Harald Schilly gravatar image

I have once managed to get plot3d use a colormap, see here:

import matplotlib.cm
matplotlib.cm.datad.keys()

lists you the colormaps, you can also create your own. Note, the cmsel list in the following snippet defines the actual colors.

var('r v')
cmsel = [matplotlib.cm.get_cmap('autumn')(_) for _ in sxrange(0,1,0.05)]
p = plot3d(0.2*(r**2 + v**2) + cos(2*r)*sin(2*v),(r,-2,2), (v,-2,2), adaptive=True, color=cmsel, plot_points=10, opacity=0.9)
p2 = sphere((0,0,0),1,color='black',opacity=0.5)
(p+p2).show(aspect_ratio=(1,1,1), figsize=[7,3])
edit flag offensive delete link more

Comments

OMFG this is *awesome*. I had no idea this was possible in Sage.

William Stein gravatar imageWilliam Stein ( 2010-08-19 13:54:56 +0200 )edit
3

answered 2010-08-19 23:23:34 +0200

Jason Grout gravatar image

updated 2010-08-20 07:09:43 +0200

I don't know how to comment on another answer, so I'll just post my comment here. You don't have to import matplotlib colormaps, since they are already imported in the sage colormaps object:

sage: var('r v')
sage: cmsel = [colormaps['autumn'](i) for i in sxrange(0,1,0.05)]
sage: p = plot3d(0.2*(r**2 + v**2) + cos(2*r)*sin(2*v),(r,-2,2), (v,-2,2), adaptive=True, color=cmsel, plot_points=10, opacity=0.9)
sage: p2 = sphere((0,0,0),1,color='black',opacity=0.5)
sage: (p+p2).show(aspect_ratio=(1,1,1), figsize=[7,3])

You can see the available colormaps by doing

sage: colormaps.keys()
edit flag offensive delete link more

Comments

You can't comment until you get enough karma.

William Stein gravatar imageWilliam Stein ( 2010-08-20 01:26:09 +0200 )edit

How hard would it be to implement colorbars for 3D plots?

Mitesh Patel gravatar imageMitesh Patel ( 2010-08-22 04:45:45 +0200 )edit
2

answered 2010-08-21 22:37:47 +0200

kcrisman gravatar image

Thanks for the followup, Niles. This is a really annoying part of some things that are defined in .pyx files - ImplicitSurface is a cdef (Cython) function, and these don't always work well with introspection in my experience. Weirdly, I don't get the traceback you do in the notebook.

It turns out that **kwds (which would include color) end up in the init of IndexFaceSet which sends it to PrimitiveObject in plot3d/base.pyx which includes

    else:
        self.texture = Texture(kwds)

And if you look at THAT you will see that that just goes through a whole slew of possible things the input could be to Texture. And I think that following this the bug is that parse_color does not take a multiplicity of colors.

This still doesn't answer how to GET the colormap, but hopefully tracks down some of why it isn't working.

edit flag offensive delete link more

Comments

And `plot3d` seems to also eventually end up at `IndexFaceSet` via `ParametricSurface` anyway, so this doesn't resolve the mystery at all, perhaps.

kcrisman gravatar imagekcrisman ( 2010-08-21 22:41:20 +0200 )edit

But I did finally get the error message, and indeed the problem is in `parse_color`, where there isn't an `else` for `info` something other than a string or `Color`. But the fix would have to be in `Texture` or something. Why *does* it work with `plot3d`?

kcrisman gravatar imagekcrisman ( 2010-08-21 22:44:22 +0200 )edit

Thanks for the help . . . I'll keep digging :)

niles gravatar imageniles ( 2010-08-21 23:35:24 +0200 )edit
2

answered 2010-08-20 17:29:51 +0200

niles gravatar image

Apologies for the delay; I assumed the answers from schilly and jason-grout would work (sorry!) but I got around to testing it today and it doesn't work for implicit_plot3d (works fine for plot3d). And now I am remembering why I wanted to see where implicit_plot3d sends its arguments: it seems to be handling color in a different way than plot3d.

so the following is fine:

sage: var('x,y,z')
sage: implicit_plot3d(x^2+y^2+z^2==4, (x, -3, 3), (y, -3,3), (z, -3,3), color='red')

but this is not:

sage: cmsel = [colormaps['autumn'](i) for i in sxrange(0,1,0.05)]
sage: var('x,y,z')
sage: implicit_plot3d(x^2+y^2+z^2==4, (x, -3, 3), (y, -3,3), (z, -3,3), color=cmsel)
ERROR: An unexpected error occurred while tokenizing input
The following traceback may be corrupted or invalid
The error message is: ('EOF in multi-line statement', (49, 0))
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
...
TypeError: 'NoneType' object is not iterable
edit flag offensive delete link more

Comments

Niles, did you ever get this to work? I need exactly the same functionality, but for parametric_plot3d, maybe you can open a ticket for this?

jvkersch gravatar imagejvkersch ( 2011-12-20 17:16:04 +0200 )edit

No, I never did get it working. Instead I redesigned my project so that I didn't need it . . . the ticket is http://trac.sagemath.org/sage_trac/ti... .

niles gravatar imageniles ( 2011-12-21 08:30:13 +0200 )edit

Great, thanks! I was sort of hoping that you had implemented this for your Hopf fibration video :)

jvkersch gravatar imagejvkersch ( 2011-12-21 12:08:26 +0200 )edit

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: 2010-08-19 07:26:08 +0200

Seen: 2,790 times

Last updated: Sep 14 '17