()
| 19 | |
| 20 | |
| 21 | def get_dataset_mesh_filename() -> str: |
| 22 | repo_root = os.path.normpath( |
| 23 | os.path.join( |
| 24 | os.path.abspath(__file__), |
| 25 | '../../..', |
| 26 | )) |
| 27 | filename = os.path.join( |
| 28 | repo_root, |
| 29 | 'pointersect/meta_script/configs/mesh_filenames.yaml', |
| 30 | ) |
| 31 | return filename |
| 32 | |
| 33 | |
| 34 | def get_dataset_mesh_filename_config() -> T.Dict[str, T.Any]: |
no outgoing calls
no test coverage detected