Float32Array Class
Float32Array class
Represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order.
public class Float32Array : TypedArray<float>
Constructors
| Name | Description |
|---|
| Float32Array(ArrayBuffer) | Initializes a new instance of the Float32Array class. |
| Float32Array(float[]) | Initializes a new instance of the Float32Array class. |
| Float32Array(int) | Initializes a new instance of the Float32Array class. |
| Float32Array(ArrayBuffer, int) | Initializes a new instance of the Float32Array class. |
| Float32Array(ArrayBuffer, int, int) | Initializes a new instance of the Float32Array class. |
Properties
| Name | Description |
|---|
| getBuffer Gets the ArrayBuffer referenced by this instance. | |
| getByteLength Gets the byteLength accessor property represents the length of an ArrayBuffer in bytes. | |
| getByteOffset Gets the byteOffset from the start of referenced ArrayBuffer. | |
| item { get; set; } | Gets or sets the Single at the specified index. |
| getLength Gets the length of a typed array. | |
Methods
| Name | Description |
|---|
| getPlatformType() | This method is used to retrieve the ECMAScript object . |
Fields
| Name | Description |
|---|
| static readonly BYTES_PER_ELEMENT | The property represents the size in bytes of each element in an typed array. |
See Also