write method

write

Write the matrix to the constant

def write(self, mat):
    ...
ParameterTypeDescription
mataspose.threed.utilities.FMatrix4The matrix to write

write

Write a int value to the constant

def write(self, n):
    ...
ParameterTypeDescription
nint

write

Write a float value to the constant

def write(self, f):
    ...
ParameterTypeDescription
ffloat

write

Write a 4-component vector to the constant

def write(self, vec):
    ...
ParameterTypeDescription
vecaspose.threed.utilities.FVector4

write

Write a 3-component vector to the constant

def write(self, vec):
    ...
ParameterTypeDescription
vecaspose.threed.utilities.FVector3

write

Write a 4-component vector to the constant

def write(self, x, y, z, w):
    ...
ParameterTypeDescription
xfloat
yfloat
zfloat
wfloat

See Also