You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I see that in your code, you get ray_vector by subtracting the camera origin (camera_world) from the pixel (p_world) ray_vector = camera_world - p_world. I'm wondering if this ray_vector can have a depth other than 1? For example, can you sample a point inside the unit cube and set ray_vector = p_inside_cube - camera_world, will this ray_vector still be a valid input into the ray marching function? Thanks!
The text was updated successfully, but these errors were encountered:
Hi, I see that in your code, you get ray_vector by subtracting the camera origin (camera_world) from the pixel (p_world)
ray_vector = camera_world - p_world.
I'm wondering if this ray_vector can have a depth other than 1? For example, can you sample a point inside the unit cube and setray_vector = p_inside_cube - camera_world
, will this ray_vector still be a valid input into the ray marching function? Thanks!The text was updated successfully, but these errors were encountered: