LAF - fillRect - modulating x value doesn't do anything
-
Designing my horizontal LAF slider to reflect the modulation happening on it - modulating the Width with modValue works fine on the blue line, but nothing's happening to the x position below... If I put a[0]+10, for example, it moves along 10, but never moves to *modValue. Any ideas?
g.setColour(0XFF00F6FF); g.fillRect([a[0], a[1]+19, a[2]*modValue, a[3]-19]); // blue line g.setColour(Colours.white); g.fillRect([a[0], a[1]+19, a[2]-68, a[3]-19]); // white dot
-
@DanH Instead of
a[0] * modValue
you needa[2] * modValue
and probably subtract some amount too. -
@DanH like Dave said,also a[0] is likely to be zero no? so a[0]* modvalue will still = zero...
-