polar.d.ts 519 B

123456789101112
  1. import { CreateTransformer } from '../type';
  2. /**
  3. * Maps normalized value to normalized polar coordinate at the center of the bounding box.
  4. * It is used for Nightingale Rose Diagram.
  5. * @param params [x0, x1, y0, y1]
  6. * @param x x of the the bounding box of coordinate
  7. * @param y y of the the bounding box of coordinate
  8. * @param width width of the the bounding box of coordinate
  9. * @param height height of the the bounding box of coordinate
  10. * @returns transformer
  11. */
  12. export declare const polar: CreateTransformer;