Skip to content

Instantly share code, notes, and snippets.

View y-71's full-sized avatar
💤
Attempting to take off in a helicopter made entirely of spaghetti code.

Tawfik Boujeh y-71

💤
Attempting to take off in a helicopter made entirely of spaghetti code.
View GitHub Profile
@EvanBacon
EvanBacon / 🧽.gif
Last active February 6, 2024 08:40
🥓
🧽.gif
@demonixis
demonixis / MathHelper.js
Created December 4, 2012 10:38
JavaScript Math helper
var MathHelper = {
// Get a value between two values
clamp: function (value, min, max) {
if (value < min) {
return min;
}
else if (value > max) {
return max;
}