import type { DisplayObjectConfig } from '@antv/g'; import type { ProceduralGeometry as GGeometry, TorusGeometryProps } from '@antv/g-plugin-3d'; import type { Vector3 } from '@antv/g6'; import type { BaseNode3DStyleProps } from './base-node-3d'; import { BaseNode3D } from './base-node-3d'; /** * 圆环节点样式 * * Torus Node Style Props */ export type TorusStyleProps = BaseNode3DStyleProps & TorusGeometryProps; /** * 圆环节点 * * Torus Node */ export declare class Torus extends BaseNode3D { static defaultStyleProps: Partial; constructor(options: DisplayObjectConfig); protected getSize(attributes?: TorusStyleProps): Vector3; protected getGeometry(attributes: Required): GGeometry; }