On Thu, Jan 8, 2009 at 3:53 PM, AlsCdz <cadez_a...@siol.net> wrote:
>
> I have something like (only the important bits of code):
>
>    cmap = mpl.cm.jet  ##I set colomap to 'jet'
>    norm = mpl.colors.Normalize(vmin=5, vmax=15)
>
>    exampleInt = 7
>    ##Here i would need a color value of 7 (in 5-15 range of jet colormap)
>    poly = Polygon(seg,facecolor=exampleInt(as color value))
>    ax.add_patch(poly)

Almost there!In [9]: cmap = mpl.cm.jet

In [10]: norm = mpl.colors.Normalize(vmin=5, vmax=15)

In [11]: cmap(norm(7))
Out[11]: (0.0, 0.29999999999999999, 1.0, 1.0)

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to