Utils3D is a class used to create 3D tools.

Utils3D 类用于创建3D工具。

构造函数

方法

  • 参数

    • tX: number

      X axis translation.

    • tY: number

      Y axis translation.

    • tZ: number

      Z axis translation.

    • rX: number

      X axis rotation.

    • rY: number

      Y axis rotation.

    • rZ: number

      Z axis rotation.

    • rW: number

      W component of the rotation quaternion.

    • sX: number

      X axis scale.

    • sY: number

      Y axis scale.

    • sZ: number

      Z axis scale.

    • outArray: Float32Array

      Output matrix array.

    • outOffset: number

      Output matrix array offset.

    返回 void

    Calculates the result matrix array by the given translation, rotation, and scale values.

    通过数平移、旋转、缩放值计算到结果矩阵数组。

  • 参数

    • url: string

      The URL to extract the version from.

    返回 string

    The version string or null if not found.

    Retrieves the version string from a URL.

    从URL中获取版本字符串。

  • 参数

    • leftArray: Float32Array

      The left-hand side matrix array.

    • leftOffset: number

      The offset in the left-hand side array.

    • rightArray: Float32Array

      The right-hand side matrix array.

    • rightOffset: number

      The offset in the right-hand side array.

    • outArray: Float32Array

      The output matrix array where the result will be stored.

    • outOffset: number

      The offset in the output array.

    返回 void

    Multiplies two matrices using array data.

    通过数组数据计算矩阵乘法。

  • 参数

    • leftArray: Float32Array

      The left-hand side matrix array.

    • leftOffset: number

      The offset in the left-hand side array.

    • rightMatrix: Matrix4x4

      The right-hand side matrix.

    • outArray: Float32Array

      The output matrix array where the result will be stored.

    • outOffset: number

      The offset in the output array.

    返回 void

    Multiplies a matrix by an array and another matrix, with the restriction that rightArray and outArray cannot be the same array reference.

    通过数组数据和一个矩阵计算矩阵乘法,注意 rightArray 和 outArray 不能是同一个数组引用。

  • 参数

    • leftArray: Float32Array

      The left-hand side matrix array.

    • leftOffset: number

      The offset in the left-hand side array.

    • rightArray: Float32Array

      The right-hand side matrix array.

    • rightOffset: number

      The offset in the right-hand side array.

    • outArray: Float32Array

      The output matrix array where the result will be stored.

    • outOffset: number

      The offset in the output array.

    返回 void

    Multiplies two matrices using array data, with the restriction that rightArray and outArray cannot be the same array reference.

    通过数组数据计算矩阵乘法,注意 rightArray 和 outArray 不能是同一个数组引用。

  • 参数

    • source: Vector3

      The original 3D vector.

    • rotation: Float32Array

      The quaternion array representing the rotation.

    • out: Vector3

      The resulting rotated vector.

    返回 void

    Applies a rotation to a 3D vector using a quaternion.

    使用四元数对三维向量应用旋转。

  • 参数

    • sourceArray: Float32Array

      The source vector components in a Float32Array.

    • sourceOffset: number

      The offset in the source array where the source vector starts.

    • rotation: Quaternion

      The quaternion representing the rotation.

    • outArray: Float32Array

      The array to store the result of the rotation.

    • outOffset: number

      The offset in the output array where the result will be stored.

    返回 void

    Rotates a 3D vector using a quaternion.

    使用四元数旋转三维向量。

  • 参数

    • source: Float32Array

      The source vector array.

    • sourceOffset: number

      The offset in the source array.

    • transform: Matrix4x4

      The transformation matrix.

    • result: Float32Array

      The resulting vector array.

    • resultOffset: number

      The offset in the resulting array.

    返回 void

    Transforms a 3D vector from one array to another using a transformation matrix.

    使用变换矩阵将一个三维向量从一个数组转换到另一个数组。

  • 参数

    • source: Float32Array

      The source normal vector array.

    • sourceOffset: number

      The offset in the source array.

    • transform: Matrix4x4

      The transformation matrix.

    • result: Float32Array

      The resulting normal vector array.

    • resultOffset: number

      The offset in the resulting array.

    返回 void

    Transforms a 3D vector array from one array to another using a transformation matrix, and normalizes the resulting vector array.

    通过矩阵转换一个三维向量数组到另外一个归一化的三维向量数组。

  • 参数

    返回 Promise<String>

    A promise that resolves to a Base64 string representing the RenderTexture.

    Converts a RenderTexture to a Base64 encoded string.

    将 RenderTexture 转换为 Base64 编码的字符串。