who do you think you are to think you may give me advices?I suggest you never again ask for recursions in NXC
Better ignore posts which are not addressed to you in future and walk along! (as already suggested by J.H.)
who do you think you are to think you may give me advices?I suggest you never again ask for recursions in NXC
Code: Select all
RectOut(x,y,w,h,DRAW_OPT_NORMAL);
Wait(1000);
RectOut(x,y,w,h,DRAW_OPT_FILL_INVERT); //No such thing :)
Code: Select all
#define DRAW_OPT_CLEAR_PIXELS (0x0004)
#define DRAW_OPT_CLEAR (0x0004)
#define DRAW_OPT_INVERT (0x0004)
Code: Select all
DRAW_OPT_FILL_SHAPE | DRAW_OPT_CLEAR
Code: Select all
RectOut(x, y, w, h, (DRAW_OPT_FILL_SHAPE | DRAW_OPT_CLEAR));
Code: Select all
#define DRAW_OPT_FILL_INVERT (DRAW_OPT_FILL_SHAPE | DRAW_OPT_CLEAR)
Code: Select all
RectOut(x, y, w, h, DRAW_OPT_FILL_INVERT);
Users browsing this forum: No registered users and 1 guest