mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
removed horizontal "line break" style comment blocks
This commit is contained in:
parent
1eaf5ae82a
commit
18014e968d
1 changed files with 2 additions and 2 deletions
|
@ -9,13 +9,13 @@
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
|
||||||
////***************** UTILITIES *************************************
|
|
||||||
|
|
||||||
map = function(value, min1, max1, min2, max2) {
|
map = function(value, min1, max1, min2, max2) {
|
||||||
return min2 + (max2 - min2) * ((value - min1) / (max1 - min1));
|
return min2 + (max2 - min2) * ((value - min1) / (max1 - min1));
|
||||||
}
|
}
|
||||||
|
|
||||||
hslToRgb = function (hslColor) {
|
hslToRgb = function(hslColor) {
|
||||||
var h = hslColor.hue;
|
var h = hslColor.hue;
|
||||||
var s = hslColor.sat;
|
var s = hslColor.sat;
|
||||||
var l = hslColor.light;
|
var l = hslColor.light;
|
||||||
|
|
Loading…
Reference in a new issue