Monthly Archives: January 2015
Nsound Circular Iterators
On the Nsound development branch, I’ve exposed the C++ circular iterators for the Buffer class to the Python module. This code will eventually get released as part of Nsound-0.9.3. Here’s how one might use them:
1 2 3 4 5 6 7 8 9 10 11 |
import Nsound as ns b = ns.Buffer() b << 1 << 2 << 3 c = b.cbegin() for i in xrange(10): print float(c) c += 1 |
Which will produce the … Continue reading
Posted in nsound
Comments Off on Nsound Circular Iterators
Nsound Introduction Video
I’ve made an introduction video for Nsound!
Posted in nsound
Comments Off on Nsound Introduction Video