Skip to content

Commit e28df4f

Browse files
committed
Remove IFC from UI.
1 parent 59635a6 commit e28df4f

4 files changed

Lines changed: 3 additions & 11 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ The repository is separated into two parts. See more information in the [Develop
2525
- ply (text and binary)
2626
- gltf (text and binary)
2727
- 3dm (experimental)
28-
- ifc (experimental)
2928
- off (text only)
3029

3130
### Export

website/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
<div class="intro_section only_full_width only_full_height"><img src="assets/images/3dviewer_net_logo.svg" class="intro_logo"></img></div>
155155
<div class="intro_section intro_big_text">
156156
Drag and drop your 3D models here.<br>
157-
<b>obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, off</b>
157+
<b>obj, 3ds, stl, ply, gltf, glb, 3dm, off</b>
158158
</div>
159159
<div class="intro_section">
160160
Or you can use the browse button above.

website/info/index.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1><a href=".">Online 3D Viewer Manual</a></h1>
2424
<p>
2525
This is the user manual for the <a href="https://3dviewer.net">3dviewer.net</a> website.
2626
The website can open several 3D file formats and visualize the model in your browser.
27-
Supported file formats: obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, and off.
27+
Supported file formats: obj, 3ds, stl, ply, gltf, glb, 3dm, and off.
2828
</p>
2929
<p>
3030
<ol>
@@ -117,13 +117,6 @@ <h2 id="supported_file_formats">Supported file formats</h2>
117117
<td class="center green">&#x2713</td>
118118
<td>experimental</td>
119119
</tr>
120-
<tr>
121-
<td>ifc</td>
122-
<td>text</td>
123-
<td class="center green">&#x2713</td>
124-
<td class="center red">&#x2717</td>
125-
<td>experimental</td>
126-
</tr>
127120
<tr>
128121
<td rowspan="2">off</td>
129122
<td>text</td>

website/o3dv/loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OV.InitModelLoader = function (modelLoader, callbacks)
55
if (importError.code === OV.ImportErrorCode.NoImportableFile) {
66
return OV.ShowMessageDialog (
77
'Something went wrong',
8-
'No importable file found. You can open obj, 3ds, stl, ply, gltf, glb, 3dm, ifc, and off files.',
8+
'No importable file found. You can open obj, 3ds, stl, ply, gltf, glb, 3dm, and off files.',
99
importError.message
1010
);
1111
} else if (importError.code === OV.ImportErrorCode.ImportFailed) {

0 commit comments

Comments
 (0)