RaycastHit Edge Question

What is returned in RaycastHit when the ray hits an edge, between two faces?

There is no such thing. Unity will pick one of them depending on the winding and the exact floating point values used.

If you use RayCastAll it will return multiple hits.

Excellent!

Thanks, Joe.