a half moon is a circle with one half cut off, no? and a quarter moon is a big circle with a smaller circle cut off.
a five corner star (or any star) is created using polygons.
your questions should go to "graphics" and not here... if you want an answer how to do it in C, tell us your OS. there is no OS-independent graphics
for windows this would be something similar to:
Code:
HRGN rgn, rgn2;
dc=getDc(.... where you want to paint to);
rgn=createellipticrgn(0,0,100,100);
rgn2=createellipticrgn(10,10,100,100);
combinergn(rgn,rgn,rgn2,DIFF_RGN);
fillpolyrgn(dc,rgn);
deleteobject(rgn);
deleteobject(rgn2);
releasedc(..see above..., dc);
for the moon and
Code:
POINT **pts;
HRGN rgn;
*pts[0]=POINT(50,0);
*pts[1]=POINT(0,30);
... fill the other points here ...
dc=.... (see above)
rgn=createpolyrgn(pts,sizeof(pts),WINDING);
fillpoly(dc,rgn);
deleteobject(rgn);
releasedc(..., dc);
for the star: if you want a pentagram, you need to calculate the points using sin() and cos() functions for getting exact 360/5=72 degree slices of a circle. (this answer should go to "algorithms")
graphics programming is a lot of mathematics, you should get a good book on vectors, matrices and that stuff...
greetings,
M
ps. the reason i can tell this just from my head right now is that i had to do this stuff at work over the last 5 weeks
