I'm trying to understand why these two things are not doing the same thing:
$Reds=0.7;
$Hueoffset=curve($H,0,0,1, 0.5,($Reds),1, 1,1,1);
outputs zero at all values between $H=0 and $H=0,5 then rises to 1 at $H=1
$Hueoffset=curve($H,0,0,1, 0.5,(0,7),1, 1,1,1);
outputs zero at $H=0 rises to 0,7 at $H=0.5 and then rises to 1 at $H=1
Obviously both should output the stuff that the second expression does.
Am I doing it wrong or is this a bug or is it just not possible to use variables as inputs in the Curve function?