rotate.d.ts 431 B

1234567891011
  1. import { CreateTransformer } from '../type';
  2. /**
  3. * Apply translate transformation for current vector.
  4. * @param params [tx, ty]
  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 rotate: CreateTransformer;