eb
Size: a a a
eb
А
P🛸
VK
VD
VD
А
А
А
P🛸
VD
VD
VD
// Works only for positive min and max
inline float clampLooping(float value, float min, float max) {
int howManyTimesMax = value / max;
return value > 0 ? (value - (howManyTimesMax * max))
: max + (value - (howManyTimesMax * max));
}
А
VK
А
a
VK
a
VK