diff options
Diffstat (limited to 'src/com/jsyn/unitgen/Select.java')
-rw-r--r-- | src/com/jsyn/unitgen/Select.java | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/com/jsyn/unitgen/Select.java b/src/com/jsyn/unitgen/Select.java index 14186a8..6d8792e 100644 --- a/src/com/jsyn/unitgen/Select.java +++ b/src/com/jsyn/unitgen/Select.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. @@ -21,12 +21,11 @@ import com.jsyn.ports.UnitOutputPort; /** * SelectUnit unit. Select InputA or InputB based on value on Select port. - * - * <pre> - * output = ( select > 0.0 ) ? inputB : inputA; - * - * <pre> - * + * + *<pre> <code> + output = ( select > 0.0 ) ? inputB : inputA; +</code> </pre> + * * @author (C) 2004-2009 Phil Burk, SoftSynth.com */ |