Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/audaspace/bindings/python/examples/siren2.py')
-rw-r--r--extern/audaspace/bindings/python/examples/siren2.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/extern/audaspace/bindings/python/examples/siren2.py b/extern/audaspace/bindings/python/examples/siren2.py
deleted file mode 100644
index 35e1a600581..00000000000
--- a/extern/audaspace/bindings/python/examples/siren2.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/python
-import aud, math, time
-length = 0.5
-fadelength = 0.05
-runtime = 10
-distance = 100
-velocity = 2 * distance / runtime
-
-device = aud.Device()
-high = aud.Sound.sine(880).limit(0, length).fadein(0, fadelength).fadeout(length - fadelength, length)
-low = aud.Sound.sine(700).limit(0, length).fadein(0, fadelength).fadeout(length - fadelength, length).volume(0.6)
-sound = high.join(low)
-handle = device.play(sound)
-handle.loop_count = -1
-
-handle.velocity = [velocity, 0, 0]
-
-start = time.time()
-
-while time.time() - start < runtime:
- location = -distance + velocity * (time.time() - start)
-
- handle.location = [location, 10, 0]