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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:34:21+00:00 2026-05-26T05:34:21+00:00

How can I sort an array of points/vectors by counter-clockwise increasing angle from a

  • 0

How can I sort an array of points/vectors by counter-clockwise increasing angle from a given axis vector?

For example:

example configuration

If 0 is the axis vector I would expect the sorted array to be in the order 2, 3, 1.

I’m reasonably sure it’s possible to do this with cross products, a custom comparator, and std::sort().

  • 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-26T05:34:22+00:00Added an answer on May 26, 2026 at 5:34 am

    Yes, you can do it with a custom comparator based on the cross-product. The only problem is that a naive comparator won’t have the transitivity property. So an extra step is needed, to prevent angles either side of the reference from being considered close.

    This will be MUCH faster than anything involving trig. There’s not even any need to normalize first.

    Here’s the comparator:

    class angle_sort
    {
        point m_origin;
        point m_dreference;
    
        // z-coordinate of cross-product, aka determinant
        static double xp(point a, point b) { return a.x * b.y - a.y * b.x; }
    public:
        angle_sort(const point origin, const point reference) : m_origin(origin), m_dreference(reference - origin) {}
        bool operator()(const point a, const point b) const
        {
            const point da = a - m_origin, db = b - m_origin;
            const double detb = xp(m_dreference, db);
    
            // nothing is less than zero degrees
            if (detb == 0 && db.x * m_dreference.x + db.y * m_dreference.y >= 0) return false;
    
            const double deta = xp(m_dreference, da);
    
            // zero degrees is less than anything else
            if (deta == 0 && da.x * m_dreference.x + da.y * m_dreference.y >= 0) return true;
    
            if (deta * detb >= 0) {
                // both on same side of reference, compare to each other
                return xp(da, db) > 0;
            }
    
            // vectors "less than" zero degrees are actually large, near 2 pi
            return deta > 0;
        }
    };
    

    Demo: http://ideone.com/YjmaN

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

Sidebar

Related Questions

How can I sort an array based on two specific values within the array?
How can I sort this array by the value of the "order" key? Even
I need to sort an array that can look like this: $array[4][0] = array('id'
Which algorithm does the JavaScript Array#sort() function use? I understand that it can take
I'm trying to sort a multidimensional array in objective-c i know that i can
To access the array indice at the xth position we can use some sort
I would like to sort an array of strings (in JavaScript) such that groups
I would like to sort an array by the value in its first index,
The UNIX sort command can sort a very large file like this: sort large_file
I know that JTable can sort by a single column. But is it possible

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.