WUT_Computer_Science/sightpy/__init__.py
Jakub Poćwiardowski b74883b796
New parsing (#4)
* works for cornell now, will be extended to import others

* works for all scenes

* can load environments and blur them

* minor cleanup

* Example commands added to README.md
2025-01-18 17:31:27 +00:00

18 lines
309 B
Python

from .utils.constants import *
from .utils.vector3 import *
from .utils.colour_functions import *
from .utils.image_functions import *
from .ray import *
from .scene import *
from .geometry import *
from .lights import *
from .materials import *
from .textures.texture import *
from .animation import *