[Matplotlib-users] Plotting a imshow() image in 3d in matplotlib

2015-05-26 Thread Raj Kumar Manna
/30464117/plotting-a-imshow-image-in-3d-in-matplotlib on stackoverflow. Thanks Raj -- ## Raj Kumar Manna Complex Fluid Biological Physics Lab IIT Madras Ph. No. 8144637401 alternate email: r...@physics.iitm.ac.in rajphysics

[Matplotlib-users] How to plot a 2d streamline in 3d view in matplotlib

2015-05-21 Thread Raj Kumar Manna
streamlines and arrows from a 2d plot and then transform it to 3d data. How to transform this 2d streamline data to 3d data and plot using mplot3d? Thanks in advance. Raj -- ## Raj Kumar Manna Complex Fluid Biological Physics Lab IIT Madras

Re: [Matplotlib-users] How to plot a 2d streamline in 3d view in matplotlib

2015-05-21 Thread Raj Kumar Manna
(stream.lines, ) for p in stream.arrows: art3d.patch_2d_to_3d(p, ...) ``` Again, I have no clue if this actually would work. I haven't tried doing this myself. Ben Root On Thu, May 21, 2015 at 11:39 AM, Raj Kumar Manna rajphysics@gmail.com wrote: Thanks for your quick reply