All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mindee.geometry.BoundingBoxUtils Maven / Gradle / Ivy

The newest version!
package com.mindee.geometry;

import java.util.Arrays;
import java.util.DoubleSummaryStatistics;

/**
 * Methods for working with BoundingBoxes.
 */
public final class BoundingBoxUtils {
  private BoundingBoxUtils() {
  }

  public static Polygon createBoundingBoxFrom(Polygon polygon) {
    DoubleSummaryStatistics xStatistics = polygon.getCoordinates().stream()
        .mapToDouble(Point::getX)
        .summaryStatistics();

    DoubleSummaryStatistics yStatistics = polygon.getCoordinates()
        .stream().mapToDouble(Point::getY)
        .summaryStatistics();

    return new Polygon(Arrays.asList(
      new Point(xStatistics.getMin(), yStatistics.getMin()),
      new Point(xStatistics.getMax(), yStatistics.getMin()),
      new Point(xStatistics.getMax(), yStatistics.getMax()),
      new Point(xStatistics.getMin(), yStatistics.getMax())));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy