py3dbuilder 0.3.0a1__tar.gz → 0.3.1a2__tar.gz
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.
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/PKG-INFO +1 -1
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/demo.py +4 -4
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder.egg-info/PKG-INFO +1 -1
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/pyproject.toml +1 -1
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/ReadMe.md +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/__init__.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/geometry.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/keyboard.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/math.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/mouse.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/saver.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder/scene.py +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder.egg-info/SOURCES.txt +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder.egg-info/dependency_links.txt +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder.egg-info/requires.txt +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/py3dbuilder.egg-info/top_level.txt +0 -0
- {py3dbuilder-0.3.0a1 → py3dbuilder-0.3.1a2}/setup.cfg +0 -0
|
@@ -10,12 +10,12 @@ def play(name:_Lit["colourful_screen","moving_square","beat_the_square","find_th
|
|
|
10
10
|
if name not in available_demos():
|
|
11
11
|
raise TypeError(f"{name!r} is not an avaliable demo name")
|
|
12
12
|
if name=="colourful_screen":
|
|
13
|
-
_run([_sys.executable,_P(__file__).parent.parent/"v0.1.0a1"/"colorful screen.py"])
|
|
13
|
+
_run([_sys.executable,_P(__file__).parent.parent/"demos"/"v0.1.0a1"/"colorful screen.py"])
|
|
14
14
|
elif name=="moving_square":
|
|
15
|
-
_run([_sys.executable,_P(__file__).parent.parent/"v0.2.0a1"/"moving square.py"])
|
|
15
|
+
_run([_sys.executable,_P(__file__).parent.parent/"demos"/"v0.2.0a1"/"moving square.py"])
|
|
16
16
|
elif name=="beat_the_square":
|
|
17
|
-
_run([_sys.executable,_P(__file__).parent.parent/"v0.3.0a1"/"beat the square!.py"])
|
|
17
|
+
_run([_sys.executable,_P(__file__).parent.parent/"demos"/"v0.3.0a1"/"beat the square!.py"])
|
|
18
18
|
elif name=="find_the_real_button":
|
|
19
|
-
_run([_sys.executable,_P(__file__).parent.parent/"v0.3.0a1"/"which is the real button.py"])
|
|
19
|
+
_run([_sys.executable,_P(__file__).parent.parent/"demos"/"v0.3.0a1"/"which is the real button.py"])
|
|
20
20
|
def random():
|
|
21
21
|
play(_c(available_demos()))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|