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

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


    from 43455db9 Upgrade to CP 59.
     new fd47893b GEOMETRY-144
     new 518ff5b1 GEOMETRY-144
     new 031f91f5 GEOMETRY-144
     new 8a5863d5 GEOMETRY-144
     new 0326f7e9 GEOMETRY-144
     new 428d887a Rename ConvexHull2D in euclidean to ConvexHull2DTemp
     new a1995c49 Move ConvexHull2D from hull module to euclidean
     new c9426db0 GEOMETRY-144
     new 519c19fe GEOMETRY-144
     new 92c44343 GEOMETRY-144
     new ede440fd GEOMETRY-144
     new 3ce548d4 GEOMETRY-144
     new f9ce7661 GEOMETRY-144
     new ba153a99 GEOMETRY-144
     new a1cf5f09 GEOMETRY-144
     new 4175c373 GEOMETRY-144
     new 5b21a07d GEOMETRY-144
     new ffc419c4 GEOMETRY-144
     new 5bf0e9ad GEOMETRY-144
     new b87f6399 GEOMETRY-144
     new edfea212 GEOMETRY-144
     new c7868412 GEOMETRY-144
     new 0c3329de GEOMETRY-144
     new 9ba6ea59 GEOMETRY-144
     new 3a2be3bc GEOMETRY-144

The 25 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:
 .../apache/commons/geometry/core}/ConvexHull.java  |   5 +-
 .../geometry/euclidean/twod/hull/ConvexHull2D.java | 461 +++++++++++++++++++++
 .../euclidean/twod/hull}/package-info.java         |   2 +-
 .../euclidean/DocumentationExamplesTest.java       |  42 ++
 .../euclidean/twod/hull}/ConvexHull2DTest.java     |   2 +-
 .../euclidean/twod/hull/ConvexHullBuilderTest.java | 171 ++++++--
 commons-geometry-hull/CONTRIBUTING.md              | 115 -----
 commons-geometry-hull/LICENSE                      | 201 ---------
 commons-geometry-hull/NOTICE                       |   6 -
 commons-geometry-hull/README.md                    | 105 -----
 commons-geometry-hull/pom.xml                      |  97 -----
 .../commons/geometry/hull/ConvexHullGenerator.java |  41 --
 .../twod/AbstractConvexHullGenerator2D.java        | 130 ------
 .../hull/euclidean/twod/AklToussaintHeuristic.java | 163 --------
 .../geometry/hull/euclidean/twod/ConvexHull2D.java | 107 -----
 .../hull/euclidean/twod/ConvexHullGenerator2D.java |  32 --
 .../hull/euclidean/twod/MonotoneChain.java         | 162 --------
 .../apache/commons/geometry/hull/package-info.java |  24 --
 .../src/site/resources/profile.jacoco              |  17 -
 commons-geometry-hull/src/site/site.xml            |  41 --
 .../geometry/hull/DocumentationExamplesTest.java   |  76 ----
 .../euclidean/twod/AklToussaintHeuristicTest.java  |  38 --
 .../hull/euclidean/twod/MonotoneChainTest.java     |  57 ---
 pom.xml                                            |   1 -
 24 files changed, 640 insertions(+), 1456 deletions(-)
 rename {commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull 
=> 
commons-geometry-core/src/main/java/org/apache/commons/geometry/core}/ConvexHull.java
 (91%)
 create mode 100644 
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHull2D.java
 rename 
{commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod
 => 
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/twod/hull}/package-info.java
 (94%)
 rename 
{commons-geometry-hull/src/test/java/org/apache/commons/geometry/hull/euclidean/twod
 => 
commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/twod/hull}/ConvexHull2DTest.java
 (99%)
 rename 
commons-geometry-hull/src/test/java/org/apache/commons/geometry/hull/euclidean/twod/ConvexHullGenerator2DAbstractTest.java
 => 
commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHullBuilderTest.java
 (75%)
 delete mode 100644 commons-geometry-hull/CONTRIBUTING.md
 delete mode 100644 commons-geometry-hull/LICENSE
 delete mode 100644 commons-geometry-hull/NOTICE
 delete mode 100644 commons-geometry-hull/README.md
 delete mode 100644 commons-geometry-hull/pom.xml
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/ConvexHullGenerator.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod/AbstractConvexHullGenerator2D.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod/AklToussaintHeuristic.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod/ConvexHull2D.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod/ConvexHullGenerator2D.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/euclidean/twod/MonotoneChain.java
 delete mode 100644 
commons-geometry-hull/src/main/java/org/apache/commons/geometry/hull/package-info.java
 delete mode 100644 commons-geometry-hull/src/site/resources/profile.jacoco
 delete mode 100644 commons-geometry-hull/src/site/site.xml
 delete mode 100644 
commons-geometry-hull/src/test/java/org/apache/commons/geometry/hull/DocumentationExamplesTest.java
 delete mode 100644 
commons-geometry-hull/src/test/java/org/apache/commons/geometry/hull/euclidean/twod/AklToussaintHeuristicTest.java
 delete mode 100644 
commons-geometry-hull/src/test/java/org/apache/commons/geometry/hull/euclidean/twod/MonotoneChainTest.java

Reply via email to