Hi
I have drawn a plane on the 3d model, which looks fine but When the model is viewed from certain angles(especially while rotating), the view would cut through the plane and display the 3D model (as displayed in the image below).
Here is the sample code that I am using to draw the shape(plane) on the model.
const shapeMesh = new THREE.Mesh(new THREE.ShapeBufferGeometry(shape),
new THREE.MeshStandardMaterial({
color: 0x546b95,
wireframe: false,
opacity: .5,
transparent: true,
}));
What is causing this inconsistency and can it be remedied?