mocap-desktop-gui 0.10.2__py3-none-any.whl → 0.11.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. mocap_desktop_gui/__init__.py +3 -3
  2. mocap_desktop_gui/axengine_1730109916_723728148.py +246 -0
  3. mocap_desktop_gui/gen/rc_icons.py +3 -3
  4. mocap_desktop_gui/gen/rc_qml.py +3 -3
  5. mocap_desktop_gui/gen/rc_style.py +3 -3
  6. mocap_desktop_gui/main.py +3 -3
  7. mocap_desktop_gui/mc/__init__.py +3 -3
  8. mocap_desktop_gui/mc/bld_fbx_2_glb.py +3 -3
  9. mocap_desktop_gui/mc/bld_utils.py +3 -3
  10. mocap_desktop_gui/mc/camera_models.py +3 -3
  11. mocap_desktop_gui/mc/mc_app_manager.py +3 -3
  12. mocap_desktop_gui/mc/mc_auth_core.py +3 -3
  13. mocap_desktop_gui/mc/mc_auth_service.py +3 -3
  14. mocap_desktop_gui/mc/mc_calib.py +3 -3
  15. mocap_desktop_gui/mc/mc_cam_ui_states.py +3 -3
  16. mocap_desktop_gui/mc/mc_cloud_service.py +3 -3
  17. mocap_desktop_gui/mc/mc_common_paths.py +3 -3
  18. mocap_desktop_gui/mc/mc_context.py +3 -3
  19. mocap_desktop_gui/mc/mc_file_util.py +3 -3
  20. mocap_desktop_gui/mc/mc_import_folder.py +3 -3
  21. mocap_desktop_gui/mc/mc_project.py +3 -3
  22. mocap_desktop_gui/mc/mc_project_manager.py +3 -3
  23. mocap_desktop_gui/mc/mc_scene_3d_service.py +3 -3
  24. mocap_desktop_gui/mc/mc_sync_media_player.py +3 -3
  25. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +3 -3
  26. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +3 -3
  27. mocap_desktop_gui/mc/mc_take.py +3 -3
  28. mocap_desktop_gui/mc/mc_take_cloud_job.py +3 -3
  29. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +3 -3
  30. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +3 -3
  31. mocap_desktop_gui/mc/mc_take_list_model.py +3 -3
  32. mocap_desktop_gui/mc/mc_take_local_job.py +3 -3
  33. mocap_desktop_gui/mc/mc_take_local_job_service.py +3 -3
  34. mocap_desktop_gui/mc/mc_take_run_common.py +3 -3
  35. mocap_desktop_gui/mc/mc_take_run_data_prep.py +3 -3
  36. mocap_desktop_gui/mc/mc_take_run_settings.py +3 -3
  37. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +3 -3
  38. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +3 -3
  39. mocap_desktop_gui/mc/mc_take_runs_manager.py +3 -3
  40. mocap_desktop_gui/mc/mc_take_settings.py +3 -3
  41. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  42. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +3 -3
  43. mocap_desktop_gui/mc/mc_worker.py +3 -3
  44. mocap_desktop_gui/mc/qml_engine.py +3 -3
  45. mocap_desktop_gui/mc/util.py +3 -3
  46. mocap_desktop_gui/operations/__init__.py +3 -3
  47. mocap_desktop_gui/sample.py +3 -3
  48. mocap_desktop_gui/utils/__init__.py +3 -3
  49. {mocap_desktop_gui-0.10.2.dist-info → mocap_desktop_gui-0.11.0.dist-info}/METADATA +1 -1
  50. mocap_desktop_gui-0.11.0.dist-info/RECORD +61 -0
  51. mocap_desktop_gui/axengine_1729868054_2109153496.py +0 -246
  52. mocap_desktop_gui-0.10.2.dist-info/RECORD +0 -61
  53. {mocap_desktop_gui-0.10.2.dist-info → mocap_desktop_gui-0.11.0.dist-info}/WHEEL +0 -0
  54. {mocap_desktop_gui-0.10.2.dist-info → mocap_desktop_gui-0.11.0.dist-info}/entry_points.txt +0 -0
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(59, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(283, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(180, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(70, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(361, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(423, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(280, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(439, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(263, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(14, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(386, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(426, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(62, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(245, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(561, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(6, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1729868054_2109153496.py')):
5
+ 'axengine_1730109916_723728148.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1729868054_2109153496 as _axengine
12
+ import axengine_1730109916_723728148 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1729868054_2109153496 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1730109916_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(572, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.10.2
3
+ Version: 0.11.0
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10,<3.13
@@ -0,0 +1,61 @@
1
+ mocap_desktop_gui/__init__.py,sha256=LSZvSgD0sjEQ92dTQbVUgevoPWq5yINyUTmShzXpXD0,723
2
+ mocap_desktop_gui/axengine_1730109916_723728148.py,sha256=SLmUbxYif8OTdqWBduBzxfxeAlSKrFj31qiaJDDzvR0,423013
3
+ mocap_desktop_gui/gen/rc_icons.py,sha256=omu2lZ8pfNhj_zdiM4Ys6ScPje92UtHC5qnHSgvCb3k,723
4
+ mocap_desktop_gui/gen/rc_qml.py,sha256=Anpd_oRROMNJApBh2Y-V4oWo2MQum9X9kQZfxvG_wu0,723
5
+ mocap_desktop_gui/gen/rc_style.py,sha256=4axnd2ZbOdX2Mmh7D4a3PV3Orj5YcRRgFerzfJ1ZOis,723
6
+ mocap_desktop_gui/main.py,sha256=qNhlvVDGn3bsuYOtFEDtUUtJ3oqaA9CWg-_HBHcUmNU,721
7
+ mocap_desktop_gui/mc/__init__.py,sha256=78iTJlKEz2Uq2re2Ps5MC3Z0atzV-9gLJgi1FSfTESM,723
8
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=Z1tkH-wLea1_AJpy1lGoA3LsjmG0gWs5pj7cZjbC0Qk,723
9
+ mocap_desktop_gui/mc/bld_utils.py,sha256=LLTaz75OXdBLJsh3pr7tKZIZg-eRpeBGb6lkxTovHnQ,723
10
+ mocap_desktop_gui/mc/camera_models.py,sha256=9w4MBeRGxZ3uyYk5TaUcAJyHMXW0Cx-dHxFhYDXdrcI,723
11
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=rjex70y9YniMmA5yaePVQDiS4j84PzdP7ZIshek37vs,723
12
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=ZoqUcqmLr4IeKQ4o8ZHOnzBtK2vRb8lRktRhndsE_5Q,723
13
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=I2pwfIu2FFgsseIzGDVwcWuPx39OaKsogx0CDx3BodI,723
14
+ mocap_desktop_gui/mc/mc_calib.py,sha256=50Fbb_soR7Wqb6y8a_1MlfqmW-bhFLvuoxkwQMoaCbc,723
15
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=0MTBESrygeygkSCyhK3e-41AYtGIS5SjLmq40WZ89Y0,723
16
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=8S3mPkiALILIwEglUWTwsdkFFBUrrpnTL5fy904EDR8,723
17
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=u7rOFWBgZrhuK14VkvFw65xXpq46enq5VBq33zSptiM,723
18
+ mocap_desktop_gui/mc/mc_context.py,sha256=8zKyI3Jqbmuk-GzpK3ci6-k9KG0vaBGHjIh-uJOFgbc,723
19
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=AITEQ24taji344giApfxyTlz2aBzQIdrQ1O-DRz0yfI,723
20
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=xGIqvxzdtcf4Mnp_pHmG1k3hFSOkT68GOBq50eLuP-M,723
21
+ mocap_desktop_gui/mc/mc_project.py,sha256=yRODDNJpWQ9YMbyyAKo5DLMGae7hQjPldUTxjXfhnDE,723
22
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=ZMJ_a3nhurZinKZiK9R4Srk8n55Dyh-EyQsoM_Sg7Oc,722
23
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=Vkn9SxJrM_YHDEFjJRhhIPXAabDr32oL3qesVQkeLgw,723
24
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=rZ0bqKZKuYr2UklSPowVMhSYzOqpLR0dwkMaSDeo_68,723
25
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=890YllJW0MS5mtU-Xk82MOdN1QL8pJwOdx9uopEDSv4,723
26
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=Tj84wVYjySSXsbi3o4kdBiYnyTv9gqvEYNnWnRHOkOI,723
27
+ mocap_desktop_gui/mc/mc_take.py,sha256=bD2pULT3KEZ9e5-uKvSwYcZ0sLaTLV4QqW4t47G_qYw,723
28
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=1x3Cxi1NTVj99xiRYnvddvBDLXXewTtFJsDmbPFxZpI,723
29
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=SFuIJSe6C3TBuzTtyloN_jSCcNo6RBldhPC-B53-3wo,723
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=Yw29qA37nEkwA_UHqUTMmqLe_cqLv7HGza45etkm1Og,723
31
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=tkh5fRYvJRnLb8OCWHcgIA6t5ROyOW-RyRgWyS_CQcA,723
32
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=0hFb8AHuacPNQAu3DK6wOuIvH1IPrUmmr0me_UpGcvg,722
33
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=61G8ACZjTl-DWEbbNG6AdAP60_qU1dnZuoXrFM0olr0,723
34
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=uEzYvUDUuQNAQXqbKn3isEwpjhxyO-5voaXYwRmQ1eY,723
35
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=1whntisywacOmnRlMWHWfrvgxt8vF1tVFCriRLd2aZE,722
36
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=sI07mNyukw3r9Kn2x1KS4ZqRn7rkiFpr7jfVpZUtJ6A,723
37
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=ASeN17eRxtYzWkD9RXBhB2joPaDUPIQS4uw1cn2Xj4o,723
38
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=kTzIwssmUy5lpKMsEnFoEVFm4x01NEXi6wpePdTDGC0,723
39
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=O4cHcgUXZJ2SJNDVUKW-fl8YcBOEOS-U6uxjw6h5Kng,723
40
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=pN62EigJLHCSJl8NH-WtFH4cH_kyt2wqxddxIk5nhIg,723
41
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=YUJjgw034QR1_rikvSi1ZcTHkNo-KB8FDSNerV4M5xQ,722
42
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=Pskm-gM99IsX7PiMO8WH38Wdz7JR3Dux-rmG_doNa5c,723
43
+ mocap_desktop_gui/mc/mc_worker.py,sha256=dxPMC6tHChwPGSaQCdKroXIGt3POZMxpDEgYx6CB7qA,723
44
+ mocap_desktop_gui/mc/qml_engine.py,sha256=tWNlVEtz1oqQ9xa5KIhI1dRgrG_4lZ8GJnzfSLAOkZM,722
45
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
46
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
47
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
48
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
49
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
50
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
51
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=kD-3ZVjVvlBg8BN5RhSFn2-io-lMMUV68Hn8CFUkbaM,18133
52
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
53
+ mocap_desktop_gui/mc/util.py,sha256=2lrBZqP4S8d2PvNT9O03CgTXkfDdVcZwadtcmaKFeZs,723
54
+ mocap_desktop_gui/operations/__init__.py,sha256=ErS-wd04s5qYOgRXNwuk_a4xMMxqsq06k9DKzH4UayI,723
55
+ mocap_desktop_gui/sample.py,sha256=S2F2bO3gDBZ5joo0fFngj-_Ve-ekyWAotMH49fMEJ6g,721
56
+ mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
57
+ mocap_desktop_gui/utils/__init__.py,sha256=lp6FRpFrEYwl_NdBWgUKAHOhkeOrEXltukS_91gaVLs,723
58
+ mocap_desktop_gui-0.11.0.dist-info/METADATA,sha256=gfhPQOFGkP9iBJPnFrFGe9d4FW8kO35ClBF6mPFpBGo,1024
59
+ mocap_desktop_gui-0.11.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
60
+ mocap_desktop_gui-0.11.0.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
61
+ mocap_desktop_gui-0.11.0.dist-info/RECORD,,