Files
avz-site/node_modules/@react-three/drei/core/CatmullRomLine.d.ts
T
2026-05-30 19:59:39 -03:00

11 lines
421 B
TypeScript

import { Line2 } from 'three-stdlib';
import { LineProps } from './Line';
import { ForwardRefComponent } from '../helpers/ts-utils';
export type CatmullRomLineProps = Omit<LineProps, 'ref' | 'segments'> & {
closed?: boolean;
curveType?: 'centripetal' | 'chordal' | 'catmullrom';
tension?: number;
segments?: number;
};
export declare const CatmullRomLine: ForwardRefComponent<CatmullRomLineProps, Line2>;