|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.vividsolutions.jts.operation.buffer.BufferInputLineSimplifier
public class BufferInputLineSimplifier
Simplifies a buffer input line to remove concavities with shallow depth.
The most important benefit of doing this is to reduce the number of points and the complexity of shape which will be buffered. It also reduces the risk of gores created by the quantized fillet arcs (although this issue should be eliminated in any case by the offset curve generation logic).
A key aspect of the simplification is that it affects inside (concave or inward) corners only. Convex (outward) corners are preserved, since they are required to ensure that the generated buffer curve lies at the correct distance from the input geometry.
Another important heuristic used is that the end segments of the input are never simplified. This ensures that the client buffer code is able to generate end caps faithfully.
No attempt is made to avoid self-intersections in the output. This is acceptable for use for generating a buffer offset curve, since the buffer algorithm is insensitive to invalid polygonal geometry. However, this means that this algorithm cannot be used as a general-purpose polygon simplification technique.
Constructor Summary | |
---|---|
BufferInputLineSimplifier(Coordinate[] inputLine)
|
Method Summary | |
---|---|
static Coordinate[] |
simplify(Coordinate[] inputLine,
double distanceTol)
Simplify the input coordinate list. |
Coordinate[] |
simplify(double distanceTol)
Simplify the input coordinate list. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BufferInputLineSimplifier(Coordinate[] inputLine)
Method Detail |
---|
public static Coordinate[] simplify(Coordinate[] inputLine, double distanceTol)
inputLine
- the coordinate list to simplifydistanceTol
- simplification distance tolerance to use
public Coordinate[] simplify(double distanceTol)
distanceTol
- simplification distance tolerance to use
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |