Disjoint is the inverse of Intersects.
()
| 2444 | |
| 2445 | // Disjoint is the inverse of Intersects. |
| 2446 | func (rel Relation) Disjoint() bool { |
| 2447 | return (rel & 0x1B) == 0 |
| 2448 | } |
| 2449 | |
| 2450 | // Intersects returns true if both shapes have at least one point in common, ie. they may |
| 2451 | // touch/overlap/contain/equal. |
no outgoing calls