UNPKG

463 BTypeScriptView Raw
1import { DIRECTION } from '../constant';
2import { Point } from '../dependents';
3import { FacetTitle } from '../interface';
4/**
5 * @ignore
6 * 获取 facet title 的最佳默认配置,防止
7 */
8export declare function getFactTitleConfig(direction: DIRECTION): FacetTitle;
9/**
10 * @ignore
11 * 根据角度,获取 ○ 上的点
12 * @param center
13 * @param r
14 * @param angle
15 */
16export declare function getAnglePoint(center: Point, r: number, angle: number): Point;