bosdyn-choreography-client 5.0.1.2__py3-none-any.whl → 5.1.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.
- bosdyn/choreography/client/animation_file_conversion_helpers.py +6 -2
- bosdyn/choreography/client/animation_file_to_proto.py +1 -0
- {bosdyn_choreography_client-5.0.1.2.dist-info → bosdyn_choreography_client-5.1.0.dist-info}/METADATA +4 -4
- bosdyn_choreography_client-5.1.0.dist-info/RECORD +10 -0
- bosdyn_choreography_client-5.0.1.2.dist-info/RECORD +0 -10
- {bosdyn_choreography_client-5.0.1.2.dist-info → bosdyn_choreography_client-5.1.0.dist-info}/WHEEL +0 -0
- {bosdyn_choreography_client-5.0.1.2.dist-info → bosdyn_choreography_client-5.1.0.dist-info}/top_level.txt +0 -0
|
@@ -586,8 +586,12 @@ def arm_playback_option(file_line_split, animation):
|
|
|
586
586
|
|
|
587
587
|
|
|
588
588
|
def display_rgb_option(file_line_split, animation):
|
|
589
|
-
|
|
590
|
-
|
|
589
|
+
if len(file_line_split) == 4:
|
|
590
|
+
rgb_option_values = file_line_split[1:4]
|
|
591
|
+
for i in range(3):
|
|
592
|
+
animation.rgb[i] = int(rgb_option_values[i])
|
|
593
|
+
else:
|
|
594
|
+
print(f"Misformed display_rgb option: Format must follow 'display_rgb [R] [G] [B]'")
|
|
591
595
|
return animation
|
|
592
596
|
|
|
593
597
|
|
|
@@ -392,6 +392,7 @@ def convert_animation_file_to_proto(animated_file, animate_move_params_file=""):
|
|
|
392
392
|
animate_move_params_file, False)
|
|
393
393
|
|
|
394
394
|
animation = Animation()
|
|
395
|
+
|
|
395
396
|
animation.name = ntpath.basename(animated_file).split(".cha")[0]
|
|
396
397
|
|
|
397
398
|
animation_specs = open(animated_file, "r")
|
{bosdyn_choreography_client-5.0.1.2.dist-info → bosdyn_choreography_client-5.1.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bosdyn-choreography-client
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.1.0
|
|
4
4
|
Summary: Boston Dynamics API client code and interfaces for choreography
|
|
5
5
|
Home-page: https://dev.bostondynamics.com/
|
|
6
6
|
Author: Boston Dynamics
|
|
@@ -15,9 +15,9 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
15
15
|
Classifier: License :: Other/Proprietary License
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: bosdyn-api (==5.
|
|
19
|
-
Requires-Dist: bosdyn-core (==5.
|
|
20
|
-
Requires-Dist: bosdyn-client (==5.
|
|
18
|
+
Requires-Dist: bosdyn-api (==5.1.0)
|
|
19
|
+
Requires-Dist: bosdyn-core (==5.1.0)
|
|
20
|
+
Requires-Dist: bosdyn-client (==5.1.0)
|
|
21
21
|
|
|
22
22
|
<!--
|
|
23
23
|
Copyright (c) 2023 Boston Dynamics, Inc. All rights reserved.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
bosdyn/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
2
|
+
bosdyn/choreography/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
3
|
+
bosdyn/choreography/client/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
4
|
+
bosdyn/choreography/client/animation_file_conversion_helpers.py,sha256=rE3YTBkzvJehtrcWy6CowjRUhUkr6X4zTEkngNfbReY,18627
|
|
5
|
+
bosdyn/choreography/client/animation_file_to_proto.py,sha256=-NgqLP8R8AaEUQbQJ8ZmPoI93uRMck89SvScBoQAm_E,26066
|
|
6
|
+
bosdyn/choreography/client/choreography.py,sha256=jRAHR44yW2d9rSYemQqZdtZcMWmNXDsxgMH_bGY37lE,57755
|
|
7
|
+
bosdyn_choreography_client-5.1.0.dist-info/METADATA,sha256=RHU-5LEshnVHRC-3diRrNPhxbj_6Ph2477nCDue2frw,1721
|
|
8
|
+
bosdyn_choreography_client-5.1.0.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
9
|
+
bosdyn_choreography_client-5.1.0.dist-info/top_level.txt,sha256=an2OWgx1ej2jFjmBjPWNQ68ZglvUfKhmXWW-WhTtDmA,7
|
|
10
|
+
bosdyn_choreography_client-5.1.0.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
bosdyn/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
2
|
-
bosdyn/choreography/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
3
|
-
bosdyn/choreography/client/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
4
|
-
bosdyn/choreography/client/animation_file_conversion_helpers.py,sha256=iBEqEGAZknyh8WWxtxZrzoA-o8BDJ7a5pmft0kqNCrs,18438
|
|
5
|
-
bosdyn/choreography/client/animation_file_to_proto.py,sha256=bOH2_bywfWPrbP95X0wtV6PX2RymO8lzDBOmbe3CYHc,26065
|
|
6
|
-
bosdyn/choreography/client/choreography.py,sha256=jRAHR44yW2d9rSYemQqZdtZcMWmNXDsxgMH_bGY37lE,57755
|
|
7
|
-
bosdyn_choreography_client-5.0.1.2.dist-info/METADATA,sha256=A8rbPyIx_FB9WggdYWuR72mUmfGBE0UiJRFv1c8Wm94,1729
|
|
8
|
-
bosdyn_choreography_client-5.0.1.2.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
9
|
-
bosdyn_choreography_client-5.0.1.2.dist-info/top_level.txt,sha256=an2OWgx1ej2jFjmBjPWNQ68ZglvUfKhmXWW-WhTtDmA,7
|
|
10
|
-
bosdyn_choreography_client-5.0.1.2.dist-info/RECORD,,
|
{bosdyn_choreography_client-5.0.1.2.dist-info → bosdyn_choreography_client-5.1.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|