import type { Mesh } from '@anov/3d-core'; import type { options } from './types'; export interface IPlane { /** * 创建平面 * @param options - 参数配置 */ createPlane: (options: options) => Mesh; /** * 更新平面 * @param options - 参数配置 * @returns */ updatePlane: (options: options) => void; /** * 销毁平面 */ destroy: () => void; }