concept-collection / mesh-converter
mesh-converter / src / viewModes.ts
8 lines · 267 BBlameHistoryRaw
1export type ViewMode = 'shaded' | 'wire' | 'both' | 'points'
3export const VIEW_MODES: { id: ViewMode; label: string }[] = [
4 { id: 'shaded', label: 'Shaded' },
5 { id: 'wire', label: 'Wire' },
6 { id: 'both', label: 'Both' },
7 { id: 'points', label: 'Points' },
8]