Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3244382
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:32:41+00:00 2026-05-17T18:32:41+00:00

I am working on a simple game in Java, everything goes fine, except I

  • 0

I am working on a simple game in Java, everything goes fine, except I have a situation where I need to evenly spread out nodes on the circumference of a circle.

For instance, if there are exactly 4 nodes, then one would go straight to the north, one to the south, one to the east and one to the west. Of course there could be an “offset”, i.e., the first node would go slightly away from the north, but the 90 degree angle between two adjacent nodes and the center of circle must be kept.

Below is the code I got so far.

private void randomizePositions(Set<Node> set)
{
    Random rand = new Random();
    for(Node n : set)
    {
        n.x = XCENTER + rand.nextDouble() * MINRADIUS;
        n.y = YCENTER + rand.nextDouble() * MINRADIUS;
        System.out.println("for node : " + n.lbl + " x = " + n.x + " y = " +n.y);            
    }
}

Yes, the positions for the nodes in the set are randomized, as shown in the test output:

================================================

~/Desktop/applet $ javac Graph.java

~/Desktop/applet $ appletviewer
Graph.java

for node : Bird_Food x =
200.97455004134613 y = 205.08056219463253

for node : Groceries x =
204.4727596409387 y = 206.26252504672223

for node : Fish_Food x =
203.22828002758823 y = 202.30400672172576

for node : Pet_Food x =
208.8749664329499 y = 203.43454377979435

for node : Dog_Food x =
207.72724954244495 y = 202.9273879239392

for node : Cat_Food x =
209.55574149936908 y = 209.61827066724257

================================================

So I am wondering how could I calculate the positions correctly, given only the total number of nodes in a set? Any idea?

Many thanks to the suggestions in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T18:32:41+00:00Added an answer on May 17, 2026 at 6:32 pm

    Spacing nodes on a circle in a uniform way is equivalent to setting the angular position of the nodes uniformly. Given N nodes, you can compute the angle for each node as some multiple of 2*pi/N radians, and simply convert the angle into a position on the circle using trigonometry…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a simple 2D game engine in Java, and having no trouble
I'm working on a simple multiplayer game in which 2-4 players are placed at
I'm working on a very simple game (essentially an ice sliding puzzle), for now
I'm working on a simple javascript login for a site, and have come up
I'm looking for good/working/simple to use PHP code for parsing raw email into parts.
I'm working on a simple ASP.Net page (handler, actually) where I check the value
I am working on a simple chat application using a System.Windows.Forms.WebBrowser Control to display
i am working on a simple web app which has a user model and
I am working on a simple notification service that will be used to deliver
I am working on a simple CAD program which uses OpenGL to handle on-screen

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.