BufferGeometry
Object3D
Raycaster
Camera
CubeCamera
PerspectiveCamera
OrthographicCamera
StereoCamera
Clock
Curve
CurvePath
Path
Shape
ShapePath
ArrowHelper
AxesHelper
BoxHelper
Box3Helper
CameraHelper
DirectionalLightHelper
GridHelper
PolarGridHelper
HemisphereLightHelper
PlaneHelper
PointLightHelper
SkeletonHelper
SpotLightHelper
Light
PointLight
RectAreaLight
SpotLight
DirectionalLight
HemisphereLight
LightShadow
PointLightShadow
AnimationLoader
AudioLoader
BufferGeometryLoader
CompressedTextureLoader
CubeTextureLoader
DataTextureLoader
FileLoader
ImageBitmapLoader
ImageLoader
Loader
LoaderUtils
MaterialLoader
ObjectLoader
TextureLoader
LoadingManager
Material
Box2
Box3
Color
Cylindrical
Euler
Frustum
Interpolant
Line3
MathUtils
Matrix3
Matrix4
Plane
Quaternion
AnimationAction
AnimationClip
AnimationMixer
AnimationObjectGroup
AnimationUtils
keyframeTrack
PropertyBinding
PropertyMixer
BooleanKeyframeTrack
QuaternionKeyframeTrack
StringKeyframeTrack
Audio
AudioAnalyser
AudioContext
AudioListener
PositionalAudio

Box2.containsBox()

该函数是three.js中Box2类的一个方法,用于判断当前Box2是否完全包含另一个Box2。

语法

containsBox(box: Box2): boolean

参数

  • box:一个Box2对象。

返回值

  • boolean:返回true表示当前Box2完全包含另一个Box2,反之则返回false。

示例

const box1 = new THREE.Box2(new THREE.Vector2(1, 1), new THREE.Vector2(3, 3));
const box2 = new THREE.Box2(new THREE.Vector2(2, 2), new THREE.Vector2(2.5, 2.5));

console.log(box1.containsBox(box2)); // true

在示例中,我们创建了两个Box2对象box1和box2。box1的范围是从(1,1)到(3,3),而box2的范围是从(2,2)到(2.5,2.5)。我们使用Box2.containsBox()方法判断box1是否包含box2,由于box2完全在box1内部,因此返回true。

注意事项

  • 该方法只能用于Box2类型,如果需要判断Box3是否包含另一个Box3,需要使用THREE.Box3.containsBox()方法。
  • 该方法只判断当前Box2是否完全包含另一个Box2,即两个Box2的边界重合时也会返回false,如果需要判断边界是否重合可以使用Box2.intersectsBox()方法。