Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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
1
Question by evenprime · Nov 05, 2021 at 06:29 AM · distanceboundsdistance check

How is the Bounds.SqrDistance calculated behind the scene? What algorithm/formula does it use?

I am just looking to implement that SqrDistance method in a compute shader but not sure about the most efficient way of implementing it.

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

Answer by Bunny83 · Nov 05, 2021 at 09:11 AM

Well, the actual implementation is hidden in the native code of Unity. However since the Bounds is an AABB (axis aligned bounding box) that's actually quite simple. You just need to calculate the closest point on the surface of the bounds and then calculate the distance from that point. To get the closest point you just need to clamp the 3 components of the point you want to know the distance to against the min / max values of the bounds for each axis. Sounds complicated but it isn't.


So if you have min and max of your AABB as two vectors you get the projected point like this

 float3 pointOnBounds = clamp(point, min, max);

In C# would would need to do 3 seperate clamp calls for each component. In a shader we can actually do this with a single line. So this line in HLSL is equivalent to this C# code:

 Vector3 pointOnBounds;
 pointOnBounds.x = Mathf.Clamp(point.x, min.x, max.x);
 pointOnBounds.y = Mathf.Clamp(point.y, min.y, max.y);
 pointOnBounds.z = Mathf.Clamp(point.z, min.z, max.z);

Once you have the point on the bounds you can simply calculate the distance by subtracting your point from it

 float3 dir = pointOnBounds - point;

To get the squared distance that the direction vector represents, you just need to get the dot product with itself

 float sqrDistance = dot(dir, dir);

or if you actually want to know the distance, you could directly use the distance method

 float dist = distance(pointOnBounds, point);



Note: if your point is outside the AABB you get a distance / sqrDistance that is greater than 0. If the point is inside the AABB the distance would always be 0 since the projected point would always be itself.

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
avatar image
2

Answer by andrew-lukasik · Nov 05, 2021 at 10:15 AM

SDF shaders use this equation:

 // src* https://www.iquilezles.org/www/articles/distfunctions/distfunctions.htm
 float sdBox( float3 p, float3 b )
 {
   float3 q = abs(p) - b;
   return length(max(q,0.0)) + min(max(q.x,max(q.y,q.z)),0.0);
 }

note:

returns signed distance

b(ox half size) is aabb.extents (i.e. aabb.size*0.5f )

p(oint) is relative to aabb.center

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

131 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

Related Questions

Distance checking not working on build 1 Answer

variable++ error... 1 Answer

code for detecting if a 2d infinite runner player stopped moving because it hit a wall or something 1 Answer

What does bounds.sqrdistance do? 1 Answer

Limit the distance between a GameObject and a Character Controller 0 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