diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-11-13 04:18:23 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-11-13 04:18:23 -0500 |
commit | 049dc24ec02f3a14377d833ebf60efc4de12d918 (patch) | |
tree | 1a771f9ed743c96ee1d272cb746847e394c1a60e /scripts/gui-common/color.js | |
parent | 74a8430a3334570e1dce4c112b166c80923f8402 (diff) |
Thermostat widget JS
Diffstat (limited to 'scripts/gui-common/color.js')
-rw-r--r-- | scripts/gui-common/color.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/gui-common/color.js b/scripts/gui-common/color.js index 0b25f68..b2d255a 100644 --- a/scripts/gui-common/color.js +++ b/scripts/gui-common/color.js @@ -91,6 +91,16 @@ class Color return L.interpolate(out, s); } + + hsv_angle() + { + // TODO + } + + hsv_mag() + { + // TODO + } } const RED = new Color(1, 0, 0, 1); |