import type { BaseLayoutOptions } from '../types'; import type { Point } from '../../types'; /** * MDS 高维数据降维布局配置 * * MDS layout configuration for high-dimensional data dimensionality reduction */ export interface MDSLayoutOptions extends BaseLayoutOptions { /** * 圆形布局的中心位置 * * Center position of circular layout */ center?: Point; /** * 边的理想长度,可以理解为边作为弹簧在不受力下的长度 * * Ideal length of the edge, which can be understood as the length of the edge as a spring under no force * @defaultValue 200 */ linkDistance?: number; }