"If you don't like something, you should at least attempt to understand it so that you can hate it with style, creativity, flair, and intelligence."
-David Bowie
Funny thing happened.
Today I worked on a sliding color palette in Godot. Easiest with HSV (just slide the hue), so had to convert RGB to HSV, because there is Color.from_hsv() but no rgb2hsv function.
Long story short: when I was done I discovered the Color.h, Color.s, Color.v attributes are built in...
At least now I know how these variables relate, and my Godot script experience got a boost.