A simple function hsvtorgb to convert values in the HSV color space to RGB. I created this crate because I couldn't find an existing one that worked for me, and, when I asked chatGPT how to convert HSV to RGB in Rust, it pointed me to a crate called hsv that didn't exist. Now it does.
hsv_to_rgb
taking hue: f64, saturation: f64, value: f64
and returning u8, u8,
u8
Please let me know if it's incorrect. Bug reports and PRs welcome!