This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git


The following commit(s) were added to refs/heads/master by this push:
     new 2e39e9ab Add javadoc comment
2e39e9ab is described below

commit 2e39e9aba9094323cbdb660cefefcdd38d65babb
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Fri Mar 28 13:34:06 2025 +0000

    Add javadoc comment
---
 .../examples/jmh/euclidean/pointmap/VariableSplitOctree.java         | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean/pointmap/VariableSplitOctree.java
 
b/commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean/pointmap/VariableSplitOctree.java
index d1d30f53..f8dc5729 100644
--- 
a/commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean/pointmap/VariableSplitOctree.java
+++ 
b/commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean/pointmap/VariableSplitOctree.java
@@ -42,6 +42,11 @@ public class VariableSplitOctree<V> extends 
AbstractMap<Vector3D, V> {
     /** Size of the tree. */
     private int entryCount;
 
+    /**
+     * Create an instance.
+     *
+     * @param precision the precision
+     */
     public VariableSplitOctree(final Precision.DoubleEquivalence precision) {
         this.precision = precision;
         this.root = new VariableSplitOctreeNode<>(this);

Reply via email to