mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 21:03:07 +02:00
* 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
18 lines
309 B
Python
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 *
|
|
|
|
|
|
|
|
|
|
|