Question: me again. How do you increase line thickness in Lice? i.e. highlighted envelope in reaper
Asked by olilarkin (144.32.204.x) on July 3 2012, 2:39pm
Reply on July 3 2012, 3:13pm:Heh, doesn't really support that -- what the highlighted envelope drawing does is:
LICE_Line(licebm, xstart, ystart, xend, yend, color, alpha, LICE_BLIT_MODE_COPY, aa);
if (envselected)
{
if (abs(xend-xstart) > abs(yend-ystart))
{
++ystart;
++yend;
}
else
{
++xstart;
++xend;
}
LICE_Line(licebm, xstart, ystart, xend, yend, color, alpha, LICE_BLIT_MODE_COPY, aa);
}