The BoundSphere class is used to create bounding balls.

BoundSphere 类用于创建包围球。

实现

  • IClone

构造函数

访问器

方法

  • 返回 any

    A new BoundSphere instance that is a clone of this one.

    Creates a clone of this bounding sphere.

    创建这个包围球的克隆。

  • 参数

    • ray: Ray

      The ray.

    返回 number

    The distance to the intersection point, or -1 if there is no intersection.

    Determines whether a ray intersects with the bounding sphere and returns the distance to the intersection point.

    判断射线是否与包围球相交,并返回到交点的距离。

  • 参数

    • ray: Ray

      The ray.

    • outPoint: Vector3

      The intersection point.

    返回 number

    The distance to the intersection point, or -1 if there is no intersection.

    Determines whether a ray intersects with the bounding sphere and returns the intersection point.

    判断射线是否与包围球相交,并返回交点。

  • 参数

    • points: Vector3[]

      The array of vertex points.

    • start: number

      The starting offset of the vertex subset.

    • count: number

      The number of vertices in the subset.

    • out: BoundSphere

      The resulting bounding sphere.

    返回 void

    Generates a bounding sphere from a subset of vertex points.

    从顶点的子队列生成包围球。