Polygon.java 17.1 KB
Newer Older
1
/* Polygon.java -- class representing a polygon
2
   Copyright (C) 1999, 2002, 2004, 2005  Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */
Tom Tromey committed
37 38 39 40


package java.awt;

41
import java.awt.geom.AffineTransform;
42
import java.awt.geom.Line2D;
43 44 45
import java.awt.geom.PathIterator;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
Tom Tromey committed
46 47 48
import java.io.Serializable;

/**
49 50 51 52 53 54 55 56 57 58 59
 * This class represents a polygon, a closed, two-dimensional region in a
 * coordinate space. The region is bounded by an arbitrary number of line
 * segments, between (x,y) coordinate vertices. The polygon has even-odd
 * winding, meaning that a point is inside the shape if it crosses the
 * boundary an odd number of times on the way to infinity.
 *
 * <p>There are some public fields; if you mess with them in an inconsistent
 * manner, it is your own fault when you get NullPointerException,
 * ArrayIndexOutOfBoundsException, or invalid results. Also, this class is
 * not threadsafe.
 *
60 61
 * @author Aaron M. Renn (arenn@urbanophile.com)
 * @author Eric Blake (ebb9@email.byu.edu)
62 63
 * @since 1.0
 * @status updated to 1.4
Tom Tromey committed
64 65 66
 */
public class Polygon implements Shape, Serializable
{
67 68 69 70
  /**
   * Compatible with JDK 1.0+.
   */
  private static final long serialVersionUID = -6460061437900069969L;
Tom Tromey committed
71

72 73 74 75 76
  /**
   * This total number of endpoints.
   *
   * @serial the number of endpoints, possibly less than the array sizes
   */
Tom Tromey committed
77 78
  public int npoints;

79 80 81 82 83 84
  /**
   * The array of X coordinates of endpoints. This should not be null.
   *
   * @see #addPoint(int, int)
   * @serial the x coordinates
   */
Tom Tromey committed
85 86
  public int[] xpoints;

87 88 89 90 91 92
  /**
   * The array of Y coordinates of endpoints. This should not be null.
   *
   * @see #addPoint(int, int)
   * @serial the y coordinates
   */
Tom Tromey committed
93 94
  public int[] ypoints;

95 96 97 98 99 100 101 102 103
  /**
   * The bounding box of this polygon. This is lazily created and cached, so
   * it must be invalidated after changing points.
   *
   * @see #getBounds()
   * @serial the bounding box, or null
   */
  protected Rectangle bounds;

104 105
  /** A big number, but not so big it can't survive a few float operations */
  private static final double BIG_VALUE = java.lang.Double.MAX_VALUE / 10.0;
106 107 108 109 110

  /**
   * Initializes an empty polygon.
   */
  public Polygon()
Tom Tromey committed
111
  {
112 113 114
    // Leave room for growth.
    xpoints = new int[4];
    ypoints = new int[4];
Tom Tromey committed
115 116
  }

117 118 119 120 121 122 123 124 125 126
  /**
   * Create a new polygon with the specified endpoints. The arrays are copied,
   * so that future modifications to the parameters do not affect the polygon.
   *
   * @param xpoints the array of X coordinates for this polygon
   * @param ypoints the array of Y coordinates for this polygon
   * @param npoints the total number of endpoints in this polygon
   * @throws NegativeArraySizeException if npoints is negative
   * @throws IndexOutOfBoundsException if npoints exceeds either array
   * @throws NullPointerException if xpoints or ypoints is null
Tom Tromey committed
127
   */
128
  public Polygon(int[] xpoints, int[] ypoints, int npoints)
Tom Tromey committed
129 130 131
  {
    this.xpoints = new int[npoints];
    this.ypoints = new int[npoints];
132 133 134
    System.arraycopy(xpoints, 0, this.xpoints, 0, npoints);
    System.arraycopy(ypoints, 0, this.ypoints, 0, npoints);
    this.npoints = npoints;
Tom Tromey committed
135 136
  }

137 138 139 140 141 142 143 144
  /**
   * Reset the polygon to be empty. The arrays are left alone, to avoid object
   * allocation, but the number of points is set to 0, and all cached data
   * is discarded. If you are discarding a huge number of points, it may be
   * more efficient to just create a new Polygon.
   *
   * @see #invalidate()
   * @since 1.4
Tom Tromey committed
145
   */
146
  public void reset()
Tom Tromey committed
147
  {
148 149
    npoints = 0;
    invalidate();
Tom Tromey committed
150 151
  }

152 153 154 155 156 157 158
  /**
   * Invalidate or flush all cached data. After direct manipulation of the
   * public member fields, this is necessary to avoid inconsistent results
   * in methods like <code>contains</code>.
   *
   * @see #getBounds()
   * @since 1.4
Tom Tromey committed
159
   */
160
  public void invalidate()
Tom Tromey committed
161
  {
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    bounds = null;
  }

  /**
   * Translates the polygon by adding the specified values to all X and Y
   * coordinates. This updates the bounding box, if it has been calculated.
   *
   * @param dx the amount to add to all X coordinates
   * @param dy the amount to add to all Y coordinates
   * @since 1.1
   */
  public void translate(int dx, int dy)
  {
    int i = npoints;
    while (--i >= 0)
Tom Tromey committed
177
      {
178 179
	xpoints[i] += dx;
	ypoints[i] += dy;
Tom Tromey committed
180
      }
181 182
    if (bounds != null)
      {
183 184
	bounds.x += dx;
	bounds.y += dy;
185
      }
Tom Tromey committed
186 187
  }

188 189 190 191 192 193
  /**
   * Adds the specified endpoint to the polygon. This updates the bounding
   * box, if it has been created.
   *
   * @param x the X coordinate of the point to add
   * @param y the Y coordiante of the point to add
Tom Tromey committed
194
   */
195
  public void addPoint(int x, int y)
Tom Tromey committed
196
  {
197 198
    if (npoints + 1 > xpoints.length)
      {
199 200 201
	int[] newx = new int[npoints + 1];
	System.arraycopy(xpoints, 0, newx, 0, npoints);
	xpoints = newx;
202 203 204
      }
    if (npoints + 1 > ypoints.length)
      {
205 206 207
	int[] newy = new int[npoints + 1];
	System.arraycopy(ypoints, 0, newy, 0, npoints);
	ypoints = newy;
208 209 210 211 212 213
      }
    xpoints[npoints] = x;
    ypoints[npoints] = y;
    npoints++;
    if (bounds != null)
      {
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	if (npoints == 1)
	  {
	    bounds.x = x;
	    bounds.y = y;
	  }
	else
	  {
	    if (x < bounds.x)
	      {
		bounds.width += bounds.x - x;
		bounds.x = x;
	      }
	    else if (x > bounds.x + bounds.width)
	      bounds.width = x - bounds.x;
	    if (y < bounds.y)
	      {
		bounds.height += bounds.y - y;
		bounds.y = y;
	      }
	    else if (y > bounds.y + bounds.height)
	      bounds.height = y - bounds.y;
	  }
236
      }
Tom Tromey committed
237 238
  }

239 240 241 242 243 244 245 246
  /**
   * Returns the bounding box of this polygon. This is the smallest
   * rectangle with sides parallel to the X axis that will contain this
   * polygon.
   *
   * @return the bounding box for this polygon
   * @see #getBounds2D()
   * @since 1.1
Tom Tromey committed
247
   */
248
  public Rectangle getBounds()
Tom Tromey committed
249
  {
250
    return getBoundingBox();
251 252 253 254 255 256 257 258 259 260 261 262 263
  }

  /**
   * Returns the bounding box of this polygon. This is the smallest
   * rectangle with sides parallel to the X axis that will contain this
   * polygon.
   *
   * @return the bounding box for this polygon
   * @see #getBounds2D()
   * @deprecated use {@link #getBounds()} instead
   */
  public Rectangle getBoundingBox()
  {
264 265
    if (bounds == null)
      {
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
	if (npoints == 0)
	  return bounds = new Rectangle();
	int i = npoints - 1;
	int minx = xpoints[i];
	int maxx = minx;
	int miny = ypoints[i];
	int maxy = miny;
	while (--i >= 0)
	  {
	    int x = xpoints[i];
	    int y = ypoints[i];
	    if (x < minx)
	      minx = x;
	    else if (x > maxx)
	      maxx = x;
	    if (y < miny)
	      miny = y;
	    else if (y > maxy)
	      maxy = y;
	  }
	bounds = new Rectangle(minx, miny, maxx - minx, maxy - miny);
287 288
      }
    return bounds;
Tom Tromey committed
289 290
  }

291 292 293 294 295 296 297
  /**
   * Tests whether or not the specified point is inside this polygon.
   *
   * @param p the point to test
   * @return true if the point is inside this polygon
   * @throws NullPointerException if p is null
   * @see #contains(double, double)
Tom Tromey committed
298
   */
299
  public boolean contains(Point p)
Tom Tromey committed
300
  {
301
    return contains(p.getX(), p.getY());
Tom Tromey committed
302 303
  }

304 305 306 307 308 309 310 311
  /**
   * Tests whether or not the specified point is inside this polygon.
   *
   * @param x the X coordinate of the point to test
   * @param y the Y coordinate of the point to test
   * @return true if the point is inside this polygon
   * @see #contains(double, double)
   * @since 1.1
Tom Tromey committed
312
   */
313
  public boolean contains(int x, int y)
Tom Tromey committed
314
  {
315
    return contains((double) x, (double) y);
Tom Tromey committed
316 317
  }

318 319 320 321 322 323 324 325
  /**
   * Tests whether or not the specified point is inside this polygon.
   *
   * @param x the X coordinate of the point to test
   * @param y the Y coordinate of the point to test
   * @return true if the point is inside this polygon
   * @see #contains(double, double)
   * @deprecated use {@link #contains(int, int)} instead
Tom Tromey committed
326
   */
327
  public boolean inside(int x, int y)
Tom Tromey committed
328
  {
329
    return contains((double) x, (double) y);
Tom Tromey committed
330 331
  }

332 333 334 335 336 337 338 339 340 341
  /**
   * Returns a high-precision bounding box of this polygon. This is the
   * smallest rectangle with sides parallel to the X axis that will contain
   * this polygon.
   *
   * @return the bounding box for this polygon
   * @see #getBounds()
   * @since 1.2
   */
  public Rectangle2D getBounds2D()
Tom Tromey committed
342
  {
343 344
    // For polygons, the integer version is exact!
    return getBounds();
Tom Tromey committed
345 346
  }

347 348 349 350 351 352 353 354 355
  /**
   * Tests whether or not the specified point is inside this polygon.
   *
   * @param x the X coordinate of the point to test
   * @param y the Y coordinate of the point to test
   * @return true if the point is inside this polygon
   * @since 1.2
   */
  public boolean contains(double x, double y)
Tom Tromey committed
356
  {
357
    return ((evaluateCrossings(x, y, false, BIG_VALUE) & 1) != 0);
Tom Tromey committed
358 359
  }

360 361 362 363 364 365 366 367
  /**
   * Tests whether or not the specified point is inside this polygon.
   *
   * @param p the point to test
   * @return true if the point is inside this polygon
   * @throws NullPointerException if p is null
   * @see #contains(double, double)
   * @since 1.2
Tom Tromey committed
368
   */
369
  public boolean contains(Point2D p)
Tom Tromey committed
370
  {
371
    return contains(p.getX(), p.getY());
Tom Tromey committed
372 373
  }

374 375 376 377 378 379 380 381 382 383 384
  /**
   * Test if a high-precision rectangle intersects the shape. This is true
   * if any point in the rectangle is in the shape. This implementation is
   * precise.
   *
   * @param x the x coordinate of the rectangle
   * @param y the y coordinate of the rectangle
   * @param w the width of the rectangle, treated as point if negative
   * @param h the height of the rectangle, treated as point if negative
   * @return true if the rectangle intersects this shape
   * @since 1.2
Tom Tromey committed
385
   */
386
  public boolean intersects(double x, double y, double w, double h)
Tom Tromey committed
387
  {
388 389 390 391 392 393 394 395 396 397 398
    /* Does any edge intersect? */
    if (evaluateCrossings(x, y, false, w) != 0 /* top */
        || evaluateCrossings(x, y + h, false, w) != 0 /* bottom */
        || evaluateCrossings(x + w, y, true, h) != 0 /* right */
        || evaluateCrossings(x, y, true, h) != 0) /* left */
      return true;

    /* No intersections, is any point inside? */
    if ((evaluateCrossings(x, y, false, BIG_VALUE) & 1) != 0)
      return true;

399
    return false;
Tom Tromey committed
400 401
  }

402 403 404 405 406 407 408 409 410 411 412 413
  /**
   * Test if a high-precision rectangle intersects the shape. This is true
   * if any point in the rectangle is in the shape. This implementation is
   * precise.
   *
   * @param r the rectangle
   * @return true if the rectangle intersects this shape
   * @throws NullPointerException if r is null
   * @see #intersects(double, double, double, double)
   * @since 1.2
   */
  public boolean intersects(Rectangle2D r)
Tom Tromey committed
414
  {
415
    return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
Tom Tromey committed
416 417
  }

418 419 420 421 422 423 424 425 426 427 428
  /**
   * Test if a high-precision rectangle lies completely in the shape. This is
   * true if all points in the rectangle are in the shape. This implementation
   * is precise.
   *
   * @param x the x coordinate of the rectangle
   * @param y the y coordinate of the rectangle
   * @param w the width of the rectangle, treated as point if negative
   * @param h the height of the rectangle, treated as point if negative
   * @return true if the rectangle is contained in this shape
   * @since 1.2
Tom Tromey committed
429
   */
430
  public boolean contains(double x, double y, double w, double h)
Tom Tromey committed
431
  {
432
    if (! getBounds2D().intersects(x, y, w, h))
433
      return false;
434 435 436 437 438 439 440 441 442 443 444 445 446

    /* Does any edge intersect? */
    if (evaluateCrossings(x, y, false, w) != 0 /* top */
        || evaluateCrossings(x, y + h, false, w) != 0 /* bottom */
        || evaluateCrossings(x + w, y, true, h) != 0 /* right */
        || evaluateCrossings(x, y, true, h) != 0) /* left */
      return false;

    /* No intersections, is any point inside? */
    if ((evaluateCrossings(x, y, false, BIG_VALUE) & 1) != 0)
      return true;

    return false;
Tom Tromey committed
447 448
  }

449 450 451 452 453 454 455 456 457 458
  /**
   * Test if a high-precision rectangle lies completely in the shape. This is
   * true if all points in the rectangle are in the shape. This implementation
   * is precise.
   *
   * @param r the rectangle
   * @return true if the rectangle is contained in this shape
   * @throws NullPointerException if r is null
   * @see #contains(double, double, double, double)
   * @since 1.2
Tom Tromey committed
459
   */
460
  public boolean contains(Rectangle2D r)
Tom Tromey committed
461
  {
462
    return contains(r.getX(), r.getY(), r.getWidth(), r.getHeight());
Tom Tromey committed
463 464
  }

465 466 467 468 469 470 471 472 473 474 475
  /**
   * Return an iterator along the shape boundary. If the optional transform
   * is provided, the iterator is transformed accordingly. Each call returns
   * a new object, independent from others in use. This class is not
   * threadsafe to begin with, so the path iterator is not either.
   *
   * @param transform an optional transform to apply to the iterator
   * @return a new iterator over the boundary
   * @since 1.2
   */
  public PathIterator getPathIterator(final AffineTransform transform)
Tom Tromey committed
476
  {
477
    return new PathIterator()
Tom Tromey committed
478
      {
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
	/** The current vertex of iteration. */
	private int vertex;

	public int getWindingRule()
	{
	  return WIND_EVEN_ODD;
	}

	public boolean isDone()
	{
	  return vertex > npoints;
	}

	public void next()
	{
	  vertex++;
	}

	public int currentSegment(float[] coords)
	{
	  if (vertex >= npoints)
	    return SEG_CLOSE;
	  coords[0] = xpoints[vertex];
	  coords[1] = ypoints[vertex];
	  if (transform != null)
	    transform.transform(coords, 0, coords, 0, 1);
	  return vertex == 0 ? SEG_MOVETO : SEG_LINETO;
	}

	public int currentSegment(double[] coords)
	{
	  if (vertex >= npoints)
	    return SEG_CLOSE;
	  coords[0] = xpoints[vertex];
	  coords[1] = ypoints[vertex];
	  if (transform != null)
	    transform.transform(coords, 0, coords, 0, 1);
	  return vertex == 0 ? SEG_MOVETO : SEG_LINETO;
	}
      };
Tom Tromey committed
519 520
  }

521 522 523 524 525 526 527 528 529 530
  /**
   * Return an iterator along the flattened version of the shape boundary.
   * Since polygons are already flat, the flatness parameter is ignored, and
   * the resulting iterator only has SEG_MOVETO, SEG_LINETO and SEG_CLOSE
   * points. If the optional transform is provided, the iterator is
   * transformed accordingly. Each call returns a new object, independent
   * from others in use. This class is not threadsafe to begin with, so the
   * path iterator is not either.
   *
   * @param transform an optional transform to apply to the iterator
531
   * @param flatness the maximum distance for deviation from the real boundary
532 533 534 535 536
   * @return a new iterator over the boundary
   * @since 1.2
   */
  public PathIterator getPathIterator(AffineTransform transform,
                                      double flatness)
Tom Tromey committed
537
  {
538 539
    return getPathIterator(transform);
  }
Tom Tromey committed
540

541
  /**
542 543 544
   * Helper for contains, intersects, calculates the number of intersections
   * between the polygon and a line extending from the point (x, y) along
   * the positive X, or Y axis, within a given interval.
545
   *
546
   * @return the winding number.
547 548 549
   * @see #condensed
   * @see #contains(double, double)
   */
550 551
  private int evaluateCrossings(double x, double y, boolean useYaxis,
                                double distance)
552
  {
553 554 555 556 557 558 559 560 561 562
    double x0;
    double x1;
    double y0;
    double y1;
    double epsilon = 0.0;
    int crossings = 0;
    int[] xp;
    int[] yp;

    if (useYaxis)
563
      {
564 565 566 567 568 569
	xp = ypoints;
	yp = xpoints;
	double swap;
	swap = y;
	y = x;
	x = swap;
570
      }
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
    else
      {
	xp = xpoints;
	yp = ypoints;
      }

    /* Get a value which is small but not insignificant relative the path. */
    epsilon = 1E-7;

    x0 = xp[0] - x;
    y0 = yp[0] - y;
    for (int i = 1; i < npoints; i++)
      {
	x1 = xp[i] - x;
	y1 = yp[i] - y;

	if (y0 == 0.0)
	  y0 -= epsilon;
	if (y1 == 0.0)
	  y1 -= epsilon;
	if (y0 * y1 < 0)
	  if (Line2D.linesIntersect(x0, y0, x1, y1, epsilon, 0.0, distance, 0.0))
	    ++crossings;

	x0 = xp[i] - x;
	y0 = yp[i] - y;
      }

    // end segment
    x1 = xp[0] - x;
    y1 = yp[0] - y;
    if (y0 == 0.0)
      y0 -= epsilon;
    if (y1 == 0.0)
      y1 -= epsilon;
    if (y0 * y1 < 0)
      if (Line2D.linesIntersect(x0, y0, x1, y1, epsilon, 0.0, distance, 0.0))
	++crossings;

    return crossings;
Tom Tromey committed
611
  }
612
} // class Polygon
613