parallel.d.ts 428 B

1234567891011
  1. import { CreateTransformer } from '../type';
  2. /**
  3. * Apples parallel coordinate transform.
  4. * @param params [x0, x1, y0, y1]
  5. * @param x x of the the bounding box of coordinate
  6. * @param y y of the the bounding box of coordinate
  7. * @param width width of the the bounding box of coordinate
  8. * @param height height of the the bounding box of coordinate
  9. * @returns transformer
  10. */
  11. export declare const parallel: CreateTransformer;