glodrei
Version:
useful add-ons for react-three-fiber
12 lines (11 loc) • 384 B
TypeScript
import { Line2 } from 'three-stdlib';
import { LineProps } from './Line';
import { ForwardRefComponent } from '../helpers/ts-utils';
type Props = Omit<LineProps, 'ref'> & {
closed?: boolean;
curveType?: 'centripetal' | 'chordal' | 'catmullrom';
tension?: number;
segments?: number;
};
export declare const CatmullRomLine: ForwardRefComponent<Props, Line2>;
export {};