mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
48 lines
1 KiB
Python
48 lines
1 KiB
Python
import os
|
|
|
|
from manimlib.utils.file_ops import guarantee_existence
|
|
from manimlib.utils.customization import get_customization
|
|
|
|
|
|
def get_directories():
|
|
return get_customization()["directories"]
|
|
|
|
|
|
def get_temp_dir():
|
|
return get_directories()["temporary_storage"]
|
|
|
|
|
|
def get_tex_dir():
|
|
return guarantee_existence(os.path.join(get_temp_dir(), "Tex"))
|
|
|
|
|
|
def get_text_dir():
|
|
return guarantee_existence(os.path.join(get_temp_dir(), "Text"))
|
|
|
|
|
|
def get_mobject_data_dir():
|
|
return guarantee_existence(os.path.join(get_temp_dir(), "mobject_data"))
|
|
|
|
|
|
def get_downloads_dir():
|
|
return guarantee_existence(os.path.join(get_temp_dir(), "manim_downloads"))
|
|
|
|
|
|
def get_output_dir():
|
|
return guarantee_existence(get_directories()["output"])
|
|
|
|
|
|
def get_raster_image_dir():
|
|
return get_directories()["raster_images"]
|
|
|
|
|
|
def get_vector_image_dir():
|
|
return get_directories()["vector_images"]
|
|
|
|
|
|
def get_sound_dir():
|
|
return get_directories()["sounds"]
|
|
|
|
|
|
def get_shader_dir():
|
|
return get_directories()["shaders"]
|