Path: chuka.playstation.co.uk!scea!greg_labrec@interactive.sony.com From: "Linda J. Hodge" Newsgroups: scea.yaroze.beginners Subject: Circle? Date: Sat, 19 Jul 1997 01:54:54 -0700 Organization: SCEA Net Yaroze News Lines: 23 Message-ID: <33D080DE.161D@earthlink.net> Reply-To: hodgke@earthlink.net NNTP-Posting-Host: max3-so-ca-08.earthlink.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 3.0C-NSCP (Win16; U) Mario or anyone that can help, I made my first program and am getting some errors. I am trying to display a bunch of circles on screen using a drawing function.I dont know which one thats the thing.I mean I got the math for it: for(index=0; index<1000; index++) { xo = 20 + rand()%300; yo = 20 + rand()%1800; rad = 1 + rand()%20; color = rand()%256; for(ang=0;ang<360; ang++) { x = xo + cos(ang*3.14/180) * rad; y = yo + cos(ang*3.14/180) * rad; //Now from here I need a function to put x,y and color on //to screen.I was thing of a GsLINE func to do the job //but that is for straight line endpoints only.Any //suggestions? Thanks.