* checks if a point is inside the shape of a node
(x: number, y: number)
| 1946 | * checks if a point is inside the shape of a node |
| 1947 | */ |
| 1948 | isPointInside(x: number, y: number): boolean { |
| 1949 | return isInRect(x, y, this.boundingRect) |
| 1950 | } |
| 1951 | |
| 1952 | /** |
| 1953 | * Checks if the provided point is inside this node's collapse button area. |
no test coverage detected