Use text instead of ascii.

This commit is contained in:
Viktor Kovacs 2021-03-29 08:15:23 +02:00
parent 28347b9bd8
commit c4782710ad
2 changed files with 11 additions and 11 deletions

View File

@ -47,7 +47,7 @@
<h2 id="supported_file_formats">Supported file formats</h2>
<p>
The website supports several file formats for import and export. If a file format has an ascii and binary version,
The website supports several file formats for import and export. If a file format has text and binary version,
usually it's recommended to use the binary version.
</p>
<p>
@ -60,7 +60,7 @@
</tr>
<tr>
<td>obj</td>
<td>ascii</td>
<td>text</td>
<td class="center green">&#x2713</td>
<td class="center green">&#x2713</td>
<td>with mtl and texture support</td>
@ -74,7 +74,7 @@
</tr>
<tr>
<td rowspan="2">stl</td>
<td>ascii</td>
<td>text</td>
<td class="center green">&#x2713</td>
<td class="center green">&#x2713</td>
<td>binary version is preferred</td>
@ -87,7 +87,7 @@
</tr>
<tr>
<td rowspan="2">ply</td>
<td>ascii</td>
<td>text</td>
<td class="center green">&#x2713</td>
<td class="center green">&#x2713</td>
<td>binary version is preferred</td>
@ -100,7 +100,7 @@
</tr>
<tr>
<td rowspan="2">gltf</td>
<td>ascii (.gltf)</td>
<td>text (.gltf)</td>
<td class="center green">&#x2713</td>
<td class="center green">&#x2713</td>
<td>version 2.0</td>
@ -113,7 +113,7 @@
</tr>
<tr>
<td rowspan="2">off</td>
<td>ascii</td>
<td>text</td>
<td class="center green">&#x2713</td>
<td class="center green">&#x2713</td>
<td>-</td>

View File

@ -221,13 +221,13 @@ OV.ShowExportDialog = function (model)
$('<div>').html (text).addClass ('ov_dialog_section').appendTo (contentDiv);
let formats = [
{ name : 'obj (ascii)', format : OV.FileFormat.Text, extension : 'obj' },
{ name : 'stl (ascii)', format : OV.FileFormat.Text, extension : 'stl' },
{ name : 'obj (text)', format : OV.FileFormat.Text, extension : 'obj' },
{ name : 'stl (text)', format : OV.FileFormat.Text, extension : 'stl' },
{ name : 'stl (binary)', format : OV.FileFormat.Binary, extension : 'stl' },
{ name : 'ply (ascii)', format : OV.FileFormat.Text, extension : 'ply' },
{ name : 'ply (text)', format : OV.FileFormat.Text, extension : 'ply' },
{ name : 'ply (binary)', format : OV.FileFormat.Binary, extension : 'ply' },
{ name : 'off (ascii)', format : OV.FileFormat.Text, extension : 'off' },
{ name : 'gltf (ascii) - experimental', format : OV.FileFormat.Text, extension : 'gltf' },
{ name : 'off (text)', format : OV.FileFormat.Text, extension : 'off' },
{ name : 'gltf (text) - experimental', format : OV.FileFormat.Text, extension : 'gltf' },
{ name : 'gltf (binary) - experimental', format : OV.FileFormat.Binary, extension : 'glb' }
];