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.
- anki_vector/__init__.py +43 -0
- anki_vector/animation.py +272 -0
- anki_vector/annotate.py +590 -0
- anki_vector/audio.py +212 -0
- anki_vector/audio_stream.py +335 -0
- anki_vector/behavior.py +1135 -0
- anki_vector/camera.py +670 -0
- anki_vector/camera_viewer/__init__.py +121 -0
- anki_vector/color.py +88 -0
- anki_vector/configure/__main__.py +331 -0
- anki_vector/connection.py +838 -0
- anki_vector/events.py +420 -0
- anki_vector/exceptions.py +185 -0
- anki_vector/faces.py +819 -0
- anki_vector/lights.py +210 -0
- anki_vector/mdns.py +131 -0
- anki_vector/messaging/__init__.py +45 -0
- anki_vector/messaging/alexa_pb2.py +36 -0
- anki_vector/messaging/alexa_pb2_grpc.py +3 -0
- anki_vector/messaging/behavior_pb2.py +40 -0
- anki_vector/messaging/behavior_pb2_grpc.py +3 -0
- anki_vector/messaging/client.py +33 -0
- anki_vector/messaging/cube_pb2.py +113 -0
- anki_vector/messaging/cube_pb2_grpc.py +3 -0
- anki_vector/messaging/extensions_pb2.py +25 -0
- anki_vector/messaging/extensions_pb2_grpc.py +3 -0
- anki_vector/messaging/external_interface_pb2.py +169 -0
- anki_vector/messaging/external_interface_pb2_grpc.py +1267 -0
- anki_vector/messaging/messages_pb2.py +431 -0
- anki_vector/messaging/messages_pb2_grpc.py +3 -0
- anki_vector/messaging/nav_map_pb2.py +33 -0
- anki_vector/messaging/nav_map_pb2_grpc.py +3 -0
- anki_vector/messaging/protocol.py +33 -0
- anki_vector/messaging/response_status_pb2.py +27 -0
- anki_vector/messaging/response_status_pb2_grpc.py +3 -0
- anki_vector/messaging/settings_pb2.py +72 -0
- anki_vector/messaging/settings_pb2_grpc.py +3 -0
- anki_vector/messaging/shared_pb2.py +54 -0
- anki_vector/messaging/shared_pb2_grpc.py +3 -0
- anki_vector/motors.py +127 -0
- anki_vector/nav_map.py +409 -0
- anki_vector/objects.py +1782 -0
- anki_vector/opengl/__init__.py +103 -0
- anki_vector/opengl/assets/LICENSE.txt +21 -0
- anki_vector/opengl/assets/cube.jpg +0 -0
- anki_vector/opengl/assets/cube.mtl +9 -0
- anki_vector/opengl/assets/cube.obj +1000 -0
- anki_vector/opengl/assets/vector.mtl +67 -0
- anki_vector/opengl/assets/vector.obj +13220 -0
- anki_vector/opengl/opengl.py +864 -0
- anki_vector/opengl/opengl_vector.py +620 -0
- anki_vector/opengl/opengl_viewer.py +689 -0
- anki_vector/photos.py +145 -0
- anki_vector/proximity.py +176 -0
- anki_vector/reserve_control/__main__.py +36 -0
- anki_vector/robot.py +930 -0
- anki_vector/screen.py +201 -0
- anki_vector/status.py +322 -0
- anki_vector/touch.py +119 -0
- anki_vector/user_intent.py +186 -0
- anki_vector/util.py +1132 -0
- anki_vector/version.py +15 -0
- anki_vector/viewer.py +403 -0
- anki_vector/vision.py +202 -0
- anki_vector/world.py +899 -0
- wirepod_vector_sdk_audio-0.9.0.dist-info/METADATA +80 -0
- wirepod_vector_sdk_audio-0.9.0.dist-info/RECORD +71 -0
- wirepod_vector_sdk_audio-0.9.0.dist-info/WHEEL +5 -0
- wirepod_vector_sdk_audio-0.9.0.dist-info/licenses/LICENSE.txt +180 -0
- wirepod_vector_sdk_audio-0.9.0.dist-info/top_level.txt +1 -0
- 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
|