Uses of Interface
civitas.celestis.util.grid.FloatGrid

Packages that use FloatGrid
Package
Description
 
  • Uses of FloatGrid in civitas.celestis.util.grid

    Classes in civitas.celestis.util.grid that implement FloatGrid
    Modifier and Type
    Class
    Description
    class 
    A static grid implemented using primitive arrays.
    Methods in civitas.celestis.util.grid that return FloatGrid
    Modifier and Type
    Method
    Description
    FloatArrayGrid.map(FloatUnaryOperator f)
    Applies the provided mapper function f to 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 function f to 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 function f to 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 function f to 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 function f to 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 function f to 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 function f to 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 grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    static FloatGrid
    FloatGrid.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 FloatGrid
    Modifier and Type
    Method
    Description
    static int
    Grids.hash(FloatGrid g)
    Hashes a grid.
    FloatArrayGrid.merge(FloatGrid g, FloatBinaryOperator f)
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    void
    FloatArrayGrid.setRange(int r1, int c1, int r2, int c2, FloatGrid g)
    Sets a sub-grid of this grid, copying values from the provided sub-grid g.
    void
    FloatGrid.setRange(int r1, int c1, int r2, int c2, FloatGrid g)
    Sets a sub-grid of this grid, copying values from the provided sub-grid g.
    Constructors in civitas.celestis.util.grid with parameters of type FloatGrid
    Modifier
    Constructor
    Description
     
    Creates a new array grid.