Hey, as most of you probably know when you set the camera to the below you get the camera facing the middle of the graph.
camera = dict(up=dict(x=0, y=0, z=1),
center=dict(x=0, y=0, z=0),
eye=dict(x=0, y=0, z=0))
Basically I am creating a solar system with the sun at 0,0,0. I have gotten it all to move properly and everything but the camera moves to the center of the graph rather than just keep staying at 0,0,0. How do I set the camera position so it works in terms of coordinates rather and vectors? Is there a method to calculate coordinates into vectors that I can use?