2
$\begingroup$

How can be used geometry nodes to displace (translate) points for close or intersecting object in direction of faces normal. With ability of fall-off.

This is what I get close as I could, but even it quite works for Sphere (or it seems to) ...

enter image description here enter image description here

... it is not working for other objects well like Torus. Previously I used Geometry Proximity node for displace, but I didnt know how to use object's face normals.

What could be a proper way for such effect? Thank you

$\endgroup$
1
  • 1
    $\begingroup$ Raycasting down will have a bias for the points above, with the obvious limitation (and so also bias) that a point can be very close, but as long as it's not vertically relevant, it doesn't move (and then suddenly gets within the column of effect, is close, and so the falloff smoothing doesn't apply). Moreover, displacing in the direction of normal is weird, consider how a plane, passing a point, will suddenly flip the displacement of an object… $\endgroup$ Commented Oct 25, 2023 at 18:01

1 Answer 1

2
$\begingroup$

Sample the nearest surface's normal, scale it depending on the distance to that surface:


For a better effect consider detecting if a point started inside the collider. If so, first move it to the nearest surface, and then move it away as if it was at the surface from the beginning. Which simply means that you need to use the standard technique of raycasting down to detect if you're inside, and in such case simply displace by the maximum displacement + found distance to nearest face.

Below I'm doing something slightly more complicated: use the normal of the nearest face, 'move' A LOT into that direction, and from there raycast in reverse direction to find the outermost face of some complex mesh that could have many cavities and holes. Then move to that outer surface point, and displace in that surface's normal (which could be quite different than the original face's normal).

Homework

  • The points suddenly switch the direction of displacement, because the found faces and so their normals suddenly switch. I don't know of any existing feature that would take an interpolated normal used in smooth shading, but such a normal can be calculated. It's complicated, however… First, you need to find the nearest face and edge, and check if the found points on those are at the same position (because the nearest face could be a wrong face as explained in the already linked post). If so, simply interpolate the normal of the two vertices of this edge. If not, get all vertex normals of the face, multiply each by the distance to the "nearest" position, add these all up and normalize.
  • If your mesh has thickness, it could be a point is in empty space inside it, but it still wants to be be put on the outer shell before being displaced. In such case the raycast still probably can be used, because the raycast down will hit, but the dot product with normal comparison will fail (negative dot product), so in such case either you're inside an object with thickness, or simply outside (above) it, and more raycasts would need to be done to ensure either or another, see Hulifier's answer.
$\endgroup$
2
  • $\begingroup$ @vklidu see edit. $\endgroup$ Commented Oct 26, 2023 at 10:28
  • $\begingroup$ Thank you again :) it worked for my study case quite well, but failed for real case that should looks more like this ... is it even possible to solve it? If you will have a time to check my file ... $\endgroup$
    – vklidu
    Commented Oct 29, 2023 at 18:59

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .