| 1400 | # A helper class used to make jshtml animations embed |
| 1401 | # seamlessly within Jupyter notebooks. |
| 1402 | class JS_Animation: |
| 1403 | def __init__(self, jshtml: str): |
| 1404 | self.jshtml = jshtml |
| 1405 | |
| 1406 | def _repr_html_(self) -> str: |
| 1407 | return self.jshtml |
| 1408 | |
| 1409 | def get_jshtml(self) -> str: |
| 1410 | return self.jshtml |
| 1411 | |
| 1412 | |
| 1413 | # ------------------------------------------------------- # |