NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/animate/animation/util.d.ts

20 lines
867 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { Coordinate, IGroup, IShape } from '../../dependents';
import { GAnimateCfg, Point } from '../../interface';
/**
* @ignore
*
* @param shape
* @param vector
* @param direct
*/
export declare function transformShape(shape: IShape | IGroup, vector: [number, number], direct: string): number[];
/**
*
* @param element
* @param animateCfg
* @param coordinate
* @param yMinPoint y
* @param type
*/
export declare function doScaleAnimate(element: IGroup | IShape, animateCfg: GAnimateCfg, coordinate: Coordinate, yMinPoint: Point, type: string): void;