ManimCommunity / manim_editor

Web Presenter for Mathematical Animations using Manim.
https://docs.editor.manim.community
MIT License
257 stars 12 forks source link

Added Icons #41

Closed kolibril13 closed 2 years ago

kolibril13 commented 2 years ago

For convenience in presentation, so that the presenter can see what kind of slide s/he has when entering full-screen. image Icons were generated from this script:

from urllib import request
from pathlib import Path 
icon_names = ["play-btn.svg","wind.svg", "arrow-clockwise.svg","hourglass-split.svg" ]
for icon_name in icon_names:
    request.urlretrieve(f"https://raw.githubusercontent.com/twbs/icons/main/icons/{icon_name}", icon_name)
    file= Path(icon_name)
    file.write_text(file.read_text().replace('currentColor', '#FFFFFF'))

These were created by the Bootstrap community and are under the MIT Licence https://github.com/twbs/icons/blob/main/LICENSE.md