The Transform3D class is used to implement 3D transformations.

Transform3D 类用于实现3D变换。

层级 (查看层级一览)

访问器

  • get isDefaultMatrix(): boolean

    返回 boolean

    Whether it is the default matrix. If true, it indicates that there is no change relative to the parent node, and calculations will be skipped based on this parameter.

    是否为默认矩阵,如果为true,表示自身相对于父节点并无任何改变,将通过这个参数忽略计算。

方法

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 返回 Vector3

    The world scale.

    The world scale. Under certain conditions, obtaining this value may not be accurate (e.g., when the parent node has scaling and the child node has rotation). The scaling may be skewed and cannot be correctly represented using Vector3. A Matrix3x3 matrix must be used for correct representation.

    世界缩放。 某种条件下获取该值可能不正确(例如:父节点有缩放,子节点有旋转)。 缩放会倾斜,无法使用Vector3正确表示,必须使用Matrix3x3矩阵才能正确表示。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • target: Vector3

      The target to look at.

    • up: Vector3

      The up vector.

    • isLocal: boolean = false

      Whether to use local space. Default is false.

    • isCamera: boolean = true

      Whether it's a camera. Default is true.

    返回 void

    Look at a target position.

    观察目标位置。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • rotation: Vector3

      The rotation amount.

    • isLocal: boolean = true

      Whether to use local space. Default is true.

    • isRadian: boolean = true

      Whether the rotation is in radians. Default is true.

    返回 void

    Perform rotation transformation.

    旋转变换。

  • 参数

    • out: Quaternion

      The receiving quaternion.

    • a: Vector3

      The initial vector (normalized).

    • b: Vector3

      The destination vector (normalized).

    返回 boolean

    True if a rotation was applied, false if the vectors are already aligned.

    This is a function from glmatrix. Sets a quaternion to represent the shortest rotation from one vector to another. Both vectors are assumed to be unit length.

    这是一个 glmatrix 中的函数。设置一个四元数来表示从一个向量到另一个向量的最短旋转。 假设两个向量都是单位长度。

  • 参数

    • value: Vector3

      The world scale to set.

    返回 void

    The world scale.

    Set the world scale. Under certain conditions, setting this value may not be accurate (e.g., when the parent node has scaling and the child node has rotation). The scaling may be skewed and cannot be correctly represented using Vector3. A Matrix3x3 matrix must be used for correct representation.

    设置世界缩放。 某种条件下设置该值可能不正确(例如:父节点有缩放,子节点有旋转)。 缩放会倾斜,无法使用Vector3正确表示,必须使用Matrix3x3矩阵才能正确表示。

  • 参数

    • translation: Vector3

      The distance to move.

    • isLocal: boolean = true

      Whether to use local space. Default is true.

    返回 void

    Perform translation transformation.

    平移变换。