This is an automated email from the ASF dual-hosted git repository.
erans pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git.
from 4fafb06 adding back portion of userguide lost in merge; fixing table
of contents link
new d65ea8f GEOMETRY-72: adding BoundarySource interface and
implementations in Euclidean 2D, 3D and spherical 2D; making a number of
internal BSP tree classes private
new a314aa6 Merge branch 'GEOMETRY-72__Matt'
new de91b1a Upgrade CP.
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../{Splittable.java => BoundarySource.java} | 18 +-
.../core/partitioning/bsp/AbstractBSPTree.java | 24 +-
.../partitioning/bsp/AbstractRegionBSPTree.java | 253 ++++++-----
.../geometry/core/partitioning/bsp/BSPSubtree.java | 15 +-
.../geometry/core/partitioning/bsp/BSPTree.java | 7 +
.../bsp/AbstractBSPTreeMergeOperatorTest.java | 6 +-
.../core/partitioning/bsp/AbstractBSPTreeTest.java | 154 +++----
.../bsp/AbstractRegionBSPTreeTest.java | 4 +-
.../partitioning/bsp/AttributeBSPTreeTest.java | 8 +-
.../geometry/euclidean/oned/RegionBSPTree1D.java | 2 +-
.../geometry/euclidean/threed/Boundaries3D.java | 86 ++++
.../{Transform3D.java => BoundarySource3D.java} | 20 +-
.../geometry/euclidean/threed/ConvexVolume.java | 18 +-
.../geometry/euclidean/threed/RegionBSPTree3D.java | 291 +-----------
.../geometry/euclidean/twod/Boundaries2D.java | 71 +++
.../{Transform2D.java => BoundarySource2D.java} | 20 +-
.../geometry/euclidean/twod/ConvexArea.java | 26 +-
.../commons/geometry/euclidean/twod/Polyline.java | 26 +-
.../geometry/euclidean/twod/RegionBSPTree2D.java | 196 +-------
.../euclidean/DocumentationExamplesTest.java | 7 +-
.../euclidean/threed/Boundaries3DTest.java | 135 ++++++
.../euclidean/threed/ConvexVolumeTest.java | 32 +-
.../euclidean/threed/RegionBSPTree3DTest.java | 491 +++++++--------------
.../geometry/euclidean/threed/SubPlaneTest.java | 13 +-
.../geometry/euclidean/twod/Boundaries2DTest.java | 101 +++++
.../geometry/euclidean/twod/ConvexAreaTest.java | 30 ++
.../geometry/euclidean/twod/PolylineTest.java | 29 +-
.../euclidean/twod/RegionBSPTree2DTest.java | 216 ++++-----
.../geometry/spherical/oned/RegionBSPTree1S.java | 2 +-
.../{package-info.java => BoundarySource2S.java} | 31 +-
.../geometry/spherical/twod/ConvexArea2S.java | 17 +-
.../geometry/spherical/twod/GreatArcPath.java | 26 +-
.../geometry/spherical/twod/RegionBSPTree2S.java | 27 +-
.../geometry/spherical/twod/ConvexArea2STest.java | 27 ++
.../geometry/spherical/twod/GreatArcPathTest.java | 33 +-
.../spherical/twod/RegionBSPTree2STest.java | 53 ++-
pom.xml | 2 +-
src/site/xdoc/index.xml | 6 +-
38 files changed, 1205 insertions(+), 1318 deletions(-)
copy
commons-geometry-core/src/main/java/org/apache/commons/geometry/core/partitioning/{Splittable.java
=> BoundarySource.java} (66%)
create mode 100644
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Boundaries3D.java
copy
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/{Transform3D.java
=> BoundarySource3D.java} (61%)
create mode 100644
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/twod/Boundaries2D.java
copy
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/twod/{Transform2D.java
=> BoundarySource2D.java} (62%)
create mode 100644
commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/Boundaries3DTest.java
create mode 100644
commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/twod/Boundaries2DTest.java
copy
commons-geometry-spherical/src/main/java/org/apache/commons/geometry/spherical/twod/{package-info.java
=> BoundarySource2S.java} (61%)