Effect (P1) | how much the operator effects the outcome |
Distorsion Shape (P2) | this shape determines the kind and the amount of distorsion |
Map | the shape can be mapped in various ways :
- full range : as it is [-max to max]
- mirrored : copied and rotated around the origin [-max to 0]=-[0 to max], which yields same shapes for positive and negative sample-values
|
Wrap |
Choose how to handle clipping. The modi below are available :
- NoClip: don't care
- Clip : overdriven values are clipped
- Wrap1 : overdriven values are pushed into the opposite side until they don't clip anymore.
- Wrap2 : overdriven values are overturned (folded) until they don't clip anymore.
|