* Remove any filtration and animate.
()
| 725 | * Remove any filtration and animate. |
| 726 | */ |
| 727 | reset() { |
| 728 | return new Promise<void>((resolve, reject) => { |
| 729 | this._animator.reset().then(() => { |
| 730 | this._details.clear(); |
| 731 | this._details.clearSelection(); |
| 732 | resolve(); |
| 733 | }); |
| 734 | }); |
| 735 | } |
| 736 | |
| 737 | /** |
| 738 | * Select cubes by a filter expression. |
no test coverage detected