Example #1
0
  public boolean contains(Shape other) {
    if (other.intersects(this)) {
      return false;
    }

    for (int i = 0; i < other.getPointCount(); i++) {
      float[] pt = other.getPoint(i);
      if (!contains(pt[0], pt[1])) {
        return false;
      }
    }

    return true;
  }