📄 doublegrid2d.java
字号:
fieldx[y]+=ofieldx[y]; } return this; } /** Sets each value in the grid to that value multiplied <i>byThisMuch</i> Returns the modified grid. */ public final DoubleGrid2D multiply(final double byThisMuch) { if (byThisMuch==1.0) return this; double[] fieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; for(int y=0;y<height;y++) fieldx[y]*=byThisMuch; } return this; } /** Sets the value at each location in the grid to that value multiplied by to the value at the equivalent location in the provided grid. Returns the modified grid. */ public final DoubleGrid2D multiply(final IntGrid2D withThis) { final int[][] otherField = withThis.field; double[] fieldx = null; int[] ofieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; ofieldx = otherField[x]; for(int y=0;y<height;y++) fieldx[y]*=ofieldx[y]; } return this; } /** Sets the value at each location in the grid to that value multiplied by to the value at the equivalent location in the provided grid. Returns the modified grid. */ public final DoubleGrid2D multiply(final DoubleGrid2D withThis) { final double[][] otherField = withThis.field; double[] fieldx = null; double[] ofieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; ofieldx = otherField[x]; for(int y=0;y<height;y++) fieldx[y]*=ofieldx[y]; } return this; } /** Sets each value in the grid to floor(value). Returns the modified grid. */ public final DoubleGrid2D floor() { double[] fieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; for(int y=0;y<height;y++) fieldx[y] = /*Strict*/Math.floor(fieldx[y]); } return this; } /** Sets each value in the grid to ceil(value). Returns the modified grid. */ public final DoubleGrid2D ceiling() { double[] fieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; for(int y=0;y<height;y++) fieldx[y] = /*Strict*/Math.ceil(fieldx[y]); } return this; } /** Eliminates the decimal portion of each value in the grid (rounds towards zero). Returns the modified grid. */ public final DoubleGrid2D truncate() { double[] fieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; for(int y=0;y<height;y++) if (field[x][y] > 0.0) /*Strict*/Math.floor(field[x][y]); else /*Strict*/Math.ceil(field[x][y]); } return this; } /** Sets each value in the grid to rint(value). That is, each value is rounded to the closest integer value. If two integers are the same distance, the value is rounded to the even integer. Returns the modified grid. */ public final DoubleGrid2D rint() { double[] fieldx = null; final int width = this.width; final int height = this.height; for(int x=0;x<width;x++) { fieldx = field[x]; for(int y=0;y<height;y++) fieldx[y] = /*Strict*/Math.rint(fieldx[y]); } return this; } /** * Gets all neighbors of a location that satisfy max( abs(x-X) , abs(y-Y) ) <= dist. This region forms a * square 2*dist+1 cells across, centered at (X,Y). If dist==1, this * is equivalent to the so-called "Moore Neighborhood" (the eight neighbors surrounding (X,Y)), plus (X,Y) itself. * Places each x and y value of these locations in the provided DoubleBags xPos and yPos, clearing the bags first. * Then places into the result DoubleBag the elements at each of those <x,y> locations clearning it first. * Returns the result DoubleBag (constructing one if null had been passed in). * null may be passed in for the various bags, though it is more efficient to pass in a 'scratch bag' for * each one. */ public final DoubleBag getNeighborsMaxDistance( final int x, final int y, final int dist, final boolean toroidal, DoubleBag result, IntBag xPos, IntBag yPos ) { if( xPos == null ) xPos = new IntBag(); if( yPos == null ) yPos = new IntBag(); if (result == null) result = new DoubleBag(); getNeighborsMaxDistance( x, y, dist, toroidal, xPos, yPos ); result.clear(); for( int i = 0 ; i < xPos.numObjs ; i++ ) result.add( field[xPos.objs[i]][yPos.objs[i]] ); return result; } /** * Gets all neighbors of a location that satisfy abs(x-X) + abs(y-Y) <= dist. This region forms a diamond * 2*dist+1 cells from point to opposite point inclusive, centered at (X,Y). If dist==1 this is * equivalent to the so-called "Von-Neumann Neighborhood" (the four neighbors above, below, left, and right of (X,Y)), * plus (X,Y) itself. * Places each x and y value of these locations in the provided DoubleBags xPos and yPos, clearing the bags first. * Then places into the result DoubleBag the elements at each of those <x,y> locations clearning it first. * Returns the result DoubleBag (constructing one if null had been passed in). * null may be passed in for the various bags, though it is more efficient to pass in a 'scratch bag' for * each one. */ public final DoubleBag getNeighborsHamiltonianDistance( final int x, final int y, final int dist, final boolean toroidal, DoubleBag result, IntBag xPos, IntBag yPos ) { if( xPos == null ) xPos = new IntBag(); if( yPos == null ) yPos = new IntBag(); if (result == null) result = new DoubleBag(); getNeighborsHamiltonianDistance( x, y, dist, toroidal, xPos, yPos ); result.clear(); for( int i = 0 ; i < xPos.numObjs ; i++ ) result.add( field[xPos.objs[i]][yPos.objs[i]] ); return result; } /** * Gets all neighbors located within the hexagon centered at (X,Y) and 2*dist+1 cells from point to opposite point * inclusive. * If dist==1, this is equivalent to the six neighbors immediately surrounding (X,Y), * plus (X,Y) itself. * Places each x and y value of these locations in the provided DoubleBags xPos and yPos, clearing the bags first. * Then places into the result DoubleBag the elements at each of those <x,y> locations clearning it first. * Returns the result DoubleBag (constructing one if null had been passed in). * null may be passed in for the various bags, though it is more efficient to pass in a 'scratch bag' for * each one. */ public final DoubleBag getNeighborsHexagonalDistance( final int x, final int y, final int dist, final boolean toroidal, DoubleBag result, IntBag xPos, IntBag yPos ) { if( xPos == null ) xPos = new IntBag(); if( yPos == null ) yPos = new IntBag(); if (result == null) result = new DoubleBag(); getNeighborsHexagonalDistance( x, y, dist, toroidal, xPos, yPos ); result.clear(); for( int i = 0 ; i < xPos.numObjs ; i++ ) result.add( field[xPos.objs[i]][yPos.objs[i]] ); return result; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -