MCPcopy Create free account
hub / github.com/beutton/browser-flight-simulator / BufferGeometryLike

Interface BufferGeometryLike

packages/core/src/bufferGeometry.ts:11–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9} from 'three'
10
11export 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
35export function toBufferGeometryLike(
36 geometry: BufferGeometry

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected