All Projects → naver → Egjs View3d

naver / Egjs View3d

Licence: mit
Fast & customizable 3D model viewer for everyone

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Egjs View3d

Webxr Emulator Extension
WebXR emulator extension
Stars: ✭ 231 (+579.41%)
Mutual labels:  threejs, ar, webxr
immersive-ar-emulation
A sort-of polyfill to emulate a fake AR environment which can be hit-tested against.
Stars: ✭ 26 (-23.53%)
Mutual labels:  threejs, ar, webxr
Model viewer.dart
A Flutter widget for rendering interactive 3D models in the glTF and GLB formats.
Stars: ✭ 134 (+294.12%)
Mutual labels:  3d, gltf, ar
3dio Js
JavaScript toolkit for interior apps
Stars: ✭ 255 (+650%)
Mutual labels:  3d, threejs, ar
Model Viewer
Easily display interactive 3D models on the web and in AR!
Stars: ✭ 3,751 (+10932.35%)
Mutual labels:  3d, gltf, webxr
Spoke
Easily create custom 3D environments
Stars: ✭ 321 (+844.12%)
Mutual labels:  threejs, gltf, webxr
Sketchbook
3D playground built on three.js and cannon.js
Stars: ✭ 403 (+1085.29%)
Mutual labels:  3d, threejs
Vue Gl
Vue.js components rendering 3D WebGL graphics reactively with three.js
Stars: ✭ 434 (+1176.47%)
Mutual labels:  3d, threejs
Tensorspace
Neural network 3D visualization framework, build interactive and intuitive model in browsers, support pre-trained deep learning models from TensorFlow, Keras, TensorFlow.js
Stars: ✭ 4,515 (+13179.41%)
Mutual labels:  3d, threejs
Building Server
A server to stream PostGIS 3D objects to the web
Stars: ✭ 11 (-67.65%)
Mutual labels:  3d, gltf
Von Grid
Hexagonal & square tile grid system with three.js
Stars: ✭ 336 (+888.24%)
Mutual labels:  3d, threejs
Roygbiv
A 3D engine for the Web
Stars: ✭ 499 (+1367.65%)
Mutual labels:  3d, threejs
Cgltf
💠 Single-file glTF 2.0 loader and writer written in C99
Stars: ✭ 628 (+1747.06%)
Mutual labels:  3d, gltf
Troika
A JavaScript framework for interactive 3D and 2D visualizations
Stars: ✭ 342 (+905.88%)
Mutual labels:  threejs, webxr
Taro
A lightweight 3D game engine for the web.
Stars: ✭ 345 (+914.71%)
Mutual labels:  3d, webxr
Lume
Create CSS3D/WebGL applications declaratively with HTML. Give regular DOM elements shadow and lighting.
Stars: ✭ 445 (+1208.82%)
Mutual labels:  3d, threejs
Ideaspace
😎 Create interactive 3D and VR web experiences for desktop, mobile & VR devices
Stars: ✭ 344 (+911.76%)
Mutual labels:  threejs, webxr
Clay Viewer
3D model viewer with high quality rendering and glTF2.0/GLB export
Stars: ✭ 558 (+1541.18%)
Mutual labels:  3d, gltf
Harp.gl
harp.gl - web map rendering engine
Stars: ✭ 828 (+2335.29%)
Mutual labels:  3d, threejs
Engine
Fast and lightweight JavaScript game engine built on WebGL and glTF
Stars: ✭ 6,890 (+20164.71%)
Mutual labels:  gltf, webxr

Version size build coverage typescript supports

Fast & customizable 3D model viewer for everyone

👉 Demo / API Document / Tutorial

👉 Related Articles: 1, 2

Features

  • A customizable 3D model viewer based on the three.js
  • Supports LOD, which can greatly decrease time before 3D model displays.
  • Supports WebXR & SceneViewer AR for Android & AR Quick Look for iOS
  • Supports multiple AR types
  • Fully documented API
  • Typescript-based

Install

npm i @egjs/view3d
# OR
yarn add @egjs/view3d

Getting Started

@egjs/view3d requires one canvas element to be initialized.

<!-- Wrapper element -->
<div id="some-wrapper">
  <!-- View3D needs one canvas element to render a 3d model -->
  <!-- You don't have to set width / height attribute of it, as View3D will manage that for you. -->
  <!-- Just set its size with CSS, then View3D will use it -->
  <canvas id="my-canvas"></canvas>
  <!-- Other UI elements of your choice here -->
</div>

<!-- Here's some sample CSS style for the reference -->
<style>
#some-wrapper {
  width: 100vw;
  height: 100vh;
}
#my-canvas {
  width: 100%;
  height: 100%;
}
</style>

Then you can use it like

import View3D from "@egjs/view3d";

const canvasEl = document.querySelector("#my-canvas");
const view3d = new View3D(canvasEl);
// or just
const view3d = new View3D("#my-canvas");

See more examples on our Demo / Tutorial

Browser Coverage

View3D is available for browsers support webgl.

IE Chrome Firefox Safari iOS Android
11+ Latest Latest Latest 8+ 5+

See more details at https://caniuse.com/webgl

Augmented Reality(AR) Coverage

Android
(WebXR)
Android
(Google SceneViewer)
iOS
(AR QuickLook)
Chrome All browsers Safari Chrome
Android 7.0+, Chromium 81+ Android 7.0+ iOS 11+

License

Copyright (c) 2020-present NAVER Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].