ema.Vector3F Type

Description

长度为3的float向量。


Type

TypeScript

  type Vector3F = {
  /** @description 向量的x分量。 */
  x: number;
  /** @description 向量的y分量。 */
  y: number;
  /** @description 向量的z分量。 */
  z: number;
};