FVector3 constructor
Contents
[
Hide
]__init__(self)
Constructs a new instance of FVector3
def __init__(self):
...
__init__(self, vec)
Initializes a new instance of the FVector3
.
def __init__(self, vec):
...
Parameter | Type | Description |
---|---|---|
vec | Vector3 | Vector3 in double type |
__init__(self, vec)
Initializes a new instance of the FVector4
.
def __init__(self, vec):
...
Parameter | Type | Description |
---|---|---|
vec | Vector4 | Vector4 in double type |
__init__(self, x, y, z)
Initializes a new instance of the FVector3
.
def __init__(self, x, y, z):
...
Parameter | Type | Description |
---|---|---|
x | float | X component of the vector |
y | float | Y component of the vector |
z | float | Z component of the vector |
See Also
- module
aspose.threed.utilities
- class
FVector3
- class
FVector4