We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e9947 commit f84052cCopy full SHA for f84052c
src/Mod/BIM/importers/importWebGL.py
@@ -224,7 +224,13 @@ def getHTMLTemplate():
224
obj.facesToFacets = obj.facesToFacets.map(x => baseDecode(x));
225
}
226
227
-
+ else {
228
+ for (const obj of data.objects) {
229
+ obj.verts = obj.verts.map(x => parseFloat(x));
230
+ obj.wires = obj.wires.map(w => w.map(x => parseFloat(x)))
231
+ obj.facesToFacets = obj.facesToFacets.map(w => w.map(x => parseFloat(x)));
232
+ }
233
234
// Get bounds for global clipping
235
const globalMaxMin = [{min: null, max: null},
236
{min: null, max: null},
0 commit comments