ema.Vector4F Type¶
Description¶
长度为4的float向量。
Type¶
TypeScript
type Vector4F = {
/** @description 向量的x分量。 */
x: number;
/** @description 向量的y分量。 */
y: number;
/** @description 向量的z分量。 */
z: number;
/** @description 向量的w分量。 */
w: number;
};