java.awt.Shape
public class PolygonShape
extends java.lang.Object
implements java.awt.Shape
Shape
which represents a polygon which may contain holes.
Provided because the standard AWT Polygon class does not support holes.Constructor | Description |
---|---|
PolygonShape() |
|
PolygonShape(Coordinate[] shellVertices,
java.util.Collection holeVerticesCollection) |
Creates a new polygon
Shape . |
Modifier and Type | Method | Description |
---|---|---|
boolean |
contains(double x,
double y) |
|
boolean |
contains(double x,
double y,
double w,
double h) |
|
boolean |
contains(java.awt.geom.Point2D p) |
|
boolean |
contains(java.awt.geom.Rectangle2D r) |
|
java.awt.Rectangle |
getBounds() |
|
java.awt.geom.Rectangle2D |
getBounds2D() |
|
java.awt.geom.PathIterator |
getPathIterator(java.awt.geom.AffineTransform at) |
|
java.awt.geom.PathIterator |
getPathIterator(java.awt.geom.AffineTransform at,
double flatness) |
|
boolean |
intersects(double x,
double y,
double w,
double h) |
|
boolean |
intersects(java.awt.geom.Rectangle2D r) |
public PolygonShape(Coordinate[] shellVertices, java.util.Collection holeVerticesCollection)
Shape
.shellVertices
- the vertices of the shellholeVerticesCollection
- a collection of Coordinate[] for each holepublic PolygonShape()
public java.awt.Rectangle getBounds()
getBounds
in interface java.awt.Shape
public java.awt.geom.Rectangle2D getBounds2D()
getBounds2D
in interface java.awt.Shape
public boolean contains(double x, double y)
contains
in interface java.awt.Shape
public boolean contains(java.awt.geom.Point2D p)
contains
in interface java.awt.Shape
public boolean intersects(double x, double y, double w, double h)
intersects
in interface java.awt.Shape
public boolean intersects(java.awt.geom.Rectangle2D r)
intersects
in interface java.awt.Shape
public boolean contains(double x, double y, double w, double h)
contains
in interface java.awt.Shape
public boolean contains(java.awt.geom.Rectangle2D r)
contains
in interface java.awt.Shape
public java.awt.geom.PathIterator getPathIterator(java.awt.geom.AffineTransform at)
getPathIterator
in interface java.awt.Shape
public java.awt.geom.PathIterator getPathIterator(java.awt.geom.AffineTransform at, double flatness)
getPathIterator
in interface java.awt.Shape
Copyright © 2018. All rights reserved.