in reply to Re: Converting HSV colours to RGB
in thread Converting HSV colours to RGB

Thanks mate, Should solve my problem

Replies are listed 'Best First'.
Re^3: Converting HSV colours to RGB
by Anonymous Monk on May 15, 2013 at 16:53 UTC
    case 1 is wrong! should be: elsif ( $i == 1 ) { return $q, $v, $p;
      Also should replace: $h /= 60 with $h = ($h % 360) / 60;