View Javadoc
1   package org.djutils.draw.line;
2   
3   import java.util.ArrayList;
4   import java.util.Arrays;
5   import java.util.Iterator;
6   import java.util.List;
7   
8   import org.djutils.draw.DrawRuntimeException;
9   import org.djutils.draw.point.Point3d;
10  import org.djutils.exceptions.Throw;
11  
12  /**
13   * Closed PolyLine3d. The actual closing point (which is the same as the starting point) is NOT included in the super
14   * PolyLine3d. The constructors automatically remove the last point if it is a at the same location as the first point.
15   * <p>
16   * Copyright (c) 2020-2025 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
17   * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
18   * </p>
19   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
20   * @author <a href="https://github.com/peter-knoppers">Peter Knoppers</a>
21   * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
22   */
23  public class Polygon3d extends PolyLine3d
24  {
25      /** */
26      private static final long serialVersionUID = 20209999L;
27  
28      /**
29       * Construct a new Polygon3d.
30       * @param x the x coordinates of the points
31       * @param y the y coordinates of the points
32       * @param z the z coordinates of the points
33       * @throws IllegalArgumentException when any two successive points are equal, or when there are too few points
34       */
35      public Polygon3d(final double[] x, final double[] y, final double[] z)
36      {
37          this(NO_FILTER, x, y, z);
38      }
39  
40      /**
41       * Construct a new Polygon3d.
42       * @param epsilon minimum distance between points to be considered different (these will <b>not</b> be filtered out)
43       * @param x the x coordinates of the points
44       * @param y the y coordinates of the points
45       * @param z the z coordinates of the points
46       * @throws IllegalArgumentException when any two successive points are equal, or when there are too few points
47       */
48      public Polygon3d(final double epsilon, final double[] x, final double[] y, final double[] z)
49      {
50          super(epsilon, fixClosingPoint(Throw.whenNull(x, "x"), Throw.whenNull(y, "y"), Throw.whenNull(z, "z")),
51                  fixClosingPoint(y, x, z), fixClosingPoint(z, x, y));
52      }
53  
54      /**
55       * Ensure that the last elements in three arrays are is not equal to the first. Remove the last element if necessary.
56       * @param a the a array
57       * @param b the b array
58       * @param c the c array
59       * @return the <code>a</code> array (possibly a copy with the last element removed)
60       */
61      static double[] fixClosingPoint(final double[] a, final double[] b, final double[] c)
62      {
63          if (a.length > 1 && b.length == a.length && c.length == a.length && a[0] == a[a.length - 1] && b[0] == b[a.length - 1]
64                  && c[0] == c[c.length - 1])
65          {
66              return Arrays.copyOf(a, a.length - 1);
67          }
68          return a;
69      }
70  
71      /**
72       * Construct a new Polygon3d.
73       * @param points array of Point3d objects.
74       * @throws NullPointerException when <code>points</code> is <code>null</code>
75       * @throws IllegalArgumentException when <code>points</code> is too short, or contains successive duplicate points
76       */
77      public Polygon3d(final Point3d[] points)
78      {
79          this(NO_FILTER, points);
80      }
81  
82      /**
83       * Construct a new Polygon3d.
84       * @param epsilon minimum distance between points to be considered different (these will <b>not</b> be filtered out)
85       * @param points array of Point3d objects.
86       * @throws NullPointerException when <code>points</code> is <code>null</code>
87       * @throws IllegalArgumentException when <code>points</code> is too short, or contains successive duplicate points
88       */
89      public Polygon3d(final double epsilon, final Point3d[] points)
90      {
91          this(epsilon, PolyLine3d.makeArray(Throw.whenNull(points, "points"), p -> p.x), PolyLine3d.makeArray(points, p -> p.y),
92                  PolyLine3d.makeArray(points, p -> p.z));
93      }
94  
95      /**
96       * Construct a new Polygon3d.
97       * @param point1 the first point of the new Polygon3d
98       * @param point2 the second point of the new Polygon3d
99       * @param otherPoints all remaining points of the new Polygon3d (may be null)
100      * @throws NullPointerException when <code>point1</code> or <code>point2</code> is <code>null</code>, or contains a
101      *             <code>null</code> value
102      * @throws IllegalArgumentException when <code>point1</code> is equal to the last point of <code>otherPoints</code>, or any
103      *             two successive points are equal
104      */
105     public Polygon3d(final Point3d point1, final Point3d point2, final Point3d... otherPoints)
106     {
107         this(NO_FILTER, point1, point2, otherPoints);
108     }
109 
110     /**
111      * Construct a new Polygon3d.
112      * @param epsilon minimum distance between points to be considered different (these will <b>not</b> be filtered out)
113      * @param point1 the first point of the new Polygon3d
114      * @param point2 the second point of the new Polygon3d
115      * @param otherPoints all remaining points of the new Polygon3d (may be null)
116      * @throws NullPointerException when <code>point1</code> or <code>point2</code> is <code>null</code>, or contains a
117      *             <code>null</code> value
118      * @throws IllegalArgumentException when <code>point1</code> is equal to the last point of <code>otherPoints</code>, or any
119      *             two successive points are equal
120      */
121     public Polygon3d(final double epsilon, final Point3d point1, final Point3d point2, final Point3d... otherPoints)
122     {
123         super(epsilon, Throw.whenNull(point1, "point1"), Throw.whenNull(point2, "point2"), fixClosingPoint(point1, otherPoints));
124     }
125 
126     /**
127      * Ensure that the last point of otherPoints is not equal to point1. Remove the last point if necessary.
128      * @param point1 the first point of a new Polygon3d
129      * @param otherPoints the remaining points of a new Polygon3d (may be null)
130      * @return <code>otherPoints</code> (possibly a copy thereof with the last entry removed)
131      */
132     private static Point3d[] fixClosingPoint(final Point3d point1, final Point3d[] otherPoints)
133     {
134         if (otherPoints == null || otherPoints.length == 0)
135         {
136             return otherPoints;
137         }
138         Point3d[] result = otherPoints;
139         Point3d lastPoint = result[result.length - 1];
140         if (point1.x == lastPoint.x && point1.y == lastPoint.y)
141         {
142             result = Arrays.copyOf(otherPoints, result.length - 1);
143             lastPoint = result[result.length - 1];
144         }
145         Throw.when(point1.x == lastPoint.x && point1.y == lastPoint.y, IllegalArgumentException.class,
146                 "Before last point and last point are at same location");
147         return result;
148     }
149 
150     /**
151      * Construct a new Polygon3d from a list of Point3d objects.
152      * @param points the list of points
153      * @throws NullPointerException when <code>points</code> is <code>null</code>
154      * @throws IllegalArgumentException when <code>points</code> is too short, or the last two points are at the same location
155      */
156     public Polygon3d(final List<Point3d> points)
157     {
158         this(NO_FILTER, points);
159     }
160 
161     /**
162      * Construct a new Polygon3d from a list of Point3d objects.
163      * @param epsilon minimum distance between points to be considered different (these will <b>not</b> be filtered out)
164      * @param points the list of points
165      * @throws NullPointerException when <code>points</code> is <code>null</code>
166      * @throws IllegalArgumentException when <code>points</code> is too short, or the last two points are at the same location
167      */
168     public Polygon3d(final double epsilon, final List<Point3d> points)
169     {
170         super(epsilon, fixClosingPoint(true, Throw.whenNull(points, "points")));
171     }
172 
173     /**
174      * Ensure that the last point in the list is different from the first point by possibly removing the last point.
175      * @param doNotModifyList if<code>true</code>; the list of points will not be modified (if the last point is to be
176      *            removed; the entire list up to the last point is duplicated)
177      * @param points the list of points
178      * @return the fixed list
179      * @throws NullPointerException when <code>points</code> is <code>null</code>
180      * @throws IllegalArgumentException when the (resulting) list is too short, or the before last and last point of points have
181      *             the same coordinates
182      */
183     private static List<Point3d> fixClosingPoint(final boolean doNotModifyList, final List<Point3d> points)
184     {
185         Throw.when(points.size() < 2, IllegalArgumentException.class, "Need at least two points");
186         Point3d firstPoint = points.get(0);
187         Point3d lastPoint = points.get(points.size() - 1);
188         List<Point3d> result = points;
189         if (firstPoint.x == lastPoint.x && firstPoint.y == lastPoint.y && firstPoint.z == lastPoint.z)
190         {
191             if (doNotModifyList)
192             {
193                 result = new ArrayList<>(points.size() - 1);
194                 for (int i = 0; i < points.size() - 1; i++)
195                 {
196                     result.add(points.get(i));
197                 }
198             }
199             else
200             {
201                 result.remove(points.size() - 1);
202             }
203             lastPoint = result.get(result.size() - 1);
204         }
205         Throw.when(firstPoint.x == lastPoint.x && firstPoint.y == lastPoint.y && firstPoint.z == lastPoint.z,
206                 IllegalArgumentException.class, "Before last point and last point are at same location");
207         return result;
208     }
209 
210     /**
211      * Construct a new Polygon3d from an iterator that yields Point3d.
212      * @param iterator the iterator
213      */
214     public Polygon3d(final Iterator<Point3d> iterator)
215     {
216         this(NO_FILTER, iterator);
217     }
218 
219     /**
220      * Construct a new Polygon3d from an iterator that yields Point3d.
221      * @param epsilon minimum distance between points to be considered different (these will <b>not</b> be filtered out)
222      * @param iterator the iterator
223      */
224     public Polygon3d(final double epsilon, final Iterator<Point3d> iterator)
225     {
226         this(epsilon, fixClosingPoint(false, iteratorToList(Throw.whenNull(iterator, "iterator"))));
227     }
228 
229     /**
230      * Construct a new Polygon3d from an existing one. This constructor is primarily intended for use in extending classes.
231      * @param polygon the existing Polygon3d
232      * @throws NullPointerException when <code>polygon</code> is <code>null</code>
233      */
234     public Polygon3d(final Polygon3d polygon)
235     {
236         super(polygon);
237     }
238 
239     @Override
240     public double getLength()
241     {
242         // Length a polygon is computed by taking the length of the PolyLine and adding the length of the closing segment
243         return super.getLength()
244                 + Math.hypot(Math.hypot(getX(size() - 1) - getX(0), getY(size() - 1) - getY(0)), getZ(size() - 1) - getZ(0));
245     }
246 
247     @Override
248     public LineSegment3d getSegment(final int index)
249     {
250         if (index < size() - 1)
251         {
252             return super.getSegment(index);
253         }
254         Throw.when(index != size() - 1, IndexOutOfBoundsException.class, "index must be in range [0, .size() - 1] (got %d)",
255                 index);
256         return new LineSegment3d(getX(index), getY(index), getZ(index), getX(0), getY(0), getZ(0));
257     }
258 
259     @Override
260     public Polygon2d project()
261     {
262         double[] projectedX = new double[this.size()];
263         double[] projectedY = new double[this.size()];
264 
265         int nextIndex = 0;
266         for (int i = 0; i < this.size(); i++)
267         {
268             if (i > 0 && getX(i) == getX(i - 1) && getY(i) == getY(i - 1))
269             {
270                 continue;
271             }
272             projectedX[nextIndex] = getX(i);
273             projectedY[nextIndex] = getY(i);
274             nextIndex++;
275         }
276         Throw.when(nextIndex < 2, DrawRuntimeException.class,
277                 "projection yielded too few points to construct a valid Polygon2d");
278         if (nextIndex < projectedX.length)
279         {
280             return new Polygon2d(Arrays.copyOf(projectedX, nextIndex), Arrays.copyOf(projectedY, nextIndex));
281         }
282         return new Polygon2d(projectedX, projectedY);
283     }
284 
285     @Override
286     public Polygon3d reverse()
287     {
288         return new Polygon3d(super.reverse().iterator());
289     }
290 
291     @Override
292     public final String toString()
293     {
294         return toString("%f", false);
295     }
296 
297     @Override
298     public String toString(final String doubleFormat, final boolean doNotIncludeClassName)
299     {
300         StringBuilder result = new StringBuilder();
301         if (!doNotIncludeClassName)
302         {
303             result.append("Polygon3d ");
304         }
305         result.append("[super=");
306         result.append(super.toString(doubleFormat, false));
307         result.append("]");
308         return result.toString();
309     }
310 
311 }