brepjs API Reference
    Preparing search index...

    Interface BufferGeometryData

    Data ready to be used with THREE.BufferGeometry.

    interface BufferGeometryData {
        index: Uint32Array;
        normal: Float32Array;
        position: Float32Array;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    index: Uint32Array

    Triangle index array (3 indices per triangle).

    normal: Float32Array

    Flat float array of vertex normals (x,y,z interleaved).

    position: Float32Array

    Flat float array of vertex positions (x,y,z interleaved).