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 8875649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:01:34+00:00 2026-06-14T19:01:34+00:00

I have a few points. I need to put those points on a circle

  • 0

I have a few points. I need to put those points on a circle and get their coordinates.

function positionX($numItems,$thisNum){ 
  $alpha = 360/$numItems; // angle between the elements
  $r = 1000; // radius
  $angle = $alpha * $thisNum; // angle for N element
  $x = $r * cos($angle); // X coordinates
  return $x;
}

function positionY($numItems,$thisNum){ 
  $alpha = 360/$numItems; // angle between the elements
  $r = 1000; // radius
  $angle = $alpha * $thisNum; // angle for N element
  $y = $r * sin($angle); // Y coordinates
  return $y;
}

But my code isn’t work.. These functions produce strange coordinates.

image example: http://cl.ly/image/453E2w1Y0w0d

UPD:

echo positionX(4,1)."<br>";
echo positionY(4,1)."<br><br>";

echo positionX(4,2)."<br>";
echo positionY(4,2)."<br><br>";

echo positionX(4,3)."<br>";
echo positionY(4,3)."<br><br>";

echo positionX(4,4)."<br>";
echo positionY(4,4)."<br><br>";

4 – All elements;
1,2,3,4 – Number of element.

These code gives me result:

-448.073616129
893.996663601

-598.460069058
0

984.381950633
-176.045946471

-283.691091487
958.915723414

On the circle it does not work.

  • 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-06-14T19:01:36+00:00Added an answer on June 14, 2026 at 7:01 pm

    The cos() and sin() functions expect the argument in radians, not in degrees.

    Use the deg2rad() function to convert

    EDIT

    CODE:

    function positionX($numItems,$thisNum){
      $alpha = 360/$numItems; // angle between the elements
      $r = 1000; // radius
      $angle = $alpha * $thisNum; // angle for N element
      $x = $r * cos(deg2rad($angle)); // X coordinates
      return $x;
    }
    
    function positionY($numItems,$thisNum){
      $alpha = 360/$numItems; // angle between the elements
      $r = 1000; // radius
      $angle = $alpha * $thisNum; // angle for N element
      $y = $r * sin(deg2rad($angle)); // Y coordinates
      return $y;
    }
    
    echo round(positionX(4,1))."<br>";
    echo round(positionY(4,1))."<br><br>";
    
    echo round(positionX(4,2))."<br>";
    echo round(positionY(4,2))."<br><br>";
    
    echo round(positionX(4,3))."<br>";
    echo round(positionY(4,3))."<br><br>";
    
    echo round(positionX(4,4))."<br>";
    echo round(positionY(4,4))."<br><br>";
    

    RESULTS:

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

Sidebar

Related Questions

I have an application where I need to query a database to get/put information.
We currently have quite a few classes in a project, and each of those
I have a Titanium application and I want to put few UI screens which
I have few questions about ssis transction isolation levels. consider a scenario:I have an
i have few confusion regarding ORM(Object Relational Mapping) i am thinking about to use
I have few basic questions on session management in GWTP. Now, we create a
I have few controls (Label, Custom Textbox, Datagridview) docked on a form. When I
I have few basic questions on session management in GWTP. Client : GWTP, Server
I have few text fields like SSN , phone number and email id. I
I have few graphic effects on image which i am able to run on

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.