Ask Your Question
1

Set axes in 3d plot

asked 12 years ago

calc314 gravatar image

Is there a way to set the kind of axes shown in a 3d plot? Seems like you should be able to specify boxed, axes, etc. in the show command.

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 12 years ago

ndomes gravatar image

You can write your own python function to draw axes, something like:

def axes(xmin=-1,xmax=1,ymin=-1,ymax=1,zmin=-1,zmax=1,**kwds):
    ex = vector((1,0,0))
    ey = vector((0,1,0))
    ez = vector((0,0,1))
    G =  line3d([xmin*ex,xmax*ex],**kwds)
    G += line3d([ymin*ey,ymax*ey],**kwds)
    G += line3d([zmin*ez,zmax*ez],**kwds)
    return G

axes(xmax=2,zmax=4,color='red',thickness=2).show()
Preview: (hide)
link
2

answered 12 years ago

kcrisman gravatar image

You can do frame=False and axes=True, but doubtless you're talking about something more substantial, and these leave ... less than desirable results. I'm not sure why the axes are in the wrong place sometimes, though I believe there is a ticket open for this.

Preview: (hide)
link

Comments

Thanks for the help. I really went a few rounds with the plot3d options this afternoon and ended up using the line command to create some axes. Just wanted to make sure I hadn't missed something in the documentation somehow.

calc314 gravatar imagecalc314 ( 12 years ago )
1

That's probably what I would do at this point too. It would be great to have a nice axes option for 3d graphics.

Jason Grout gravatar imageJason Grout ( 12 years ago )

See http://trac.sagemath.org/ticket/19442 for a belated followup ticket.

kcrisman gravatar imagekcrisman ( 9 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 12 years ago

Seen: 2,606 times

Last updated: May 25 '12