Interface ISwipeAxes

Optional numeric values per swipe axis (x, y, angle).

  • bounds: each array is normalized to [min, max] movement limits.
  • snap: each array lists snap targets in movement space.
interface ISwipeAxes {
    angle?: number[];
    x?: number[];
    y?: number[];
}

Properties

Properties

angle?: number[]
x?: number[]
y?: number[]