手册
- 起步
- 进阶
- 构建工具
参考
- 动画
- 动画 / 轨道
- 音频
- 摄像机
- 常量
- 核心
- 核心 / BufferAttributes
- 附件
- 附件 / 核心
- 附件 / 曲线
- 附件 / 物体
- 几何体
- 立方缓冲几何体(BoxGeometry)
- 圆形缓冲几何体(CircleGeometry)
- 圆锥缓冲几何体(ConeGeometry)
- 圆柱缓冲几何体(CylinderGeometry)
- 十二面缓冲几何体(DodecahedronGeometry)
- 边缘几何体(EdgesGeometry)
- 挤压缓冲几何体(ExtrudeGeometry)
- 二十面缓冲几何体(IcosahedronGeometry)
- 车削缓冲几何体(LatheGeometry)
- 八面缓冲几何体(OctahedronGeometry)
- 参数化缓冲几何体(ParametricGeometry)
- 平面缓冲几何体(PlaneGeometry)
- 多面缓冲几何体(PolyhedronGeometry)
- 圆环缓冲几何体(RingGeometry)
- 形状缓冲几何体(ShapeGeometry)
- 球缓冲几何体(SphereGeometry)
- 四面缓冲几何体(TetrahedronGeometry)
- 文本缓冲几何体(TextGeometry)
- 圆环缓冲几何体(TorusGeometry)
- 圆环缓冲扭结几何体(TorusKnotGeometry)
- 管道缓冲几何体(TubeGeometry)
- 网格几何体(WireframeGeometry)
- 辅助对象
- 灯光
- 灯光 / 阴影
- 加载器
- 加载器 / 管理器
- 材质
- 基础线条材质(LineBasicMaterial)
- 虚线材质(LineDashedMaterial)
- 材质(Material)
- 基础网格材质(MeshBasicMaterial)
- 深度网格材质(MeshDepthMaterial)
- MeshDistanceMaterial
- Lambert网格材质(MeshLambertMaterial)
- MeshMatcapMaterial
- 法线网格材质(MeshNormalMaterial)
- Phong网格材质(MeshPhongMaterial)
- 物理网格材质(MeshPhysicalMaterial)
- 标准网格材质(MeshStandardMaterial)
- MeshToonMaterial
- 点材质(PointsMaterial)
- 原始着色器材质(RawShaderMaterial)
- 着色器材质(ShaderMaterial)
- 阴影材质(ShadowMaterial)
- 点精灵材质(SpriteMaterial)
- 数学库
- 数学库 / 插值
- 物体
- 渲染器
- 渲染器 / 着色器
- 渲染器 / WebXR
- 场景
- 纹理贴图
示例
- 动画
- 控制
- 几何体
- 辅助对象
- 灯光
- 加载器
- 物体
- 后期处理
- 导出器
- 数学库
- QuickHull
- 渲染器
- 实用工具
开发者参考
- 差异化支持
- WebGL 渲染器
球(Sphere)
一个球由球心和半径所定义。
构造函数
Sphere( center : Vector3, radius : Float )
center - 球心的位置,默认值是一个位于(0, 0, 0)的Vector3。
radius - 球的半径,默认值是-1。
创建一个新的Sphere。
属性
.center : Vector3
A Vector3定义了球心的位置,默认值位于(0, 0, 0)。
.radius : Float
球的半径,默认值为0。
方法
.applyMatrix4 ( matrix : Matrix4 ) : Sphere
matrix - 将被应用的Matrix4矩阵。
使用所传入的Matrix4矩阵来对球进行变换。
.clampPoint ( point : Vector3, target : Vector3 ) : Vector3
point - Vector3 将要夹取的点。
target — 结果将被复制到这个Vector3中。
从球中夹取一个点。若这一点位于球外,则将会夹取到该点球边缘最近的点。已位于球中的点将不会受到影响。
.clone () : Sphere
返回一个新的球,新的球与这个球具有相同的center和radius。
.containsPoint ( point : Vector3 ) : Boolean
point - the Vector3 to be checked
检查球体中是否包含所传入的point点,包括球的表面。
.copy ( sphere : Sphere ) : Sphere
.distanceToPoint ( point : Vector3 ) : Float
返回球的边界到所传入的point点的最近距离。 若这个点,则距离将为负值。
.expandByPoint ( point : Vector3 ) : this
point - Vector3 that should be included in the sphere.
Expands the boundaries of this sphere to include point.
.isEmpty () : Boolean
检查球是否为空(the radius set to a negative number). Spheres with a radius of 0 contain only their center point and are not considered to be empty.
.makeEmpty () : Sphere
Makes the sphere empty by setting center to (0, 0, 0) and radius to -1.
.equals ( sphere : Sphere ) : Boolean
检查这两个球的球心与半径是否相等。
.getBoundingBox ( target : Box3 ) : Box3
target — 结果将被复制到这个Box3中。
返回这个球的Minimum Bounding Box(最小包围盒)。
.intersectsBox ( box : Box3 ) : Boolean
box - 将被用于测试是否与这个球有交集的Box3。
检测这个球与所传入的box是否有交集。
.intersectsPlane ( plane : Plane ) : Boolean
plane - 将被用于测试是否与这个球有交集的Plane。
检测这个球与所传入的plane是否有交集。
.intersectsSphere ( sphere : Sphere ) : Boolean
sphere - 将被用于测试是否与这个球有交集的Sphere。
检测两球之间是否有交集。
.set ( center : Vector3, radius : Float ) : Sphere
center - 球心位置。
radius - 球的半径。
设置球的center和radius属性。
Please note that this method only copies the values from the given center.
.setFromPoints ( points : Array, optionalCenter : Vector3 ) : Sphere
points - 一个包含有Vector3位置的Array。
optionalCenter - 可选, Vector3 球心位置。
计算一个points数组(中的点)的最小边界球。如果给定了optionalCenter,则它将被用作该球的球心; 否则,环绕points的包围盒的轴心将通过计算来得到。
.translate ( offset : Vector3 ) : Sphere
使用所给定Vector3 offset(偏移量)平移球心。
.union ( sphere : Sphere ) : this
sphere - Bounding sphere that will be unioned with this sphere.
Expands this sphere to enclose both the original sphere and the given sphere.
源代码
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论