intersectsPoint method

bool intersectsPoint(
  1. Position point
)

Returns true if this bounding box intesects with point.

X ja y (or lon and lat) are always compared on intersection calculation.

This and point must equal on is3D and isMeasured properties. Z (or elev) is further compared when both has z coordinates, and m is compared when both has m coordinates.

Implementation

bool intersectsPoint(Position point) => Box.testIntersectsPoint(this, point);