This is a small app created by js for viewing 3D model files like .mtl .obj .
3D Reconstruction and 3D modeling is really popular now.Pix4D, autodesk3D and 3Dcloud are really convenient tools to reconstrut 3D models from photos.But some Opensource software for reconstructions like OpenDroneMap, it don't supply a tool to view the reconstruction files.
So I collected a JS 3Dviewer App from github, then using the Electron to make a native App for linux. It's small but useful.
In Terminal, use following command lines:
$ cd /path/to/your/location
$ git clone git@github.com:yuboona/3Dviewer.git
# start install
$ cd 3Dviewer
# make sure that you have install the Node and npm
# Or you need to install them by "$ sudo apt install nodejs & npm
$ npm install
# start the app
$ npm start
If you want to use this app like a native app, you can search the Electron documentation.
What's the Electron
It's a framwork to build cross platform desktop apps with JavaScript, HTML, and CSS.
You can use any nodejs code in this framwork. VSCode is build by it.