Skip to content

Commit

Permalink
fix boundingbox method
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Aug 27, 2023
1 parent f49c29b commit 103f972
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public ArrayList< Function< Double, Double > > createWeightFunctions()
/**
* @return - the bounding box of all tiles that are part of this solve. If the coordinates are changed, the current ones should be used.
*/
public Pair<double[],double[]> boundingBox( final BlockData<M, R, P, F> blockData ) { return solveTypeParameters().boundingBox( blockData ); }
public Pair<double[],double[]> boundingBox() { return solveTypeParameters().boundingBox( this ); }

public P solveTypeParameters() { return solveTypeParameters; }
public F blockFactory() { return blockFactory; }
Expand Down

0 comments on commit 103f972

Please sign in to comment.