| Package | Description |
|---|---|
| org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
| org.bytedeco.javacpp.indexer |
Contains classes for multidimensional access of arrays and buffers.
|
| Modifier and Type | Method and Description |
|---|---|
FloatPointer |
FloatPointer.capacity(int capacity) |
FloatPointer |
FloatPointer.get(float[] array) |
FloatPointer |
FloatPointer.get(float[] array,
int offset,
int length)
Reads a portion of the native array into a Java array.
|
FloatPointer |
FloatPointer.limit(int limit) |
FloatPointer |
FloatPointer.position(int position) |
FloatPointer |
FloatPointer.put(float... array) |
FloatPointer |
FloatPointer.put(float f) |
FloatPointer |
FloatPointer.put(float[] array,
int offset,
int length)
Writes a portion of a Java array into the native array.
|
FloatPointer |
FloatPointer.put(int i,
float f)
Copies the
float value to the i-th element of a native array. |
| Modifier and Type | Method and Description |
|---|---|
static FloatIndexer |
FloatIndexer.create(FloatPointer pointer,
int[] sizes,
int[] strides) |
static FloatIndexer |
FloatIndexer.create(FloatPointer pointer,
int[] sizes,
int[] strides,
boolean direct)
Creates a float indexer to access efficiently the data of a pointer.
|
Copyright © 2015. All Rights Reserved.