Package com.io7m.jnoisetype.api
Interface NTInstrumentZoneModulatorType
-
- All Superinterfaces:
NTInstrumentZoneMemberType
public interface NTInstrumentZoneModulatorType extends NTInstrumentZoneMemberType
An instrument zone modulator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description shortmodulationAmount()intmodulationAmountSourceOperator()NTTransformmodulationTransformOperator()intsourceOperator()NTGeneratortargetOperator()-
Methods inherited from interface com.io7m.jnoisetype.api.NTInstrumentZoneMemberType
zone
-
-
-
-
Method Detail
-
sourceOperator
int sourceOperator()
- Returns:
- The source data for the modulator
-
targetOperator
NTGenerator targetOperator()
- Returns:
- The destination of the modulator
-
modulationAmount
short modulationAmount()
- Returns:
- The degree to which the source modulates the destination. A zero value indicates there is no fixed amount.
-
modulationAmountSourceOperator
int modulationAmountSourceOperator()
- Returns:
- The degree to which the source modulates the destination is to be controlled by the specified modulation source
-
modulationTransformOperator
NTTransform modulationTransformOperator()
- Returns:
- A value that indicates that a transform of the specified type will be applied to the modulation source before application to the modulator
-
-