diff options
author | Phil Burk <[email protected]> | 2016-03-23 08:08:34 -0700 |
---|---|---|
committer | Phil Burk <[email protected]> | 2016-03-23 08:08:34 -0700 |
commit | 93d580b9e9099a794732c767e5e4c72a1938db1e (patch) | |
tree | d13f474a7ec83b9db5b906a598d8d8e0e83c4549 | |
parent | 4f81b453628ed710a246fb7a4a1688905ee9cdfb (diff) |
Use sine waves as default in PlayGrains example.
-rw-r--r-- | tests/com/jsyn/examples/PlayGrains.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/com/jsyn/examples/PlayGrains.java b/tests/com/jsyn/examples/PlayGrains.java index 6b2b11e..fd71e68 100644 --- a/tests/com/jsyn/examples/PlayGrains.java +++ b/tests/com/jsyn/examples/PlayGrains.java @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -44,7 +44,7 @@ import com.jsyn.util.WaveRecorder; /** * Play with Granular Synthesis tools. - * + * * @author Phil Burk (C) 2011 Mobileer Inc */ public class PlayGrains extends JApplet { @@ -58,7 +58,7 @@ public class PlayGrains extends JApplet { private FloatSample sample; private WaveRecorder recorder; - private static final boolean useSample = true; + private static final boolean useSample = false; private final static boolean useRecorder = false; // File sampleFile = new File( "samples/instructions.wav" ); |