Post Reply 
Set theory program for hp prime?
09-30-2022, 03:15 PM
Post: #2
RE: Set theory program for hp prime?
Do you just mean the Venn diagrams?

If so then you could use something like this, although I really hope there is a better way.

Code:
EXPORT RQST()
BEGIN
FOR Y FROM 0 TO 239 DO
FOR X FROM 0 TO 319 DO
IF (X-120)^2+(Y-120)^2<80^2 THEN
PIXON_P(X,Y,RGB(255,0,0));
END;
IF (X-180)^2+(Y-120)^2<80^2 THEN
PIXON_P(X,Y,RGB(0,255,0));
END;
 
IF (X-180)^2+(Y-120)^2<80^2 AND (X-120)^2+(Y-120)^2<80^2 THEN
PIXON_P(X,Y,RGB(0,0,255));
END;
 
  
END;

END;

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


Messages In This Thread
RE: Set theory program for hp prime? - matalog - 09-30-2022 03:15 PM



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