(self, name:str)
| 391 | |
| 392 | class Material: |
| 393 | def __init__(self, name:str) -> None: |
| 394 | self.name = name |
| 395 | self.texture = None |
| 396 | self.normal_map = None |
| 397 | self.texture_path = None |
| 398 | self.normal_map_path = None |
| 399 | |
| 400 | |
| 401 | def load_mtl(obj:Object, filename:str, dir:str) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected