Skip to content

Instantly share code, notes, and snippets.

View antoniobuconjic's full-sized avatar

Antonio Buconjić antoniobuconjic

View GitHub Profile
const MaxWind = 2
const FlakesNumber = 100
const radianFromDegree = (degree) => {
return degree * (Math.PI / 180);
}
const getRandomInt = (min, max) => {
min = Math.ceil(min);
max = Math.floor(max);