| 9 | } from 'three' |
| 10 | |
| 11 | export interface BufferGeometryLike { |
| 12 | attributes: Record< |
| 13 | string, |
| 14 | { |
| 15 | array: TypedArray |
| 16 | itemSize: number |
| 17 | normalized?: boolean |
| 18 | } |
| 19 | > |
| 20 | index?: { |
| 21 | array: TypedArray |
| 22 | itemSize: number |
| 23 | normalized?: boolean |
| 24 | } | null |
| 25 | boundingBox?: { |
| 26 | min: Vector3Like |
| 27 | max: Vector3Like |
| 28 | } | null |
| 29 | boundingSphere?: { |
| 30 | center: Vector3Like |
| 31 | radius: number |
| 32 | } | null |
| 33 | } |
| 34 | |
| 35 | export function toBufferGeometryLike( |
| 36 | geometry: BufferGeometry |
nothing calls this directly
no outgoing calls
no test coverage detected