This commit is contained in:
Yeicor
2024-02-17 21:05:15 +01:00
parent 16b3a8ea64
commit 613fe9269a

View File

@@ -192,7 +192,7 @@ class Server:
if not isinstance(obj, TopoDS_Shape):
raise ValueError(f'Cannot show object of type {type(obj)} (submit issue?)')
# Convert Z-up (OCC convention) to Y-up (GLTF convention)
# Convert Z-up (OCCT convention) to Y-up (GLTF convention)
obj = Shape(obj).rotate(Axis.X, -90).wrapped
self._show_common(name, _hashcode(obj), start, obj)