Permalink
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Find file
Copy path
2d-diffusion-limited-aggregation-experiments/03-different-sizes/js/Settings.js
Find file
Copy path
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| export default { | |
| // Diameter of particles | |
| CircleDiameterRange: [2, 25], | |
| // Limit number of walkers and rely on bias to increase collision rate | |
| MaxWalkers: 1000, | |
| // Generate walkers in a circular area around center | |
| WalkerSource: 'Circle', | |
| // Enable mapping between walker diameter and it's distance to the center | |
| VaryDiameterByDistance: true, | |
| // Enable randomizing of walker diameter within CircleDiameterRange | |
| VaryDiameterRandomly: false, | |
| // Move all walkers towards middle by default | |
| BiasTowards: 'Center' | |
| }; |