Vector 2D
Contains two cordinates (X, Y) to describe a position or movement vector in 2D Space
Functions
FIR_Operator_Add (other : Struct<Vector2D>) → result : Struct<Vector2D>
The addition (+) operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Add |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector2D> |
The other vector that should be added to this vector |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector2D> |
The resulting vector of the vector addition |
FIR_Operator_Neg () → result : Struct<Vector2D>
The Negation operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Neg |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector2D> |
The resulting vector of the vector negation |
FIR_Operator_Sub (other : Struct<Vector2D>) → result : Struct<Vector2D>
The subtraction (-) operator for this struct.
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Operator Sub |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector2D> |
The other vector that should be subtracted from this vector |
| Name | Type | Description |
|---|---|---|
Result |
Struct<Vector2D> |
The resulting vector of the vector subtraction |
FIR_Operator_Mul (other : Struct<Vector2D>) → result : Float
Details
Flags |
RuntimeSync RuntimeParallel RuntimeAsync MemberFunc |
Display Name |
Scalar Product |
| Name | Type | Description |
|---|---|---|
Other |
Struct<Vector2D> |
The other vector to calculate the scalar product with. |
| Name | Type | Description |
|---|---|---|
Result |
Float |
The resulting scalar product. |
FIR_Operator_Mul_1 (factor : Float) → result : Struct<Vector2D>
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<Vector2D> |
The resulting scaled vector. |