Intersect self and other.
(self: T, other: "Sketch")
| 1240 | return self.__class__(obj=_to_compound(res)) |
| 1241 | |
| 1242 | def __mul__(self: T, other: "Sketch") -> T: |
| 1243 | """ |
| 1244 | Intersect self and other. |
| 1245 | """ |
| 1246 | |
| 1247 | res = _sanitize_for_bool(self.val()) * _sanitize_for_bool(other.val()) |
| 1248 | |
| 1249 | return self.__class__(obj=_to_compound(res)) |
| 1250 | |
| 1251 | def __truediv__(self: T, other: "Sketch") -> T: |
| 1252 | """ |
nothing calls this directly
no test coverage detected