Point3D constructor

init

Initializes a new instance of the Point3D class

def __init__(self):
    ...

init

Initializes a new instance of the Point3D class

def __init__(self, x, y):
    ...
ParameterTypeDescription
xfloatX value
yfloatY value

init

Initializes a new instance of the Point3D class

def __init__(self, x, y, z):
    ...
ParameterTypeDescription
xfloatX value
yfloatY value
zfloatZ value

init

Initializes a new instance of the Point3D class

def __init__(self, x, y, z, w):
    ...
ParameterTypeDescription
xfloatX value
yfloatY value
zfloatZ value
wfloatW value

See Also