您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
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!"