| java.lang.Object org.apache.harmony.awt.nativebridge.VoidPointer org.apache.harmony.awt.nativebridge.FloatPointer
Method Summary | |
public void | fill(float value, int size) | public float | get(int index) Returns the element at the specified position. | public void | get(float[] dst, int offset, int length) This method transfers int values into the given destination array. | public FloatPointer | getElementPointer(int index) returns class that represents the pointer to specified index. | public void | set(int index, float value) Sets the element at the specified position. | public void | set(float[] src, int offset, int length) This method transfers short values from the given destination array. | public int | size() |
FloatPointer | FloatPointer(int size, boolean direct)(Code) | | |
FloatPointer | FloatPointer(long addr)(Code) | | |
fill | public void fill(float value, int size)(Code) | | |
get | public float get(int index)(Code) | | Returns the element at the specified position.
Parameters: index - |
get | public void get(float[] dst, int offset, int length)(Code) | | This method transfers int values into the given destination array.
Parameters: dst - - The array into which values are to be written Parameters: offset - - The offset within the array of the first element to be written;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be written to the given array;must be non-negative and no larger than dst.length - offset |
getElementPointer | public FloatPointer getElementPointer(int index)(Code) | | returns class that represents the pointer to specified index.
|
set | public void set(int index, float value)(Code) | | Sets the element at the specified position.
Parameters: index - Parameters: value - |
set | public void set(float[] src, int offset, int length)(Code) | | This method transfers short values from the given destination array.
Parameters: src - - The array from which values are to be read Parameters: offset - - The offset within the array of the first element to be read;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be read from the given array;must be non-negative and no larger than dst.length - offset |
|
|