* @function LevelRenderer.Tool.Areal.prototype.isOutside * @description 图形是否不包含鼠标位置。 * @param {Object} shape - 图形。 * @param {number} area - 目标区域。 * @param {number} x - 横坐标。 * @param {number} y - 纵坐标。 * @returns {boolean} 图形是否不包含鼠标位置, true表示坐标处在图形外。
(shape, area, x, y)
| 405 | * @returns {boolean} 图形是否不包含鼠标位置, true表示坐标处在图形外。 |
| 406 | */ |
| 407 | isOutside(shape, area, x, y) { |
| 408 | return !this.isInside(shape, area, x, y); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * @function LevelRenderer.Tool.Areal.prototype.isInsideLine |