####Code Snippet - Make Axes #Drop this into your code ahead of any loops. #Best to put it at the start weher you define variables, set scene etc xaxis = arrow(pos=(-110,0,0),axis=(250,0,0),shaftwidth=0.5) xlabel = label(pos=xaxis.pos+vector(225,0,0), text='x', xoffset=0, yoffset=10,zoffset=10, height=20, line = 0, box = 0) yaxis = arrow(pos=(-110,0,0),axis=(0,250,0),shaftwidth=0.51) ylabel = label(pos=yaxis.pos+vector(0,225,0), text='y', xoffset=10, yoffset=0,height=20, line = 0, box = 0) zaxis = arrow(pos=(-110,0,0),axis=(0,0,250),shaftwidth=0.51) zlabel = label(pos=xaxis.pos+vector(0,0,225), text='z', xoffset=10, yoffset=10,zoffset = 0,height=20, line = 0, box = 0)