Type alias TransformFunction

TransformFunction: ((array, out?, dimension?) => number[])

Type declaration

    • (array, out?, dimension?): number[]
    • A transform function accepts an array of input coordinate values, an optional output array, and an optional dimension (default should be 2). The function transforms the input coordinate values, populates the output array, and returns the output array.

      Parameters

      • array: number[]
      • Optional out: number[]
      • Optional dimension: number

      Returns number[]

Generated using TypeDoc