wirepod-vector-sdk-audio 0.9.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 (71) hide show
  1. anki_vector/__init__.py +43 -0
  2. anki_vector/animation.py +272 -0
  3. anki_vector/annotate.py +590 -0
  4. anki_vector/audio.py +212 -0
  5. anki_vector/audio_stream.py +335 -0
  6. anki_vector/behavior.py +1135 -0
  7. anki_vector/camera.py +670 -0
  8. anki_vector/camera_viewer/__init__.py +121 -0
  9. anki_vector/color.py +88 -0
  10. anki_vector/configure/__main__.py +331 -0
  11. anki_vector/connection.py +838 -0
  12. anki_vector/events.py +420 -0
  13. anki_vector/exceptions.py +185 -0
  14. anki_vector/faces.py +819 -0
  15. anki_vector/lights.py +210 -0
  16. anki_vector/mdns.py +131 -0
  17. anki_vector/messaging/__init__.py +45 -0
  18. anki_vector/messaging/alexa_pb2.py +36 -0
  19. anki_vector/messaging/alexa_pb2_grpc.py +3 -0
  20. anki_vector/messaging/behavior_pb2.py +40 -0
  21. anki_vector/messaging/behavior_pb2_grpc.py +3 -0
  22. anki_vector/messaging/client.py +33 -0
  23. anki_vector/messaging/cube_pb2.py +113 -0
  24. anki_vector/messaging/cube_pb2_grpc.py +3 -0
  25. anki_vector/messaging/extensions_pb2.py +25 -0
  26. anki_vector/messaging/extensions_pb2_grpc.py +3 -0
  27. anki_vector/messaging/external_interface_pb2.py +169 -0
  28. anki_vector/messaging/external_interface_pb2_grpc.py +1267 -0
  29. anki_vector/messaging/messages_pb2.py +431 -0
  30. anki_vector/messaging/messages_pb2_grpc.py +3 -0
  31. anki_vector/messaging/nav_map_pb2.py +33 -0
  32. anki_vector/messaging/nav_map_pb2_grpc.py +3 -0
  33. anki_vector/messaging/protocol.py +33 -0
  34. anki_vector/messaging/response_status_pb2.py +27 -0
  35. anki_vector/messaging/response_status_pb2_grpc.py +3 -0
  36. anki_vector/messaging/settings_pb2.py +72 -0
  37. anki_vector/messaging/settings_pb2_grpc.py +3 -0
  38. anki_vector/messaging/shared_pb2.py +54 -0
  39. anki_vector/messaging/shared_pb2_grpc.py +3 -0
  40. anki_vector/motors.py +127 -0
  41. anki_vector/nav_map.py +409 -0
  42. anki_vector/objects.py +1782 -0
  43. anki_vector/opengl/__init__.py +103 -0
  44. anki_vector/opengl/assets/LICENSE.txt +21 -0
  45. anki_vector/opengl/assets/cube.jpg +0 -0
  46. anki_vector/opengl/assets/cube.mtl +9 -0
  47. anki_vector/opengl/assets/cube.obj +1000 -0
  48. anki_vector/opengl/assets/vector.mtl +67 -0
  49. anki_vector/opengl/assets/vector.obj +13220 -0
  50. anki_vector/opengl/opengl.py +864 -0
  51. anki_vector/opengl/opengl_vector.py +620 -0
  52. anki_vector/opengl/opengl_viewer.py +689 -0
  53. anki_vector/photos.py +145 -0
  54. anki_vector/proximity.py +176 -0
  55. anki_vector/reserve_control/__main__.py +36 -0
  56. anki_vector/robot.py +930 -0
  57. anki_vector/screen.py +201 -0
  58. anki_vector/status.py +322 -0
  59. anki_vector/touch.py +119 -0
  60. anki_vector/user_intent.py +186 -0
  61. anki_vector/util.py +1132 -0
  62. anki_vector/version.py +15 -0
  63. anki_vector/viewer.py +403 -0
  64. anki_vector/vision.py +202 -0
  65. anki_vector/world.py +899 -0
  66. wirepod_vector_sdk_audio-0.9.0.dist-info/METADATA +80 -0
  67. wirepod_vector_sdk_audio-0.9.0.dist-info/RECORD +71 -0
  68. wirepod_vector_sdk_audio-0.9.0.dist-info/WHEEL +5 -0
  69. wirepod_vector_sdk_audio-0.9.0.dist-info/licenses/LICENSE.txt +180 -0
  70. wirepod_vector_sdk_audio-0.9.0.dist-info/top_level.txt +1 -0
  71. wirepod_vector_sdk_audio-0.9.0.dist-info/zip-safe +1 -0
@@ -0,0 +1,67 @@
1
+ # rim around the screen
2
+ newmtl ScreenOp_matSG
3
+ illum 4
4
+ Kd 0.00 0.00 0.00 0.2
5
+ Ka 0.00 0.00 0.00 0.2
6
+ Tf 1.00 1.00 1.00
7
+ Ni 1.00
8
+ Ks 0.08 0.08 0.08 0.2
9
+ Ns 10
10
+
11
+ # glass screen
12
+ newmtl anisotropic1SG
13
+ illum 4
14
+ Kd 0.00 0.00 0.00 0.2
15
+ Ka 0.00 0.00 0.00 0.2
16
+ Tf 0.09 0.09 0.09
17
+ Ni 1.00
18
+ Ks 0.1 0.1 0.1 0.2
19
+ Ns 10
20
+
21
+ # head, arms+fork, wheels (but not treads)
22
+ newmtl blinn2SG
23
+ illum 4
24
+ Kd 0.15 0.15 0.15
25
+ Ka 0.00 0.00 0.00
26
+ Tf 1.00 1.00 1.00
27
+ Ni 1.00
28
+ Ks 0.50 0.50 0.50
29
+ Ns 10
30
+
31
+ # Treads
32
+ newmtl blinn3SG
33
+ illum 4
34
+ Kd 0.10 0.10 0.10
35
+ Ka 0.00 0.00 0.00
36
+ Tf 1.00 1.00 1.00
37
+ Ni 1.00
38
+ Ks 0.5 0.5 0.5
39
+ Ns 10
40
+
41
+ # Body and wheel-spacers
42
+ newmtl blinn4SG
43
+ illum 4
44
+ Kd 0.15 0.15 0.15
45
+ Ka 0.00 0.00 0.00
46
+ Tf 1.00 1.00 1.00
47
+ Ni 1.00
48
+ Ks 0.50 0.50 0.50
49
+ Ns 10
50
+
51
+ # Eyelids
52
+ newmtl lambert2SG
53
+ illum 4
54
+ Kd 0.00 0.00 0.00
55
+ Ka 0.00 0.00 0.00
56
+ Tf 1.00 1.00 1.00
57
+ Ni 1.00
58
+ Ks 0.50 0.50 0.50
59
+ Ns 10
60
+
61
+ # eyes
62
+ newmtl shadingMap1SG
63
+ illum 4
64
+ Kd 0.00 0.60 1.00
65
+ Ka 0.00 0.60 1.00
66
+ Tf 1.00 1.00 1.00
67
+ Ni 0.00