Vector3 constructor
Contents
[
Hide
]__init__(self)
Constructs a new instance of Vector3
def __init__(self):
...
__init__(self, vec)
Initializes a new instance of the Vector3
struct.
def __init__(self, vec):
...
Parameter | Type | Description |
---|---|---|
vec | FVector3 | The x coordinate. |
__init__(self, v)
Initializes a new instance of the Vector3
struct.
def __init__(self, v):
...
Parameter | Type | Description |
---|---|---|
v | float | V. |
__init__(self, vec4)
Initializes a new instance of the Vector3
struct.
def __init__(self, vec4):
...
Parameter | Type | Description |
---|---|---|
vec4 | Vector4 | Vec4. |
__init__(self, x, y, z)
Initializes a new instance of the Vector3
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. |
See Also
- module
aspose.threed.utilities
- class
Vector3