Post Reply 
RECT_P but without filling
11-27-2015, 03:18 PM
Post: #3
RE: RECT_P but without filling
Hi,
(11-27-2015 02:46 PM)DrD Wrote:  RECT_P(G0,130,90,190,110,#DDDDDDh,#FFFFFFFFh); // Rectangle, no fill
It's not exactly "no fill", but "white filled."

For real "no fill", better to start on something like that :
Code:
RECT_P_NOFILL(x,y,x2,y2,col)
begin
 LINE_P(x,y,x2,y,col); //top
 LINE_P(x,y2,x2,y2,col); // bottom
 LINE_P(x,y,x,y2,col); //left
 LINE_P(x2,y,x2,y2,col); // right
end;
not very great, but it do the job.

primer
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RECT_P but without filling - hpfx - 11-27-2015, 01:35 PM
RE: RECT_P but without filling - DrD - 11-27-2015, 02:46 PM
RE: RECT_P but without filling - primer - 11-27-2015 03:18 PM
RE: RECT_P but without filling - primer - 11-30-2015, 09:04 AM
RE: RECT_P but without filling - eried - 11-30-2015, 03:33 PM
RE: RECT_P but without filling - eried - 11-30-2015, 06:28 PM
RE: RECT_P but without filling - primer - 11-30-2015, 08:42 PM
RE: RECT_P but without filling - Han - 11-30-2015, 09:55 PM



User(s) browsing this thread: 1 Guest(s)