Closed
Description
It would be great to have something like this in Jupyter:
scn = Scene()
dORIGIN= Dot(color= BLUE,radius=0.5)
d= Dot(color= YELLOW, radius=0.5)
d.shift(2*RIGHT)
scn.add(d)
scn.render()
Similar to how Matplotlib plots are rendered.
This is how it could look then compared to the current way (not yet working):