Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried running this vpython code in a notebook

from visual import *

floor = box (pos=(0,0,0), length=4, height=0.5, width=4, color=color.blue)
ball = sphere (pos=(0,4,0), radius=1, color=color.red)
ball.velocity = vector(0,-1,0)
dt = 0.01

while 1:
    rate (100)
    ball.pos = ball.pos + ball.velocity*dt
    if ball.y < ball.radius:
        ball.velocity.y = abs(ball.velocity.y)
    else:
        ball.velocity.y = ball.velocity.y - 9.8*dt    

When I run the cell a new (seperate) window is opened, in that window things seemed to run fine. I was wondering though if it would be possible to run this output inside the notebook itself. A similar question was asked here

possible to use vpython in ipython notebook?

The author says his kernel crashed - I see something similar as well, in my case kernel gets stuck running the vpython window. The whole thing feels "un-ipythonic", I was wondering if there are any plans integrating vpython and ipython. If not, would it be possible to pull continuous png images from the animations and push them into Matplotlib inside the notebook?

Thanks,

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.