import { BaseLayoutOptions } from '../types.js';
import { Point } from '../../types/point.js';
/**
* MDS 高维数据降维布局配置
*
* MDS layout configuration for high-dimensional data dimensionality reduction
*/
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;
}
export type { MDSLayoutOptions };