This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%%% | |
%%%% A chromatic maze generator | |
%%%% | |
% By Adam M. Smith ([email protected]) | |
% This answer set program was designed to work with the Potassco (the Potsdam | |
% Answer Set Solving Collection) tools, namely "clingo". | |
%% Chromatic Mazes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package as.adamsmith.etherealdialpad.dsp; | |
import android.media.AudioFormat; | |
import android.media.AudioManager; | |
import android.media.AudioTrack; | |
public class Dac extends UGen { | |
private final float[] localBuffer; | |
private boolean isClean; |