(source_obj, target_obj)
| 167 | return surface |
| 168 | |
| 169 | def copy_materials(source_obj, target_obj): |
| 170 | materials = source_obj.materials.values() |
| 171 | target_obj.materials.clear() |
| 172 | for mat in materials: |
| 173 | target_obj.materials.append(mat) |
| 174 | |
| 175 | def get_args_from_cli_string(cli_string): |
| 176 | i = 0 |
no test coverage detected