Advertisement

[x]
Attachment Details

Polar coordinates drawing

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.6
Hi,

Still trying to get a part of a programme working following up this question http://www.experts-exchange.com/Other/Math_Science/Q_23447301.html.

I'm having a problem seperating the circle into segments.  I'm wanting to draw a line every 3.6 degrees.  Or even better draw from 0 on left to 100 on right (image 1) with appropriate 100 segment degrees inbetween.

My problem is that when I set theta to different values in my code (attached) I get different angles drawn!

Code at the moment draws all the lines on top of each other as this was how I noticed that it was drawing the lines at the correct degree segments!

Any suggestions on whats going on here? Or perhaps how once overcome this problem how I can start to work out my desired result!

p.s. Sorry if in wrong area!

Thanks
James
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
int iCurrentRowStart = 0;
        for (int x = 0; x < m_data.header.iNeuron; x++) {
            for (int y = iCurrentRowStart; y < m_data.header.iNeuron; y++) {
                if (x != y) {
                    double iIncrease = 3.6; //360 / m_data.header.iWin;
                    for (int i = 0; i < m_data.header.iWin; i++) {
                        double dTheta = 180; //(iIncrease * i) + 8;
                        // work out beggning of line on outside of inner circle
                        double xPos1 = m_pStartX + (m_iMiddle * Math.cos(dTheta));
                        double yPos1 = m_pStartY + (m_iMiddle * Math.sin(dTheta));
                        // work out end of line on outside of outer circle
                        double xPos2 = xPos1 + ((m_data.afNorm[x][y][i]*m_iScale)) * Math.cos(dTheta);
                        double yPos2 = yPos1 + ((m_data.afNorm[x][y][i]*m_iScale)) * Math.sin(dTheta);
                        
                        if (m_data.afNorm[x][y][i] == m_data.afPeaks[x][y]) {
                            if (i >= 50){
                                gIn.setColor(Color.RED);
                            } else {
                                gIn.setColor(Color.BLUE);
                            }
                        } else {
                            gIn.setColor(Color.BLACK);
                        }
                        gIn.draw(new Line2D.Double(xPos1, yPos1, xPos2, yPos2));
                    }
                }
            }
            iCurrentRowStart++;
        }
Attachments:
 
desired
desired
 
 
dTheta set to 0
dTheta set to 0
 
 
dTheta set to 90
dTheta set to 90
 
 
dTheta set to 180
dTheta set to 180
 
Related Solutions
Related Solutions
 
Loading Advertisement...
 
Accepted Solution by anmalaver:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Author Comment by James_h1023:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Assisted Solution by anmalaver:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Author Comment by James_h1023:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Expert Comment by anmalaver:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Expert Comment by anmalaver:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Author Comment by James_h1023:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 

Rank: Wizard

Expert Comment by Infinity08:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Author Comment by James_h1023:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
Loading Advertisement...
20080924-EE-VQP-40 / EE_QW_EXPERT_20070906