Particles is an attempt to reproduce Jeffrey Ventrella's Clusters with Java and JavaFx.
I was amazed by the Clusters, and I wanted to reproduce it. However, I didn't have access to its source code. So, I created everything from scratch, and the Particles took shape.
Particles is a simple 2d particle collision / attraction / repulsion simulator. Most of the math that governs Particles' universe is simply "made-up." However, these made-up rules result in very interesting formations as if they are molecules or microscopic creatures. Such as;
Particles.2022-06-10.01-48-35.mp4
There are two types of attractions in Particles. The first is gravitational, and the second is what I call molecular. The gravitational force/attraction is only calculated by the distance between particles. The only value that will affect the strength of this attraction is the G constant, which can be changed from the menu.
On the other hand, the molecular attraction has about 20 different equations, which can be used in 3 ranges.
- Two particles are in range when both are in their effective attraction zone.
- Two particles are below range when both are closer than their effective attraction zone.
- Two particles are out of range when both are outside their effective attraction zone.
The effective attraction zone is defined by the R value, which can be defined in the menu. Min and max values define the random range of min R and max R. (I know my choice of wordings is not the best! "min R min" ... ughh!?)
CTRL+R: Reset
CTRL+Shift+C: Capture Mode (removes the menu button)
F11: Full-screen mode
Java version : 11
JavaFx version : 15
Built by using Maven