public boolean isSimple() {
// Test OK
// Test simplicity by building a topological graph and testing for self-intersection
// Is Simple, if the exterior ring and the interior rings does not have selfintersections
// and the exterior ring and the interior rings donĀ“t touch or intersect each other.
IsSimpleOp simpleOp = new IsSimpleOp();
return simpleOp.isSimple(this);
}