mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
[Viewer3D] Clean-up: Harmonize syntax across all the files
This commit is contained in:
parent
9249615baf
commit
9d2974d282
18 changed files with 307 additions and 321 deletions
|
@ -14,14 +14,14 @@ Item {
|
|||
// supported 3D files extensions
|
||||
readonly property var supportedExtensions: {
|
||||
var exts = ['.obj', '.stl', '.fbx', '.gltf'];
|
||||
if(supportSfmData)
|
||||
{
|
||||
exts.push('.abc');
|
||||
exts.push('.json');
|
||||
exts.push('.sfm');
|
||||
if (supportSfmData) {
|
||||
exts.push('.abc')
|
||||
exts.push('.json')
|
||||
exts.push('.sfm')
|
||||
}
|
||||
if(supportDepthMap)
|
||||
exts.push('.exr');
|
||||
if (supportDepthMap)
|
||||
exts.push('.exr')
|
||||
|
||||
return exts;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue