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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:58:47+00:00 2026-05-20T02:58:47+00:00

I was wondering if somebody could help me, I can do it on pen

  • 0

I was wondering if somebody could help me, I can do it on pen and paper using a compass, but can’t do it in Actionscript 3.

As the title says, essentially I need to find the centre of a circle using multiple points from the radius.

  • 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-20T02:58:48+00:00Added an answer on May 20, 2026 at 2:58 am

    You want the Equation for a Circle from 3 Points. Dr. Math also has some nice explanations on your question.

    Edit: I’ve implemented this in JavaScript + SVG; you can see the interactive result on my website:
    http://phrogz.net/SVG/3-point-circle.xhtml

    Here’s the relevant code (I’ve created a Point class like in ActionScript with .x and .y properties):

    function findCircleCenter(p1,p2,p3){
      var d2  = p2.x*p2.x + p2.y*p2.y;
      var bc  = (p1.x*p1.x + p1.y*p1.y - d2) / 2;
      var cd  = (d2 - p3.x*p3.x - p3.y*p3.y) / 2;
      var det = (p1.x-p2.x) * (p2.y-p3.y) - (p2.x-p3.x) * (p1.y-p2.y);
      if (Math.abs(det) > 1e-10) return new Point(
        (bc * (p2.y-p3.y) - cd * (p1.y-p2.y)) / det,
        ((p1.x-p2.x) * cd - (p2.x-p3.x) * bc) / det
      );
    }
    

    Edit 2: For fun, instead of 3 points defining one circle, how about 6 points defining 20? 🙂
    http://phrogz.net/SVG/3-point-circle2.xhtml

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

Sidebar

Related Questions

I'm learning Javascript (mainly using JQuery) and was wondering if somebody could help me.
I was wondering if somebody could help me with how exactly to write some
I've got the syntax down but I'm wondering if somebody can provide an illustrative
Was wondering if somebody could please help me solve this. I've follwed all steps
Hi guys just wondering if somebody could help me try and correctly thread my
i was wondering if somebody could help me out. I have a plan of
Hi there I was wondering if somebody could help me? I have the following
I was wondering if somebody could help me with this, I've seen a few
I was wondering if somebody could show me an example of how to use
Wondering if any of you can help me: I've made a signup modal that

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.