MCPcopy Create free account
hub / github.com/ICE27182/Python-3D-renderer / __init__

Method __init__

pyrender.py:935–944  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

933
934class Scene(Object, Light, Camera):
935 def __init__(self) -> None:
936 self.objects = []
937 self.v = []
938 self.vt = []
939 self.vn = []
940 self.materials = {}
941 self.default_obj_dir = Object.default_obj_dir
942 self.default_uv_map_properties = Object.default_uv_map_properties
943 self.lights = []
944 self.cam = Camera()
945
946
947 def render(self):

Callers

nothing calls this directly

Calls 1

CameraClass · 0.85

Tested by

no test coverage detected