this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix elli and ellib in wren (#2625)

authored by

Alice and committed by
GitHub
98ebfe9d b3d9c08c

+4
+4
src/api/wren.c
··· 95 95 foreign static line(x0, y0, x1, y1, color)\n\ 96 96 foreign static circ(x, y, radius, color)\n\ 97 97 foreign static circb(x, y, radius, color)\n\ 98 + foreign static elli(x, y, a, b, color)\n\ 99 + foreign static ellib(x, y, a, b, color)\n\ 98 100 foreign static rect(x, y, w, h, color)\n\ 99 101 foreign static rectb(x, y, w, h, color)\n\ 100 102 foreign static tri(x1, y1, x2, y2, x3, y3, color)\n\ ··· 1542 1544 if (strcmp(signature, "static TIC.line(_,_,_,_,_)" ) == 0) return wren_line; 1543 1545 if (strcmp(signature, "static TIC.circ(_,_,_,_)" ) == 0) return wren_circ; 1544 1546 if (strcmp(signature, "static TIC.circb(_,_,_,_)" ) == 0) return wren_circb; 1547 + if (strcmp(signature, "static TIC.elli(_,_,_,_,_)" ) == 0) return wren_elli; 1548 + if (strcmp(signature, "static TIC.ellib(_,_,_,_,_)" ) == 0) return wren_ellib; 1545 1549 if (strcmp(signature, "static TIC.rect(_,_,_,_,_)" ) == 0) return wren_rect; 1546 1550 if (strcmp(signature, "static TIC.rectb(_,_,_,_,_)" ) == 0) return wren_rectb; 1547 1551 if (strcmp(signature, "static TIC.tri(_,_,_,_,_,_,_)" ) == 0) return wren_tri;