fix element rotation

This commit is contained in:
Bixilon 2023-09-16 01:33:22 +02:00
parent b32040d82c
commit 9a21f9de38
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -58,7 +58,7 @@ data class ElementRotation(
val axis = Axes[data["axis"].toString()]
return ElementRotation(origin, axis, angle, rescale)
return ElementRotation(origin, axis, -angle, rescale)
}
}
}