@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias AudioMergerCoordinates

    key value
    type object

    The coordinates by which signals A, B and C in the audio merger are mixed.

    The coordinates are on the cartesian plane bounded by [0, 1] in both dimensions. On this plane, a triangle is formed between points:

    • A: (0, 0.5)
    • B: (1, 0)
    • C: (0, -0.5)

    For a given coordinate (x, y), the point is first clamped vertically to be within the y-range of the triangle (for the given x value). Then, the distance to points A, B, C is calculated.

    How these distances are used to mix the signals together depends on the blend_algorithm fields of the merger.

    type AudioMergerCoordinates = {
        x: PrimitiveField<number, "mut">;
        y: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    x y

    Properties

    x: PrimitiveField<number, "mut">

    The x-coordinates. See the message documentation for what this means.

    key value
    default 0.6666666865348816
    range [0, 1]
    is api.TargetType.AutomatableParameter
    y: PrimitiveField<number, "mut">

    The y-coordinates. See the message documentation for what this means.

    key value
    default 0
    range [-0.5, 0.5]
    is api.TargetType.AutomatableParameter