From e28df4f8a8cec8e5fceef1fd6381a4ff1abea6bc Mon Sep 17 00:00:00 2001 From: kovacsv Date: Fri, 2 Jul 2021 12:38:29 +0200 Subject: [PATCH] Remove IFC from UI. --- README.md | 1 - website/index.html | 2 +- website/info/index.html | 9 +-------- website/o3dv/loader.js | 2 +- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d077fec..7b40223 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ The repository is separated into two parts. See more information in the [Develop - ply (text and binary) - gltf (text and binary) - 3dm (experimental) -- ifc (experimental) - off (text only) ### Export diff --git a/website/index.html b/website/index.html index fcb7e1a..579c67d 100644 --- a/website/index.html +++ b/website/index.html @@ -154,7 +154,7 @@
Drag and drop your 3D models here.
- obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, off + obj, 3ds, stl, ply, gltf, glb, 3dm, off
Or you can use the browse button above. diff --git a/website/info/index.html b/website/info/index.html index 64c9dba..b71db9e 100644 --- a/website/info/index.html +++ b/website/info/index.html @@ -24,7 +24,7 @@

This is the user manual for the 3dviewer.net website. The website can open several 3D file formats and visualize the model in your browser. - Supported file formats: obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, and off. + Supported file formats: obj, 3ds, stl, ply, gltf, glb, 3dm, and off.

    @@ -117,13 +117,6 @@ ✓ experimental - - ifc - text - ✓ - ✗ - experimental - off text diff --git a/website/o3dv/loader.js b/website/o3dv/loader.js index 7069dec..8442fbd 100644 --- a/website/o3dv/loader.js +++ b/website/o3dv/loader.js @@ -5,7 +5,7 @@ OV.InitModelLoader = function (modelLoader, callbacks) if (importError.code === OV.ImportErrorCode.NoImportableFile) { return OV.ShowMessageDialog ( 'Something went wrong', - 'No importable file found. You can open obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, and off files.', + 'No importable file found. You can open obj, 3ds, stl, ply, gltf, glb, 3dm, and off files.', importError.message ); } else if (importError.code === OV.ImportErrorCode.ImportFailed) {