I am writing my own PathIterator
implementation.
Currently I implemented method with flatness with flatness-less one:
@Override
public PathIterator getPathIterator(AffineTransform at, double flatness) {
return getPathIterator(at);
}
i.e. I am ignoring it.
What is the simplest way to work with flatness
parameter?
My current iterator gives a series of parallel vertical lines (not connected between). How important for me to implement flatness-aware version of the iterator? Where is it used?