Hello everyone!
Currently, I am working on the project, where I should implement the controller which is dragging items inside the room. The room may contain multiple floors and walls (call them planes). The floors are created using Mesh objects. The geometries for them are being constructed dynamically by the user (user is drawing the floorplan on canvas element, then the floorplan is converted to the scene but nevermind).
I have the problem with the collisions of loaded GLTF items and. I have tried several methods using Box3 and OBB. For the items came up for the best solution with OBB since the item has rotation attribute and the cubes are ok to work with the items.
The challenge I am dealing with right now.
I have raycaster set from camera. When the ray intersects the item and the wall plane I need to move item’s position so the closest point of its obb lay on the wall plane. I have it’s min/max corners, but the problem is that I am trying to do it using another raycasters from the corners in the wall face’s normal direction. Doing so, I have faced the problem with precision error.
You may see the demo here. As you can see in the log the geometry’s vertices all has y value as 0, but when the ray intersects the mesh, sometimes it may be not directly 0. Therefore the distance which I am moving the item may come through the plane which leads to the problem that the ray from the corner will never intersect this plane anymore.
chatGPT suggested to create constant threshold and correct this value and place the needed one. The problem is that I just can’t make it work since it will be really difficult to find that needed point plus the value may be either negative and positive.
I have stuck on this task for a week by now…
Really appreciate any help!