iShapeTriangulation
iShapeTriangulation copied to clipboard
Ignore unused points?
I'm getting this exception thrown from PlainShape.split(). Seems to happen when a polygon has two very nearby vertices.
throw SplitError.unusedPoint
Is it safe to ignore the unused point by replacing the throw with the following code?
i += 1
continue nextNode
Any advice much appreciated!