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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:26:51+00:00 2026-06-01T06:26:51+00:00

I am trying to rotate a 2D Point in java around another with a

  • 0

I am trying to rotate a 2D Point in java around another with a specified degree value, in this case simply around Point (0, 0) at 90 degrees.

Method:

public void rotateAround(Point center, double angle) {
    x = center.x + (Math.cos(Math.toRadians(angle)) * (x - center.x) - Math.sin(Math.toRadians(angle)) * (y - center.y));
    y = center.y + (Math.sin(Math.toRadians(angle)) * (x - center.x) + Math.cos(Math.toRadians(angle)) * (y - center.y));
}

Expected for (3, 0): X = 0, Y = -3

Returned for (3, 0): X = 1.8369701987210297E-16, Y = 1.8369701987210297E-16

Expected for (0, -10): X = -10, Y = 0

Returned for (0, -10): X = 10.0, Y = 10.0

Is something wrong with the method itself? I ported the function from (Rotating A Point In 2D In Lua – GPWiki) to Java.

EDIT:

Did some performance tests. I wouldn’t have thought so, but the vector solution won, so I’ll use this one.

  • 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-01T06:26:53+00:00Added an answer on June 1, 2026 at 6:26 am

    If you have access to java.awt, this is just

    double[] pt = {x, y};
    AffineTransform.getRotateInstance(Math.toRadians(angle), center.x, center.y)
      .transform(pt, 0, pt, 0, 1); // specifying to use this double[] to hold coords
    double newX = pt[0];
    double newY = pt[1];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to rotate a node around a custom center point in Ogre3D, but
I am trying to make a very simple object rotate around a fixed point
i'm unsuccessfully trying to rotate a rectangle around an external point while tweening. i'm
In OpenGL I'm trying to rotate a camera around a point, with camera being
I am trying to rotate a vector around a certain point on the vector(in
I'm trying to rotate a triangle around it's center point. I'm aware that OpenGL
I am trying to change my Sprite anchor point so that I can rotate
I am trying to rotate an image in OpenCV. I've used this code that
I'm trying to rotate a cube around the axis and what I'm doing is:
I'm trying to rotate an SVG <polygon> (or any other element) using this: var

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.