Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by DrDiHai · Mar 23, 2016 at 04:46 PM · rotationfunctionanglescorner

Calculating the corners of a GameObject (sprite) with Quaternion.Angle

I am trying to rotate a (2D) gameObject around one of its corners (that is, it's position + 0.5 scale).

To do that, I'm trying to calculate the angle by which it has already been rotateted like this:

 Quaternion.Angle (myTransform.rotation, Quaternion.identity)

However, when this angle "should" be more than 180°, it becomes smaller again, measuring counter-clockwise (as seen from the camera) instead.

I may have misunderstood what Quaternion.Angle does here...

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by Eno-Khaon · Mar 23, 2016 at 07:00 PM

To understand what an angle calculation is doing, you need to think of it from a 3-Dimensional perspective. In a 3D space, and even moreso when considering Quaternion rotations in general, there is no definite axis by which you're calculating an angle of rotation. 30 degrees around the Y+ axis is 100% identical to 330 degrees around the Y- axis; Quaternion.Angle will result in the smallest possible angle.

That said, hope is not lost. There are multiple ways to ascertain the extent to which your object is rotated in multiple directions:

1) Mathf.Atan2() can provide you with a signed angle (in radians) upon providing a pair of positions to act as an angle. For instance, you could use something like

 float angle = Mathf.Atan2(myTransform.right.y, myTransform.right.x); // up/right

to determine your angle relative to the global "right" direction.

2) You've already determined your angle up to 180 degrees, so you can also add a simple conditional to determine which direction that angle is based around:

 float angle = Quaternion.Angle(myTransform.rotation, Quaternion.identity);
 float rightTest = Vector3.Dot(myTransform.up, Vector3.right);
 if(rightTest < 0)
 {
     // Clockwise rotation.
     // Change conditional to ">= 0" for Counter-Clockwise
     angle *= -1;
 }
Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image DrDiHai · Mar 24, 2016 at 11:15 AM 0
Share

Thanks! Not thinking in 3D was exactly what I did wrong ;).

avatar image
0

Answer by SunnyChow · Mar 24, 2016 at 08:49 AM

try this (rotatePoint is a world position) Vector3 rotatePoint; float rotateAngle

 transform.position-= rotatePoint;
 transform.rotation= Quaternion.Euler(0,0, rotateAngle)*transform.rotation;
 transform.position= Quaternion.Euler(0,0, rotateAngle)*transform.position;
 transform.position+= rotatePoint;
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Pointing object at mouse using raycast only works when object is center screen. 2 Answers

Function to rotate my Player smoothly taking the y and use it to have angle 1 Answer

How can I pitch and roll a circular platform without releasing vertical/horizontal input? 1 Answer

How to get inspector rotation values ? 2 Answers

Rotate object in only one axis to face tha camera 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges