* Checks if the object contains the given point. * Returns true if the point lies within the Graphics object's rendered area. * @example * ```ts * const graphics = new Graphics(); * * // Draw a shape * graphics * .rect(0, 0, 100, 100) * .fill({ co
(point: PointData)
| 239 | * @see {@link PointData} For point data structure |
| 240 | */ |
| 241 | public override containsPoint(point: PointData) |
| 242 | { |
| 243 | return this._context.containsPoint(point); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Destroys this graphics renderable and optionally its context. |
nothing calls this directly
no test coverage detected