Float32Array

Float32Array(int)

Initializes a new instance of the Float32Array class.

public Float32Array(int length)
ParameterTypeDescription
lengthInt32The length (number of elements).

See Also


Float32Array(float[])

Initializes a new instance of the Float32Array class.

public Float32Array(float[] data)
ParameterTypeDescription
dataSingle[]The array data.

See Also


Float32Array(ArrayBuffer)

Initializes a new instance of the Float32Array class.

public Float32Array(ArrayBuffer buffer)
ParameterTypeDescription
bufferArrayBufferThe data buffer.

See Also


Float32Array(ArrayBuffer, int)

Initializes a new instance of the Float32Array class.

public Float32Array(ArrayBuffer buffer, int byteOffset)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.

See Also


Float32Array(ArrayBuffer, int, int)

Initializes a new instance of the Float32Array class.

public Float32Array(ArrayBuffer buffer, int byteOffset, int length)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.
lengthInt32The length.

See Also