Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that to draw a regular polygon from a center point, you use something along the lines of:

for (int i = 0; i < n; i++) {  
    p.addPoint((int) (100 + 50 * Math.cos(i * 2 * Math.PI / n)),
               (int) (100 + 50 * Math.sin(i * 2 * Math.PI / n))
              );
}

However, is there anyway to change this code (without adding rotations ) to make sure that the polygon is always drawn so that the topmost or bottommost edge is parallel to a 180 degree line? For example, normally, the code above for a pentagon or a square (where n = 5 and 4 respectively) would produce something like:

http://i.stack.imgur.com/Nv6Xf.gif http://i.stack.imgur.com/or967.gif

When what I'm looking for is:

http://i.stack.imgur.com/Tfxs1.gif http://i.stack.imgur.com/BIORA.gif

Is there any mathematical way to make this happen?

share|improve this question
Allow me to welcome you to StackOverflow and remind three things we usually do here: 1) As you receive help, try to give it too answering questions in your area of expertise 2) Read the FAQs 3) When you see good Q&A, vote them upusing the gray triangles, as the credibility of the system is based on the reputation that users gain by sharing their knowledge. Also remember to accept the answer that better solves your problem, if any, by pressing the checkmark sign – belisarius Mar 29 '11 at 1:57

2 Answers

up vote 3 down vote accepted

You have to add Pi/2-Pi/n

k[n_] := Pi/2 - Pi/n;
f[n_] := Line[
   Table[50 {Cos[(2 i ) Pi/n + k[n]] ,Sin[(2 i) Pi/n + k[n]]}, {i,0,n}]];

GraphicsGrid@Partition[Graphics /@ Table[f[i], {i, 3, 8}], 3]  

enter image description here

Edit

Answering your comment, I'll explain how I arrived at the formula. Look at the following image:

enter image description here

As you may see, we want the middle point of a side aligned with Pi/2. So ... what is α? It's obvious

2 α = 2 Pi/n (one side) -> α = Pi/n

Edit 2

If you want the bottom side aligned with the x axis, add 3 Pi/2- Pi/n instead ...

enter image description here

share|improve this answer
Sorry for the previous delete, I made a mistake and saw it too late – belisarius Mar 29 '11 at 1:54
Thank you very much! *Im just wondering, but how did you figure this out? – Daniel Kang Mar 29 '11 at 1:57

Add Math.PI / n to the angles.

share|improve this answer
I assume you mean something like p.addPoint((int) (100 + 50 * Math.cos((i * 2 + Math.PI/n) * Math.PI / n)), (int) (100 + 50 * Math.sin((i * 2 + Math.PI/n) * Math.PI / n))); Well, I gave it a try, and it doesn't work, unless I've misinterpreted your answer. Care to elaborate? – Daniel Kang Mar 29 '11 at 0:52
You're adding (π/n)^2. Use Math.cos((i * 2 + 1) * Math.PI / n) instead. BTW, if this is homework you should tag it as such. – LaC Mar 29 '11 at 1:01
Thanks! And no, this isn't homework. – Daniel Kang Mar 29 '11 at 1:15
actually, I just tried it, and it only works on squares and octagons, but thats good enough for now – Daniel Kang Mar 29 '11 at 1:19
2  
I works the same on all polygons, but it forces a vertical side instead of horizontal (sorry, didn't actually test it). You needed to add another π/2 for a quarter-circle rotation, as in the other answer. – LaC Mar 29 '11 at 2:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.