Commit 9920f8bf authored by Guillaume Seguin's avatar Guillaume Seguin

Negate angles from simarrange in plater

parent dcefa9c5
......@@ -378,7 +378,7 @@ class StlPlater(Plater):
filename = bits[0]
x = float(bits[1])
y = float(bits[2])
rot = float(bits[3])
rot = -float(bits[3])
for name, model in models.items():
# FIXME: not sure this is going to work superwell with utf8
if model.filename == filename:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment