write method

write(self, mat)

Write the matrix to the constant


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

write(self, n)

Write a int value to the constant


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

write(self, f)

Write a float value to the constant


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

write(self, vec)

Write a 4-component vector to the constant


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

write(self, vec)

Write a 3-component vector to the constant


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

write(self, x, y, z, w)

Write a 4-component vector to the constant


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

See Also