brepjs API Reference
    Preparing search index...

    Interface VoxelRepairResult

    The repaired-mesh handle the wasm repair_mesh returns. Flat xyz positions/normals (length 3·V) and a triangle-list indices (3 per tri), in world space. Structurally satisfied by the generated RepairResult class.

    interface VoxelRepairResult {
        indices: Uint32Array;
        normals: Float32Array;
        positions: Float32Array;
        "[dispose]"(): void;
        free(): void;
    }
    Index

    Properties

    indices: Uint32Array
    normals: Float32Array
    positions: Float32Array

    Methods

    • Release the backing WASM allocation (wasm-bindgen lifecycle).

      Returns void