()
| 459 | |
| 460 | @computed() |
| 461 | protected filterString(): string { |
| 462 | let filters = ''; |
| 463 | const matrix = this.compositeToWorld(); |
| 464 | for (const filter of this.filters()) { |
| 465 | if (filter.isActive()) { |
| 466 | filters += ' ' + filter.serialize(matrix); |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | return filters; |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * @deprecated Use {@link children} instead. |
no test coverage detected