import React from "react"; import { BaseProps } from "../../../types/baseProps"; export declare const NAME = "PlaneBufferGeometry"; export interface PlaneBufferGeometryProps extends BaseProps { /** * 平面沿着X轴的宽度。默认值是1。 */ width: number; /** * 平面沿着Y轴的高度。默认值是1。 */ height: number; /** * (可选)平面的宽度分段数,默认值是1。 */ widthSegments?: number; /** * (可选)平面的高度分段数,默认值是1。 */ heightSegments?: number; } /** * 平面缓冲几何体 */ export declare const PlaneBufferGeometry: React.ComponentType;