PreparedGeometry.js 266 B

12345678910111213
  1. export default class PreparedGeometry {
  2. containsProperly(geom) {}
  3. getGeometry() {}
  4. covers(geom) {}
  5. intersects(geom) {}
  6. touches(geom) {}
  7. within(geom) {}
  8. coveredBy(geom) {}
  9. overlaps(geom) {}
  10. disjoint(geom) {}
  11. crosses(geom) {}
  12. contains(geom) {}
  13. }