How to get point of intersection of Ray with Tileset?

Hello Team,
I have been investigating into the Cesium.Ray and Cesium3DTileset intersection.

Is there any way I can get the Cartesian3 intersection point between Cesium.Ray and Cesium3DTileSet ?

I was going through the Intersection Test document and the Cesium.Ray document.

https://cesium.com/learn/cesiumjs/ref-doc/Ray.html
https://cesium.com/learn/cesiumjs/ref-doc/IntersectionTests.html?classFilter=IntersectionTests

But could not find much details to get the intersection point.

@Gabby_Getz
@Alexander_Johannesen

Thank you !!

Computing the actual intersection of a picking ray and the geometry of a tileset is not entirely trivial. Keep in mind that 3D Tiles has a built-in concept of “Level Of Detail”: You might see a coarse, low-resolution geometry when you’re far away. And when you zoom in, then the finer, more detailed and high-resolution geometry is loaded. Additionally, there may be multiple tilesets and geometries that are overlapping - so there will be multiple intersections with the ray.

If you describe your goal in more detail, then maybe someone can provide some hints about how it could be accomplished.

In the meantime, maybe you want to have a look at the examples in the Picking Examples Cesium Sandcastle (maybe ‘Pick Position’ or ‘Drill-Down Picking’), to see whether one of these examples is similar to what you want to do.