mocap-desktop-gui 0.10.1__py3-none-any.whl → 0.10.3__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1729869857_723728148.py +246 -0
  3. mocap_desktop_gui/gen/rc_icons.py +4 -4
  4. mocap_desktop_gui/gen/rc_qml.py +4 -4
  5. mocap_desktop_gui/gen/rc_style.py +4 -4
  6. mocap_desktop_gui/main.py +3 -3
  7. mocap_desktop_gui/mc/__init__.py +4 -4
  8. mocap_desktop_gui/mc/bld_fbx_2_glb.py +4 -4
  9. mocap_desktop_gui/mc/bld_utils.py +4 -4
  10. mocap_desktop_gui/mc/camera_models.py +4 -4
  11. mocap_desktop_gui/mc/mc_app_manager.py +4 -4
  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 +4 -4
  15. mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
  16. mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
  17. mocap_desktop_gui/mc/mc_common_paths.py +4 -4
  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 +4 -4
  21. mocap_desktop_gui/mc/mc_project.py +4 -4
  22. mocap_desktop_gui/mc/mc_project_manager.py +3 -3
  23. mocap_desktop_gui/mc/mc_scene_3d_service.py +4 -4
  24. mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
  25. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
  26. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
  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 +4 -4
  30. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
  31. mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
  32. mocap_desktop_gui/mc/mc_take_local_job.py +3 -3
  33. mocap_desktop_gui/mc/mc_take_local_job_service.py +4 -4
  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 +4 -4
  37. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
  38. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
  39. mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
  40. mocap_desktop_gui/mc/mc_take_settings.py +4 -4
  41. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  42. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
  43. mocap_desktop_gui/mc/mc_worker.py +4 -4
  44. mocap_desktop_gui/mc/qml_engine.py +3 -3
  45. mocap_desktop_gui/mc/util.py +4 -4
  46. mocap_desktop_gui/operations/__init__.py +4 -4
  47. mocap_desktop_gui/sample.py +3 -3
  48. mocap_desktop_gui/utils/__init__.py +4 -4
  49. {mocap_desktop_gui-0.10.1.dist-info → mocap_desktop_gui-0.10.3.dist-info}/METADATA +1 -1
  50. mocap_desktop_gui-0.10.3.dist-info/RECORD +61 -0
  51. mocap_desktop_gui/axengine_1729853376_4145030435.py +0 -246
  52. mocap_desktop_gui-0.10.1.dist-info/RECORD +0 -61
  53. {mocap_desktop_gui-0.10.1.dist-info → mocap_desktop_gui-0.10.3.dist-info}/WHEEL +0 -0
  54. {mocap_desktop_gui-0.10.1.dist-info → mocap_desktop_gui-0.10.3.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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(297, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(293, 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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(287, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(365, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(427, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(284, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(443, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(267, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(390, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(430, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(249, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(565, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729869857_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_1729853376_4145030435.py')):
5
+ 'axengine_1729869857_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_1729853376_4145030435 as _axengine
12
+ import axengine_1729869857_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_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(576, globals())
17
+ from axengine_1729869857_723728148 import WupiError, WupiLicenseError, WupiErrorCode
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.1
3
+ Version: 0.10.3
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=5KiuDNQ2QTyvwyEXNd0FWscPlMcfeHAm-i92mZqoUYU,723
2
+ mocap_desktop_gui/axengine_1729869857_723728148.py,sha256=TNKuOpfiPWpv841U3gZyHSMwSyQSyoJjA2RAnGX8Yyc,422973
3
+ mocap_desktop_gui/gen/rc_icons.py,sha256=QS27RwChJMJ-xNunFApBGt--XKGaz2h7fjJW9Rz__OM,723
4
+ mocap_desktop_gui/gen/rc_qml.py,sha256=uc2fCscWM72kio2fMM9BxNcK-eMlH6JNFIGjyw2fvG0,723
5
+ mocap_desktop_gui/gen/rc_style.py,sha256=QtnuAL1hbpNGkNUDx52lzz_PFcSIaj2iCGbY6v42a9E,723
6
+ mocap_desktop_gui/main.py,sha256=Wr5uia35XSG56EuFfDYrzgea8NiRET7CAyMpriPpNNM,721
7
+ mocap_desktop_gui/mc/__init__.py,sha256=X1PmKSOlI9lOG9KJPuOCdH1MJCjd-0HxlbauQpzihvU,723
8
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=tykxLhKKFjDYmIHU6fbPhoxNNHQKMa0VW4wEsCx4c_0,723
9
+ mocap_desktop_gui/mc/bld_utils.py,sha256=J2aGhmJkqu-vWDB4iO5F5e94GII6r7Mton58hU000Tg,723
10
+ mocap_desktop_gui/mc/camera_models.py,sha256=XWTvVS_co9UzHuWZZzvC6fBbgm8h5a790wd8-8J-9oo,723
11
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=mee6h8JlbY8_zQueqz-ZXrqh7fuYHTxDNgDDHlimZcU,723
12
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=tYD3PSe0lYT9bD4N6f1ftPghFwm3T_qr-ZJzpNtZWKY,723
13
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=tjGVtKabulWK7Dse7_Lw0h5zzS4SWVHzDggxDJT364k,723
14
+ mocap_desktop_gui/mc/mc_calib.py,sha256=Vbe_SE7PzKBW6NPJhfXzvoWvRqZ09ruMTqeUhZr-CW0,723
15
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=PO5UP7__xWje4VUIfuVvskV2Qb00jiQkn3Vy3zDNK-w,723
16
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=Dk1qs4S9Z5iw8ZAc8AS9mzxuVMFzcwK_245f0jPPgGI,723
17
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=newQCUUlMtgU9gRrKQyhmQHDhFfmXYc00ER3n-xJ_GA,723
18
+ mocap_desktop_gui/mc/mc_context.py,sha256=EOQzu1yF4WCmcVmO6GDYRQ-Wwds3gPn22kVVa11YsoU,723
19
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=7eChB33xHToU_jiA_xMIsHPkWXGzXRr9DXOJNID80iM,723
20
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=_DHM0JTF_HdkBM0z14Nued-z0jyzTHljegddPqBTDCk,723
21
+ mocap_desktop_gui/mc/mc_project.py,sha256=b6yNjw43NGAEKgflliM5lSMN4P5tuDFHamWyaZPuJO8,723
22
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=z2dHtTqzSlVBZM6ie2qWTu9NBUVoeVMb9SFLZ00pRms,722
23
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=t5vbsV1atSB_cBUYoJEiAiEcDt3to4cjjHETUdc8Mw8,723
24
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=xis51FguFqu26RKBBo_kR_AUEUU4BG4BNyKGND1YYpY,723
25
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=lPooO8X3AlMgMVvxFRulyvH1_z0IWupg3sXNFatJSww,723
26
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=3f8i6t4YBseWTq55fd5znV8BNpNfrHrApBZG1XdaBWg,723
27
+ mocap_desktop_gui/mc/mc_take.py,sha256=-qTpjr1llsQKyfvGgrpa9u-lXi7tHnZFgEZ-LL-shzk,723
28
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=5fbP10aC20cOSIVXeK_AlEXqYA6G7eQ6cJje8TZPO0I,723
29
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=Rpkc1p3GYpxZZUqoJ7BLPZNNyoVig5L652XeM08RrPA,723
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=bewbTaKMA9MkxTY7PU4uvaq_URmVhlogHBWfecADMQA,723
31
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=v3GSRV-Z2Tn77tXYj4FdoJsxJlkpA0GboHja1uxKEgA,723
32
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=xXQ4iY2-53FPzsEySUj-mCm-D871hAoF4FY-15UQDw0,722
33
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=Aki5q1VejxSkBLOe9q8PurrHAgndwvHuzx477_1wLWI,723
34
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=mwsSyYArTgeTn7gRw0G5V-V3FFLF0B47-lSNQ6N54Hw,723
35
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=KuFTlDhJMHZGynQ7mzKhicAIVdVrNFdSQ-quahv0tFc,722
36
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=-vORJVWVqDQwzPt_6lIpzkcBUmfus4s5ru0mjl3Bq2w,723
37
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=iNUTJ6ffmTmbS9oHslQkIqNIsAZd29SNFnUPgQbXRXg,723
38
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=OZlSaSahSgXKc2LZRNuKmrrRdDqYaVSxyWT8arjurvE,723
39
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=4bx-AGf1TqdKzKcRMvVjG64G0zDmd8nOvcouHIXl6Nk,723
40
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=gYn1VFnXt0JvWRZBN06H9ZhTXm9jfCnjdvSWxt7mKxk,723
41
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=GsRJYg50wDCtI_AIV6msR4wHy8ivGQhGTRUlgefnEAo,722
42
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=kVpqqqLtpShS1eyWA2v4vvpNAPuPLh1j_hvoxIvBhPo,723
43
+ mocap_desktop_gui/mc/mc_worker.py,sha256=XJprtF7Fg72t9rixu4tbV96qfGYECsnrLI6G-ZyXxoc,723
44
+ mocap_desktop_gui/mc/qml_engine.py,sha256=GD7yFa9HLN0Sya1mihoTe7w_ddabT6u_Z0KGamwy3jE,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=IbIAMkNbh7I0nAO2X8O3Nt_1MMqBypodgNsffCYBOLQ,723
54
+ mocap_desktop_gui/operations/__init__.py,sha256=2rCj_5rZ-KRxzNWQnw4PI6HvbUFASVJAK23-4E9evdk,723
55
+ mocap_desktop_gui/sample.py,sha256=bZUHQHFlj8vpYZzqaRJHZbUept64gW9VaKP9cWV8nP8,721
56
+ mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
57
+ mocap_desktop_gui/utils/__init__.py,sha256=nAyVLPqTjpsgiqIrbDJOh67UYrkQVFk3rTjCUlt6M7Y,723
58
+ mocap_desktop_gui-0.10.3.dist-info/METADATA,sha256=e2cjob6ZBrxhdKyZ3QI4Hjsyvdd_giT4cZhF9NU6rUs,1024
59
+ mocap_desktop_gui-0.10.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
60
+ mocap_desktop_gui-0.10.3.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
61
+ mocap_desktop_gui-0.10.3.dist-info/RECORD,,