We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9cd535 commit ef011eaCopy full SHA for ef011ea
src/main/java/net/imagej/ops/geom/CentroidTuple3D.java
@@ -17,7 +17,7 @@
17
public class CentroidTuple3D extends AbstractUnaryFunctionOp<Collection<? extends Tuple3d>, Vector3d>
18
implements Ops.Geometric.Centroid {
19
@Override
20
- public Vector3d compute1(final Collection<? extends Tuple3d> input) {
+ public Vector3d calculate(final Collection<? extends Tuple3d> input) {
21
final int vectors = input.size();
22
if (vectors == 0) {
23
return new Vector3d(Double.NaN, Double.NaN, Double.NaN);
0 commit comments