Uses of Interface
civitas.celestis.util.grid.FloatGrid
Packages that use FloatGrid
-
Uses of FloatGrid in civitas.celestis.util.grid
Classes in civitas.celestis.util.grid that implement FloatGridModifier and TypeClassDescriptionclassA static grid implemented using primitive arrays.Methods in civitas.celestis.util.grid that return FloatGridModifier and TypeMethodDescriptionFloatArrayGrid.map(FloatUnaryOperator f) Applies the provided mapper functionfto every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.FloatGrid.map(FloatUnaryOperator f) Applies the provided mapper functionfto every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.ArrayGrid.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new float grid whose values are populated from that of the provided function's return values.AtomicGrid.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new float grid whose values are populated from that of the provided function's return values.Grid.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new float grid whose values are populated from that of the provided function's return values.HashGrid.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new float grid whose values are populated from that of the provided function's return values.SyncGrid.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new float grid whose values are populated from that of the provided function's return values.FloatArrayGrid.merge(FloatGrid g, FloatBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.FloatGrid.merge(FloatGrid g, FloatBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.static FloatGridFloatGrid.of(float[][] values) Creates a new float grid from the provided two-dimensional array of values.FloatArrayGrid.resize(int rows, int columns) Returns a resized grid, whose elements are populated from that of this grid's elements.FloatGrid.resize(int rows, int columns) Returns a resized grid, whose elements are populated from that of this grid's elements.FloatArrayGrid.subGrid(int r1, int c1, int r2, int c2) Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.FloatGrid.subGrid(int r1, int c1, int r2, int c2) Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.FloatArrayGrid.transpose()Returns the transpose of this grid.FloatGrid.transpose()Returns the transpose of this grid.Methods in civitas.celestis.util.grid with parameters of type FloatGridModifier and TypeMethodDescriptionstatic intHashes a grid.FloatArrayGrid.merge(FloatGrid g, FloatBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.FloatGrid.merge(FloatGrid g, FloatBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.voidSets a sub-grid of this grid, copying values from the provided sub-gridg.voidSets a sub-grid of this grid, copying values from the provided sub-gridg.Constructors in civitas.celestis.util.grid with parameters of type FloatGrid