SplayAz:
Filter:
Classes | UGens > Multichannel > Panners

SplayAz : UGen : AbstractFunction : Object

Spreads an array of channels across a ring of channels
Source: Splay.sc

Description

SplayAz spreads an array of channels across a ring of channels. Optional spread and center controls, and equal power levelCompensation. numChans and orientation are as in PanAz.

Class Methods

SplayAz.ar(numChans: 4, inArray, spread: 1, level: 1, width: 2, center: 0.0, orientation: 0.5, levelComp: true)

SplayAz.kr(numChans: 4, inArray, spread: 1, level: 1, width: 2, center: 0.0, orientation: 0.5, levelComp: true)

Each of the inputs is evenly spaced over a cyclic period of 2.0 in pos with 0.0 equal to channel zero and 2.0/numChans equal to channel 1, 4.0/numChans equal to channel 2, etc.

The distance between the input signals in the output range is determined by the spread argument.

Arguments:

numChans

Number of output channels of the UGen

inArray

Input signals (can be a single UGen or an array)

spread

How far the input signals are apart in the output. If zero, everything is mixed on center position (see below).

level

Scaling for all signals

width

Over how much of the channels each signal is distributed.

center

Which of the channels will be the first channel

orientation

Should be zero if the front is a vertex of the polygon. The first speaker will be directly in front. Should be 0.5 if the front bisects a side of the polygon. Then the first speaker will be the one left of center.

levelComp

If true, the signal level is adjusted to maintain overall loudness the same (n.reciprocal.sqrt).

SplayAz.arFill(numChans: 4, n, function, spread: 1, level: 1, width: 2, center: 0.0, orientation: 0.5, levelComp: true)

Arguments:

numChans

Number of output channels

n

Number of input channels

function

A function that returns a UGen (the channel index is passed as an argument)

spread
level
width
center
orientation
levelComp

Inherited class methods

Instance Methods

Inherited instance methods

Examples