|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectddf.minim.ugens.UGen.UGenInput
public final class UGen.UGenInput
This inner class, UGenInput, is used to connect the output of other UGens to this UGen
Constructor Summary | |
---|---|
UGen.UGenInput()
This constructor generates an AUDIO input. |
|
UGen.UGenInput(UGen.InputType it)
This constructor generates a UGenInput of the specified type. |
Method Summary | |
---|---|
UGen |
getIncomingUGen()
returns the UGen which is giving values to this input. |
UGen.InputType |
getInputType()
returns the InputType of this UGenInput |
java.lang.String |
getInputTypeAsString()
return the m_inputType as a string (for debugging) |
float |
getLastValue()
Returns the first value in the array of last values. |
float[] |
getLastValues()
|
UGen |
getOuterUGen()
returns the outer UGen of which this is an input. |
boolean |
isPatched()
returns true if this input has an m_incoming UGen |
void |
printInput()
print information about this UGenInput (for debugging) |
void |
setChannelCount(int numberOfChannels)
Set the number of channels this input should generate. |
void |
setIncomingUGen(UGen in)
set the UGen which is giving values to this input |
void |
setLastValue(float value)
Sets all values in the last values array to the provided value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public UGen.UGenInput()
public UGen.UGenInput(UGen.InputType it)
it
- Method Detail |
---|
public void setChannelCount(int numberOfChannels)
numberOfChannels
- public UGen.InputType getInputType()
public UGen getOuterUGen()
public UGen getIncomingUGen()
public void setIncomingUGen(UGen in)
in
- public boolean isPatched()
public float[] getLastValues()
public float getLastValue()
public void setLastValue(float value)
ugen.anInput.getLastValues()[0] = 1.f; ugen.anInput.getLastValues()[1] = 0.f;
value
- the value to set all last values topublic java.lang.String getInputTypeAsString()
public void printInput()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |