Skip to content

RyugaRyuzaki/engine_fragment

 
 

Repository files navigation

TOC | documentation | demo | community | npm package

cover

BIM Fragment

NPM Package NPM Package Tests

This library is a geometric system to efficiently display 3D BIM data built on top of Three.js. Specifically, it uses InstancedMeshes to draw each set of repeated geometries (which are abundant in BIM models) using a single draw call.

  • It uses flatbuffers to persist data as a binary format efficiently.
  • It prevents memory leaks exposing a dispose() method.

You generally won't need to interact with this library direclty. Instead, you can use components, which provides an abstraction layer of tools that use this format and make the creation of BIM tools very easy.

Usage

You need to be familiar with Three.js API to be able to use this library effectively. In the following example, we will create a cube in a 3D scene that can be navigated with the mouse or touch events. You can see the full example here and the deployed app here.

import * as FRAGS from '../resources/fragment.js';

const canvas = document.getElementById('container');
const threeScene = new SimpleThreeScene(canvas);

let chairs;

const serializer = new FRAGS.Serializer();

async function importChairsBinary() {
    if (chairs !== undefined) return;
    const fetched = await fetch("../resources/chairs.frag");
    const rawData = await fetched.arrayBuffer();
    const buffer = new Uint8Array(rawData);
    chairs = serializer.import(buffer);
    threeScene.scene.add(chairs);
}

function deleteChairs() {
    if (!chairs) return;
    chairs.dispose();
    chairs = undefined;
}

async function exportChairsBinary() {
    if (!chairs) return;

    const buffer = serializer.export(chairs);
    const file = new File([new Blob([buffer])], "chairs.frag");
    const link = document.createElement('a');
    document.body.appendChild(link);

    link.download = 'chairs.frag';
    link.href = URL.createObjectURL(file);
    link.click();

    link.remove();
}

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 73.2%
  • TypeScript 26.8%