From 568586d403b8b7b85ba4a478d6c8f3e831a1e5df Mon Sep 17 00:00:00 2001 From: iSergio Date: Sat, 4 Nov 2023 00:12:31 +0300 Subject: [PATCH] Added PolygonGeometry.computeRectangleFromPositions for computing a Rectangle that encloses a polygon, including cases over the international date line and the poles. --- .../cs/core/geometry/PolygonGeometry.java | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/geometry/PolygonGeometry.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/geometry/PolygonGeometry.java index c094ad80..a18aa437 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/geometry/PolygonGeometry.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/geometry/PolygonGeometry.java @@ -20,7 +20,10 @@ import jsinterop.annotations.JsConstructor; import jsinterop.annotations.JsMethod; import jsinterop.annotations.JsProperty; import jsinterop.annotations.JsType; +import org.cesiumjs.cs.core.Cartesian3; +import org.cesiumjs.cs.core.Ellipsoid; import org.cesiumjs.cs.core.Packable; +import org.cesiumjs.cs.core.Rectangle; import org.cesiumjs.cs.core.geometry.options.PolygonGeometryOptions; /** @@ -39,6 +42,44 @@ public class PolygonGeometry extends Geometry implements Packable { public PolygonGeometry(PolygonGeometryOptions options) { } + /** + * Computes a rectangle which encloses the polygon defined by the list of positions, including cases over the international date line and the poles. + * @param positions A linear ring defining the outer boundary of the polygon. + * @return The result rectangle + */ + @JsMethod + public static native Rectangle computeRectangleFromPositions(Cartesian3[] positions); + + /** + * Computes a rectangle which encloses the polygon defined by the list of positions, including cases over the international date line and the poles. + * @param positions A linear ring defining the outer boundary of the polygon. + * @param ellipsoid The ellipsoid to be used as a reference. + * @return The result rectangle + */ + @JsMethod + public static native Rectangle computeRectangleFromPositions(Cartesian3[] positions, Ellipsoid ellipsoid); + + /** + * Computes a rectangle which encloses the polygon defined by the list of positions, including cases over the international date line and the poles. + * @param positions A linear ring defining the outer boundary of the polygon. + * @param ellipsoid The ellipsoid to be used as a reference. + * @param arcType The type of line the polygon edges must follow. Valid options are ArcType.GEODESIC and ArcType.RHUMB. + * @return The result rectangle + */ + @JsMethod + public static native Rectangle computeRectangleFromPositions(Cartesian3[] positions, Ellipsoid ellipsoid, Number arcType); + + /** + * Computes a rectangle which encloses the polygon defined by the list of positions, including cases over the international date line and the poles. + * @param positions A linear ring defining the outer boundary of the polygon. + * @param ellipsoid The ellipsoid to be used as a reference. + * @param arcType The type of line the polygon edges must follow. Valid options are ArcType.GEODESIC and ArcType.RHUMB. + * @param result An object in which to store the result. + * @return The result rectangle + */ + @JsMethod + public static native Rectangle computeRectangleFromPositions(Cartesian3[] positions, Ellipsoid ellipsoid, Number arcType, Rectangle result); + /** * Computes the geometric representation of a polygon, including its vertices, * indices, and a bounding sphere. -- GitLab