Vector
Contains three cordinates (X, Y, Z) to describe a position or movement vector in 3D Space
Properties
Functions
FIR_Operator_Add (other : Struct<Vector>) → result : Struct<Vector>
The addition (+) operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Add |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector> |
The other vector that should be added to this vector |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector> |
The resulting vector of the vector addition |
FIR_Operator_Mul (other : Struct<Vector>) → result : Struct<Vector>
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Mul |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector> |
The multiplication (*) operator for this struct. (Each component gets multiplied with the component of the other vector) |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector> |
The resulting vector of the vector multiplication. |
FIR_Operator_Neg () → result : Struct<Vector>
The Negation operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Neg |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector> |
The resulting vector of the vector negation |
FIR_Operator_Sub (other : Struct<Vector>) → result : Struct<Vector>
The subtraction (-) operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Sub |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector> |
The other vector that should be subtracted from this vector |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector> |
The resulting vector of the vector subtraction |
FIR_Operator_Mul_1 (factor : Float) → result : Struct<Vector>
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Vector Factor Scaling |
| Name | Type | Description |
|---|---|---|
Factor |
Float |
The factor with which this vector should be scaled with. |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector> |
The resulting scaled vector. |