mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fixed space before function params
This commit is contained in:
parent
0670147bf8
commit
d840723fe3
2 changed files with 4 additions and 4 deletions
|
@ -340,8 +340,8 @@ calculateHandSizeRatio = function() {
|
|||
return handSizeRatio;
|
||||
}
|
||||
|
||||
hifiClamp = function (val, min, max) {
|
||||
return Math.max(min, Math.min(max, val))
|
||||
hifiClamp = function(val, min, max) {
|
||||
return Math.max(min, Math.min(max, val));
|
||||
}
|
||||
|
||||
// flattens an array of arrays into a single array
|
||||
|
|
|
@ -340,8 +340,8 @@ calculateHandSizeRatio = function() {
|
|||
return handSizeRatio;
|
||||
}
|
||||
|
||||
hifiClamp = function (val, min, max) {
|
||||
return Math.max(min, Math.min(max, val))
|
||||
hifiClamp = function(val, min, max) {
|
||||
return Math.max(min, Math.min(max, val));
|
||||
}
|
||||
|
||||
// flattens an array of arrays into a single array
|
||||
|
|
Loading…
Reference in a new issue