So, I'm using a special turtle graphics set of classes in Java (but they have all the regular commands: move, paint, turn, etc.). I'm trying to draw a six-point star (which is effectively two triangles).

Could anyone perhaps give some pseudo-code as to how I could draw the star? I understand how the graphics work, and I can calculate the angles of the points (they're 30 degrees) but I don't really get how I could put it all together...?

link|improve this question
First step is to learn java2d graphics: download.oracle.com/javase/tutorial/2d/index.html – Adel Oct 21 '11 at 21:59
2  
Could you link to the libraries you're using and what API it has? – corsiKa Oct 21 '11 at 22:00
feedback

migrated from programmers.stackexchange.com Oct 21 '11 at 21:57

This question came from our site for professional programmers interested in conceptual questions about software development.

1 Answer

Start at the top of the star, facing north (up).

Turn south (180 clockwise), and then anti-clockwise the angle (30). Go (distance).

Turn north (150 anti-clockwise), and then clockwise (60). Go(distance).

Turn south (120 clockwise), and then anti-clockwise (90). Go(distance).

Et cetera. This should give you a relatively simple idea as to how to write an algorithm for each step.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown