Post Reply 
circle filled
06-20-2014, 10:58 AM (This post was last modified: 06-20-2014 10:58 AM by fabila.)
Post: #3
RE: circle filled
Thank cyrille

using fillpoly has given me an idea

Could it be something like this?


Code:
EXPORT fillcircle()
BEGIN
    LOCAL COORD:={};
    
    dimgrob_p(G1, 200,200,RGB(255,255,255,128));
    
    FOR A FROM 1 TO 90 DO
        COORD(A,1):=99+99*COS(4*A);
        COORD(A,2):=99+99*sin(4*A);
    end;
    
    FILLPOLY_P(G1,COORD,#FF, 128);
    RECT();
    BLIT_P(G1);
    
    WAIT(-1);
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
circle filled - fabila - 06-20-2014, 12:56 AM
RE: circle filled - fabila - 06-20-2014 10:58 AM
RE: circle filled - Kevin Ouellet - 06-22-2014, 02:49 PM



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