• 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 khg2478 · May 12, 2018 at 03:21 PM · rotationtransformvrquaternioneulerangles

Camera viewport transformation from one world to the rotated world.

Hi. We are working on a viewport based 360 video streaming service and faced a difficult problem, perhaps called as the change of basis problem.

Assuming a user is watching at a point (red dot in the figure) where the main camera's Euler angles are (20, 20, 0) in pitch, yaw, and roll angles in the original world space of which Euler angles are (0, 0, 0).

alt text

Owing to the viewport based service issue, we rotated the original world to (-20, 0, 0) angles and we want to know how the user can have the same viewport in the new world, meaning exactly watching the red sun in the middle. So, here in the rotated world, what will be the Euler angles of the headset? is our question.

alt text

We used Quaternion.euler function to rotate the headset angle but it didn't work as we expected. Ex) (-20, 0, 0).

This problem seems to be calculating Euler angles of an object from XYZ coordinate world to rotated XYZ coordinate world. Any suggestions? Thanks.

ori.png (8.2 kB)
rotated.png (9.4 kB)
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

1 Reply

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

Answer by Glurth · May 12, 2018 at 04:26 PM

I would combine the two Euler Angles as Quaternions. E.g.

 Quaternion camRotation = Quaternion.Euler(20,20,0);
 Quaternion worldRotation = Quaternion.Euler(-20,0,0);
 Quaternion result= worldRotation  * camRotation;  //Note: order is important when multiplying quaternions! (and I might have it backwards)
 Vector3 resultEulers = result.eulerAngles;


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 khg2478 · May 14, 2018 at 05:33 AM 0
Share

Thank you so much. Yes. It was the problem of the order! :)

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

157 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Rotation Jumping values (0 to 180) 1 Answer

Problem in Euler angles 2 Answers

c# modify only one axis of a quaternion 2 Answers

How to get Angle float of specific axis.(Turret clamping related). 2 Answers

Use a single rotation axis of a freely rotating object 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges