Can I Create Interactive Applets with Python?

  • Context: Python 
  • Thread starter Thread starter cscott
  • Start date Start date
  • Tags Tags
    Python Visualization
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 13K views
cscott
Messages
778
Reaction score
1
This guy has made a nice series of demonstrative applets with Java. I was wondering what I'd need with Python to do the same thing.
 
Last edited:
Physics news on Phys.org
Falstad's visualizations are great.

I have been interested in using VPython to create visualizations along those lines... but I don't have a lot of free time right now.

Try http://www.vpython.org (which has Visual, a 3D OpenGL visualization module, and the Numeric module). Look at the contributed programs for a sense of what can be done.

For 2D graphics, you might try the Python Imaging Library
http://www.pythonware.com/products/pil/

These may also be helpful
Numerical Python http://sourceforge.net/projects/numpy
Boost.Python http://www.boost.org/libs/python/doc/
PyOpenGL http://pyopengl.sourceforge.net/
http://www.vrplumber.com/py3d.py
 
I'll definitely check it out. Thanks for all the links.