Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Arookas · Nov 02, 2012 at 08:01 AM · transformpositionaxisrelativesingle

Find Distance on Single, Relative Axis?

Hello,

The title is basically a summary of my problem, so it wasn't uncomfortably long. My issue is this:

Say I have two objects: object A and object B. Object A is at an arbitrary rotation, and object B at an arbitrary position. How can I get how far object B is on object A's X axis (not the world X axis)? In other words, how can I figure out how far to object's side object B is?

I tried, among other things, analyzing the difference from the two objects' transform positions, but this, unfortunately, includes the difference in the other axes, as well, not to mention the difference being in the world axes, not object A's transform axes.

Any ideas are welcome; thanks!

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
2
Best Answer

Answer by Arookas · Nov 02, 2012 at 09:57 AM

Okay, silly me; I ended up solving this by using some trigonometry that I overlooked:

 var objectA : Transform;
 var objectB : Transform;
 
 // Find relative position
 var relativePos = objectA.InverseTransformPoint(objectB.position);
 
 // Get the angle in radians for cosine
 var cosAngle = Mathf.Atan2(relativePos.z, relativePos.x);
 
 // Get offset on object A's x axis
 var horizontalOffset = Mathf.Cos(cosAngle) * relativePos.magnitude;

Not sure if this is the correct way of doing it, but it works flawlessly, as far as I can tell.

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 yboumaiza7 · Sep 11, 2020 at 12:54 PM 0
Share

hey! I found that your code is working good, but I'm not good with trigonometry though... So could you please convert this code to work on the Z axis (Vertical) of the object not the X axis, thanks in advance!

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

10 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

Related Questions

transform.position.y and x or z + 1? 0 Answers

calculating my position from another object 1 Answer

Change position of camera on scene load? 1 Answer

How do I make one transform rotation the same as anothers? 2 Answers

How do you move the camera relative to the direction it is currently facing? 1 Answer


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