1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- function rectContains(rect, _a) {
- var x = _a.x, y = _a.y;
- if (x < rect.left || x > rect.left + rect.width || y < rect.top || y > rect.top + rect.height) {
- return false;
- }
- return true;
- }
- exports.rectContains = rectContains;
|