A blog of Python-related topics and code.
Matplotlib isn't the obvious choice for depicting the Star Wars opening crawl, but that isn't a reason not to try:
This code continues the previous blog post on two-dimensional collisions to model Brownian motion. The code is on my GitHub page.
This small Python project is a physical simulation of two-dimensional physics. The animation is carried out using Matplotlib's FuncAnimation
method and is implemented by the class Simulation
. Each "particle" of the simulation is represented by an instance of the Particle
class and depicted as a circle with a fixed radius which undergoes elastic collisions with other particles.
A previous blog post dealt with packing circles into a circle. To fill an arbitrary shape, a slightly different approach is needed. The code is presented in my github repo.
The following code attempts to pack a predefined number of smaller circles (of random radii between two given limits) into a larger one.