Git Product home page Git Product logo

vim-webgl-viewer's Introduction

VIM WebGL Viewer

npm Website

Documentation

https://vimaec.github.io/vim-webgl-viewer/api/

Live Demo

Web

JsFiddle

Overview

The VIM WebGL Viewer is an open-source high-performance 3D model viewer that specializes in loading extremely large AEC (Architectural/Engineering/Construction) models represented as VIM files.

It is built on top of the popular Three.JS WebGL framework to provide commonly used AEC related features. It can be simply included via script tags or consumed using esm imports.

The VIM file format is a high-performance 3D scene format that supports rich BIM data, and can be easily extended to support other relational or non-relation data sets.

Unlike IFC the VIM format is already tessellated, and ready to render. This results in very fast load times. Unlike glTF the VIM format is faster to load, scales better, and has a consistent structure for relational BIM data.

More information on the vim format can be found here: https://github.com/vimaec/vim

Using the Viewer from a Web Page

The following is an example of the simplest usage of the VIM viewer:

<html>
  <head>
    <title>VIM Viewer</title>
  </head>
      <style>
      /*Makes full screen and remove scrollbars*/
      html,
      body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        /*This prevents touches from being eaten up by the browser.*/
        touch-action: none;
      }
    </style>
  <body>
    <script src="https://unpkg.com/[email protected]"></script>
    <script src="https://unpkg.com/[email protected]"></script>
    <script>
    
      async function load(){
        // Create a new viewer. 
        const viewer = new VIM.Viewer()

        // Open the vim file.
        const vim = await VIM.open(
          'https://vim02.azureedge.net/samples/residence.v1.2.75.vim',
          {
            rotation: new VIM.THREE.Vector3(270, 0, 0)
          }     
        )
          
        // Load all geometry from vim file.
        await vim.loadAll()

        // Add loaded vim to the viewer.
        viewer.add(vim)

        // Immediately frame loaded vim.
        viewer.camera.snap().frame(vim)
      }
      
      // Need function because you can't have top level async
      load()
      
    </script>
  </body>
</html>

Running Locally

  • Checkout repo
  • Run npm install to install all dependencies
  • Run npm run dev to launch a dev-server and watch for change
  • Navigate to the indicated localhost url in your browser

Folder Structure

  • docs - this is the root folder for the GitHub page at https://vimaec.github.io/vim-webgl-viewer. The docs\index.html file is meant to demo the latest stable patch release, while the docs\index-dev.html Is meant to test the latest dev release.
  • src - contains the TypeScript source code for the viewer.
  • dist - created by running the build script for creating a distributable package. It contains five items after running the build script:
    • dist\vim-webgl-viewer.es.js - an EcmaScript module
    • dist\vim-webgl-viewer.es.js.map - Typescript source map file map for the EcmaScript module
    • dist\vim-webgl-viewer.iife.js - an immediately-invocable function expression (IIFE) intended for consumption from a web-page
    • dist\vim-webgl-viewer.iife.js.map - Typescript source map file map for the IIFE
    • types\ - A folder containing Typescript type declarations for the package.

Scripts

The following scripts are defined in the package.json, and can each be executed from within VSCode by right-clicking the script name, or from the command line by writing npm run <script-name> where <script-name> is the name of the script:

  • dev - launches a development environment using Vite
  • build - compiles an IIFE JavaScript module and ES module using Vite and the configuration file, placing the output in the dist folder
  • serve-docs - launches a web server with the docs folder as the root folder, for testing a published NPM package (tagged develop or latest) locally
  • eslint - runs ESLint and reports all syntactic inconsistencies
  • documentation - generates API documentation at docs/api
  • declarations - generates TypeScript declarations at dist/types"

Contributing:

  • Source code is formatted using prettier-eslint using the standardjs format.
  • On VSCode it is recommended to install ESLint and Prettier ESLint extensions.

The Sources and Dependencies

The distributable files do not contain the underlying source for Three.JS to avoid duplication. Please include Three.JS on your own.

Camera Controls

Keyboard

W/Up: Move camera forward
A/Left: Move camera to the left
S/Down: Move camera backward
D/Right: Move camera to the right
E: Move camera up
Q: Move camera down
Shift + direction: faster camera movement
+: Increase camera speed
-: Decrease camera speed

Space bar Toggle orbit mode
Home: Frame model
Escape: Clear selection
F: Frame selection

Mouse

Hold left click + Move mouse: Rotate camera in current mode
Hold right click + Move mouse: Pan/Tilt camera Hold middle click + Move mouse: Truck/Pedastal camera Mouse wheel: Dolly Camera
Left click: Select object
Ctrl + Mouse wheel: Increase/Decrease camera speed

Touch

One Finger swipe: Tilt/Pan camera
Two Finger swipe: Truck/Pedestal camera
Two Finger pinch/spread: Dolly Camera

(https://blog.storyblocks.com/video-tutorials/7-basic-camera-movements/)

vim-webgl-viewer's People

Contributors

cdiggins avatar friesofdoom avatar fuzzyma avatar mavimaec avatar vadim-vorotilin avatar vim-sroberge avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.