Package com.itextpdf.kernel.geom
Interface IShape
-
- All Known Implementing Classes:
BezierCurve
,Line
public interface IShape
Represents segment from a PDF path.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Point>
getBasePoints()
Treat base points as the points which are enough to construct a shape.
-
-
-
Method Detail
-
getBasePoints
java.util.List<Point> getBasePoints()
Treat base points as the points which are enough to construct a shape. E.g. for a bezier curve they are control points, for a line segment - the start and the end points of the segment.- Returns:
- Ordered
List
consisting of shape's base points.
-
-