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

  • Home
  • SEARCH
  • 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 6172867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:28:00+00:00 2026-05-23T23:28:00+00:00

I am developing a small program, and to generate the coordenates I am using

  • 0

I am developing a small program, and to generate the coordenates I am using this code:

public double[] GenerateNewCircle(int maxSize, int numberOfBalls, double centerx, double centery)
        {

            double[] position = null;

            double angle = 360 / 6;
            double angleRad = DegreeToRadian(incrementAngle);
            position = CalculatePosition(radiusX, radiusY, centerx, centery, angleRad);

            return position;
        }

public double[] CalculatePosition(double radiusX, double radiusY, double centerX, double centerY, double angle)
        {
            double[] position = new double[2];

            position[0] = Math.Cos(angle) * (radiusX + centerX)*1.5;
            position[1] = Math.Sin(angle)  * (radiusY + centerY)*1.5;

            return position;
        }

To check if not overlapping or if is in the area I used this

bool circleIsAllowed(List<Circle> circles, Circle newCircle)
        {
            if (newCircle.x < 10 || newCircle.x > pictureBox1.Width)
                return false;
            if (newCircle.y < 9 || newCircle.y > pictureBox1.Height)
                return false;

            foreach (Circle it in circles)
            {
                double aX = Math.Pow(it.x - newCircle.x, 2);
                double aY = Math.Pow(it.y - newCircle.y, 2);
                double Dif = Math.Abs(aX - aY);
                double ra1 = it.r / 2;
                double ra2 = it.r / 2;

                double raDif = Math.Pow(ra1 + ra2, 2);
                if ((raDif + 1) > Dif) return false;             
            }
            return true; // no existing circle overlaps
        }

I have two problems right now

  1. It blocks because is also trying to generate a circle around it, when is a space near.

  2. How can I increase the distance between the circles? They are too close.

This circles is to draw around a circle (around it)

This is the image:

  • 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-23T23:28:01+00:00Added an answer on May 23, 2026 at 11:28 pm

    There is mistake in second code block. Try this:

    double aX = Math.Pow(it.x - newCircle.x, 2);
    double aY = Math.Pow(it.y - newCircle.y, 2);
    double distance = Math.Pow(aX + aY, 0.5); // distance between circles centers
    
    double ra1 = it.r / 2;
    double ra2 = it.r / 2;
    // is it.r diameter? if so, then ok, else div by 2 is useless
    
    double circlesDistance = 10; // distance between circles (not centers)
    
    if (distance < ra1 + ra2 + circlesDistance)
    {
        return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've just started developing a small C++ program using GraphViz's graph library and noticed
I'm developing a program using PyQt4 and sqlite, I want to include a small
I am developing a small program which cuts images by the color. That's will
I'm developing a small python like language using flex, byacc (for lexical and parsing)
I'm developing a small haskell program that uses an external static library I've developed
I am developing a small site using Wordpress.org and would like multiple parents to
I have a problem with an application I'm currently developing. In this program I
For a small program that I am developing, I decided it's best to implement
I am developing a program in Python that accesses a MySQL database using MySQLdb.
I am developing small command line utilities using Vala on win32. Programs compiled using

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.