UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

20 lines (19 loc) 518 B
import { type ColorRepresentation } from 'three'; export interface WireframeProps { simplify?: boolean; fillOpacity?: number; fillMix?: number; strokeOpacity?: number; thickness?: number; colorBackfaces?: boolean; dashInvert?: boolean; dash?: boolean; dashRepeats?: number; dashLength?: number; squeeze?: boolean; squeezeMin?: number; squeezeMax?: number; stroke?: ColorRepresentation; backfaceStroke?: ColorRepresentation; fill?: ColorRepresentation; }