Package fr.igred.omero.roi
Interface Polygonal
-
- All Known Implementing Classes:
PolygonWrapper
,PolylineWrapper
public interface Polygonal
Interface for polygonal shapes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.awt.geom.Point2D.Double>
getPoints()
Returns the points in the polygonal shape.void
setPoints(java.util.List<java.awt.geom.Point2D.Double> points)
Sets the points in the polygonal shape.
-
-
-
Method Detail
-
getPoints
java.util.List<java.awt.geom.Point2D.Double> getPoints()
Returns the points in the polygonal shape.- Returns:
- See above.
-
setPoints
void setPoints(java.util.List<java.awt.geom.Point2D.Double> points)
Sets the points in the polygonal shape.- Parameters:
points
- The points to set.
-
-