DataStream.readFloats

Overview | Methods | This Package | All Packages

DataStream.readFloats

Reads a specified number of float values from this stream into a float array.

Syntax

public float[] readFloats( int count )

public void readFloats( float[] buffer, int index, int count )

Parameters

buffer

The array to read data into.

index

The starting index in the array.

count

The number of float values to read.

Return Value

Returns a float array containing the data read.

Remarks

This method implements the IDataStream.readFloats method. This method validates the arguments and then calls the readCore method to read the data.