Question about mesh visibility based on dot product

I actually have a different approach that I think will simplify things and will be easier to understand. So instead of manually calculating the directions and positions, we can actually use Babylon functions to do the math for us.

Since we always want the ray to come directly from the camera’s look at vector and shoot out into the distance we can actually use a createPickingRay for this. Given a screen position, we can fire the ray in the correct direction all the time without having to worry. Now what screen position should we use? That’s simple! Since the camera is in the middle of the screen we will use the middle of the canvas. I believe the problems in your example arose from picking the sphere as the starting point for your ray. Here is the code for this (line 38-43)

var canvas = document.getElementById("renderCanvas");
var width = canvas.width /2;
var height = canvas.height / 2;

var ray = scene.createPickingRay(width, height, BABYLON.Matrix.Identity(), camera);	
var hits = scene.multiPickWithRay(ray);

Now for “change anything it hits” we can do this with the multipick. I think I have some examples above but just in case I include it in this demo as well. Feel free to add more objects to the scene to test it out. In here you can see once the camera is no longer directly looking at the box it won’t continue to go down. There are also some lines you can uncomment (lines 51-53) to visualize the rays but note it will draw a new one every update frame.

Once again, always feel free for follow ups. :+1:

1 Like

Thank you for the playground, you mentioned “Since the camera is in the middle of the screen we will use the middle of the canvas.” I’m not sure why camera is in the middle of the screen?

This is due to the nature of how cameras and camera projections work (another topic I recommend you reading about):

The way cameras are built on 3D, you have a camera at position A, looking at another location B. With this information, we construct a special matrix that, applied to our scene, will place the objects in a way as if the camera was in the “center” of the screen. Scratchapixel is a great resource on this: Placing a Camera: the LookAt Function (Framing: The LookAt Function)

1 Like

Hello @pigga just checking in, do you have any more questions on this? :slight_smile: