intersectsPlane
方法用于判断OBB对象是否与平面相交。返回值为布尔类型,表示是否相交。
intersectsPlane(plane:Plane):Boolean
plane:Plane
- 必需。表示要判断的平面。
const obb = new OBB(center, size, quaternion);
const plane = new Plane(new Vector3(0,1,0), 0);
if(obb.intersectsPlane(plane)){
console.log('有相交!');
}
plane
参数需要传入Plane
对象。若OBB对象与平面相切则不算相交。
支持所有浏览器。