Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vim-webgl-viewer

Package Overview
Dependencies
Maintainers
0
Versions
698
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vim-webgl-viewer

A high-performance 3D viewer and VIM file loader built on top of Three.JS.

  • 2.0.10-dev.12
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
134
decreased by-41.99%
Maintainers
0
Weekly downloads
 
Created
Source

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/three@0.143.0"></script>
    <script src="https://unpkg.com/vim-webgl-viewer@2.0.0"></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/)

Keywords

FAQs

Package last updated on 25 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc