isInside method

bool isInside(
  1. PhysicalEntity<LeapGame> other
)

Whether or not other is inside of the world bounds.

Implementation

bool isInside(PhysicalEntity other) => !isOutside(other);