Ejemplo n.º 1
0
  public boolean coincides(ShapeEdge other) {
    if (this.isHorizontal() && other.isVertical()) return false;
    if (other.isHorizontal() && this.isVertical()) return false;

    return false;
  }