- array
- the float array which the new buffer will be based on.
- start
- the start index, must not be negative and not greater than array.length.
- floatCount
- the length, must not be negative and not greater than array.length - start.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.IndexOutOfBoundsException if either start or floatCount is invalid. Java.Lang.NullPointerException if array is null.
Creates a new float buffer by wrapping the given float array.
The new buffer's position will be start, limit will be start + floatCount, capacity will be the length of the array.