UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

13 lines (12 loc) 298 B
import type { Props } from '@threlte/core'; import type { ColorRepresentation, LineSegments } from 'three'; export type EdgesProps = Props<LineSegments> & { /** * @default 1 */ thresholdAngle?: number; /** * @default '#ffffff' */ color?: ColorRepresentation; };