Vector4 constructor
Contents
[
Hide
]__init__(self)
Constructs a new instance of Vector4
def __init__(self):
...
__init__(self, vec)
Initializes a new instance of the Vector4 struct.
def __init__(self, vec):
...
| Parameter | Type | Description |
|---|---|---|
| vec | Vector3 | Vec. |
__init__(self, vec)
Initializes a new instance of the Vector4 struct.
def __init__(self, vec):
...
| Parameter | Type | Description |
|---|---|---|
| vec | FVector4 | Vec. |
__init__(self, vec, w)
Initializes a new instance of the Vector4 struct.
def __init__(self, vec, w):
...
| Parameter | Type | Description |
|---|---|---|
| vec | Vector3 | Vec. |
| w | float | The width. |
__init__(self, x, y, z)
Initializes a new instance of the Vector4 struct.
def __init__(self, x, y, z):
...
| Parameter | Type | Description |
|---|---|---|
| x | float | The x coordinate. |
| y | float | The y coordinate. |
| z | float | The z coordinate. |
__init__(self, x, y, z, w)
Initializes a new instance of the Vector4 struct.
def __init__(self, x, y, z, w):
...
| Parameter | Type | Description |
|---|---|---|
| x | float | The x coordinate. |
| y | float | The y coordinate. |
| z | float | The z coordinate. |
| w | float | The width. |
See Also
- module
aspose.threed.utilities - class
Vector4