Setting the Axis Limits in Mplot3D

Hi

I’m trying to set the axes limits in MPlot3d but the bits I’m trying to exclude still appear. I’ve done something like this:

ax.set_xlim3d([340, 600])
ax.set_ylim3d([0, 14.0])
ax.set_zlim3d([0, 300])

but it still shows all the data from 0, 600 for the x-axis and 0 to 14 for the y-axis.

Is there something I’m doing incorrectly?

Thx

Ted

Hi Ted,

There is currently no clipping of data outside the visible region; I
hope to implement this partly soon. For scatter plots it's not so
hard, but for surfaces it's a bit more complicated.

Regards,
Reinier

···

On Sat, Jul 24, 2010 at 11:51 AM, Ted Kord <teddy.kord@...287...> wrote:

Hi

I'm trying to set the axes limits in MPlot3d but the bits I'm trying to
exclude still appear. I've done something like this:

ax.set_xlim3d([340, 600])
ax.set_ylim3d([0, 14.0])
ax.set_zlim3d([0, 300])

but it still shows all the data from 0, 600 for the x-axis and 0 to 14 for
the y-axis.

Is there something I'm doing incorrectly?

Thx

Ted

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options

--
Reinier Heeres
Tel: +31 6 10852639

Ok. I’ll look forward to that.

Ted