More urgent TODOs. Groan...

This commit is contained in:
Pietro Gagliardi 2015-10-10 21:04:54 -04:00
parent 9e8c522010
commit 6fe77e12f9
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ static void drawArc(uiDrawPath *p, struct arc *a, void (*startFunction)(uiDrawPa
// as above, we can't do a full circle with one arc // as above, we can't do a full circle with one arc
// simulate it with two half-circles // simulate it with two half-circles
// TODO THIS ONLY WORKS ON THE ARCS TEST PAGE
if (a->sweep >= (2 * M_PI)) { if (a->sweep >= (2 * M_PI)) {
a->sweep = M_PI; a->sweep = M_PI;
drawArc(p, a, startFunction); drawArc(p, a, startFunction);