| 4 | |
| 5 | /** @internal */ |
| 6 | export class DummyEffect implements Effect |
| 7 | { |
| 8 | public pipe: string; |
| 9 | public priority: number; |
| 10 | public addBounds?(bounds: Bounds): void |
| 11 | { |
| 12 | bounds.pad(10); |
| 13 | } |
| 14 | |
| 15 | public addLocalBounds?(bounds: Bounds): void |
| 16 | { |
| 17 | bounds.pad(10); |
| 18 | } |
| 19 | |
| 20 | public containsPoint?(_point: PointData): boolean |
| 21 | { |
| 22 | return false; |
| 23 | } |
| 24 | |
| 25 | public destroy(): void |
| 26 | { |
| 27 | // nothing to destroy |
| 28 | } |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected