Package | Description |
---|---|
com.badlogic.gdx.graphics.g2d | |
com.badlogic.gdx.math | |
com.badlogic.gdx.scenes.scene2d.ui | |
com.badlogic.gdx.utils |
Modifier and Type | Method and Description |
---|---|
void |
BitmapFont.computeGlyphAdvancesAndPositions(java.lang.CharSequence str,
FloatArray glyphAdvances,
FloatArray glyphPositions)
Computes the glyph advances for the given character sequence and stores them in the provided
FloatArray . |
Modifier and Type | Method and Description |
---|---|
FloatArray |
ConvexHull.computePolygon(float[] polygon,
boolean sorted) |
FloatArray |
ConvexHull.computePolygon(float[] points,
int offset,
int count,
boolean sorted)
Returns the convex hull polygon for the given point cloud.
|
FloatArray |
ConvexHull.computePolygon(FloatArray points,
boolean sorted) |
Modifier and Type | Method and Description |
---|---|
IntArray |
ConvexHull.computeIndices(FloatArray points,
boolean sorted,
boolean yDown) |
FloatArray |
ConvexHull.computePolygon(FloatArray points,
boolean sorted) |
ShortArray |
EarClippingTriangulator.computeTriangles(FloatArray vertices) |
ShortArray |
DelaunayTriangulator.computeTriangles(FloatArray points,
boolean sorted) |
Modifier and Type | Field and Description |
---|---|
protected FloatArray |
TextField.glyphAdvances |
protected FloatArray |
TextField.glyphPositions |
Modifier and Type | Method and Description |
---|---|
FloatArray |
IntFloatMap.Values.toArray()
Returns a new array containing the remaining values.
|
FloatArray |
ObjectFloatMap.Values.toArray()
Returns a new array containing the remaining values.
|
static FloatArray |
FloatArray.with(float... array) |
Modifier and Type | Method and Description |
---|---|
void |
FloatArray.addAll(FloatArray array) |
void |
FloatArray.addAll(FloatArray array,
int offset,
int length) |
boolean |
FloatArray.removeAll(FloatArray array)
Removes from this array all of elements contained in the specified array.
|
Constructor and Description |
---|
FloatArray(FloatArray array)
Creates a new array containing the elements in the specific array.
|