|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
how to make a star and quater moon ?
hi !
how can i make star with five corners on pixels and a half moon ? thanks |
|
#2
|
|||
|
|||
|
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 ![]()
__________________
-- Manuel Hirsch - Linux, FreeBSD, programming, administration articles, tutorials and more. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > C Programming > how to make a star and quater moon ? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|