You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
297B

  1. module RGBTransformTest1 where
  2. import ColorWheel.HSVTransformations
  3. import ColorWheel.RGBDefinition
  4. transformationTest1 :: IO ()
  5. transformationTest1 = do
  6. result <- hsv2rgb 120 0.9 0.75
  7. if result == RGB {r = 19.125, g = 191.25, b = 19.125}
  8. then
  9. print "OK!"
  10. else
  11. print "FAIL!"