Struct
Representation of four-dimensional vectors.
表示四维向量。
This structure is used in some places to represent four component vectors (e.g. mesh tangents, parameters for shaders). In the majority of other cases a Vector3 is used.
这个结构在一些地方用来表示四维向量(例如:网格切线,着色器的参数)。在其他情况下大多数使用Vector3。
Variables变量
-
X component of the vector. // 向量的X组件。
-
Y component of the vector. // 向量的Y组件。
-
Z component of the vector. // 向量的Z组件。
-
W component of the vector. // 向量的W组件。
-
Access the x, y, z, w components using [0], [1], [2], [3] respectively.
使用[0], [1],[2],[3]分别访问x, y