“李仕蓬” 7d4302d4e5 fix
2023-05-15 20:05:21 +08:00
2023-05-15 19:43:57 +08:00
fix
2023-05-15 20:05:21 +08:00
2023-05-15 19:30:47 +08:00
2023-03-30 17:08:11 +08:00
2023-04-20 21:25:51 +08:00

gemini-viewer-examples

Examples and demos for gemini-viewer sdk.

Set up the example project

npm install

npm start

http://localhost:3000/

gemini-viewer

gemini-viewer is a WebGL based JS SDK, it is built on top of three.js. It provides following viewers:

1. DxfViewer

Used to view 2d drawings. Dxf format is supported, so we need to convert dwg files to dxf first (there is a dwg2dxf.exe worker). It supports most common entity types, it supports OLE and region via dwg2dxf; It supports common line types; It supports common hatch styles; It support line width;

2. BimViewer

Used to view 3d BIM models. It supports formats including gltf, obj, fbx, ifc, dae, etc. Its features including measurement, section, display outline, orthographic camera, selection, etc.

3. VRViewer

Used to view panoramas. It supports viewing a panorama with 1 image, 6 images, or 24 images; It supports viewing a serials of panoramas; It supports hotpoints;

Installation

To install from npm:

npm install @pattern-x/gemini-viewer-threejs

Examples for DxfViewer

import { DxfViewer, DxfViewerConfig, ModelConfig } from "@pattern-x/gemini-viewer-threejs";

const viewerCfg: DxfViewerConfig = {
    containerId: "myCanvas",
    enableToolbar: true,
    enableSpinner: true,
    enableLayoutBar: true,
};
const modelCfg: ModelConfig = {
    modelId: "id_0",
    name: "sample",
    src: "http://www.abc.com/sample.dxf",
}
const fontFiles = ["http://www.abc.com/hztxt.shx", "http://www.abc.com/simplex.shx"];

const viewer = new DxfViewer(viewerCfg);
await viewer.setFont(fontFiles);
await viewer.loadModelAsync(modelCfg, (event) => {
    const progress = (event.loaded * 100) / event.total;
    console.log(`${event.type}: ${progress}%`);
});
console.log("Loaded");
viewer.goToHomeView();

Features for DxfViewer

  • Load and view dxf file load_and_view.gif
  • Switch between layouts layouts.gif
  • Distance measurement measure_dist.gif
  • Area measurement
  • Angle measurement
  • Markups markups.gif
  • Comparison markups.gif
  • Undo/redo

How to integrate DxfViewer into your system

  • Physical structure diagram: physical_structure.png
  • Logical structure diagram: logical_structure.png

Features for BimViewer

  • Load and view BIM model load_and_view.gif
  • Orthographic view bim_ortho_camera.png
  • Selection bim_selection.gif
  • X-Ray bim_xray.gif
  • Distance measurement bim_dist_measure.gif
  • Section bim_section_plane.png
  • Overlay 3d model with dxf overlay_3d_model_with_dxf.gif
Description
Examples and demos for gemini-viewer sdk, which is a WebGL based BIM model viewer, built on three.js. It is used to view dwg/dxf, gltf, obj, ifc models, etc.
Readme 229 MiB
Languages
TypeScript 35.2%
HTML 34.9%
JavaScript 24.9%
CSS 5%