Code style: Space after binary operator

Contributes to issue CURA-4672.
This commit is contained in:
Ghostkeeper 2017-12-28 14:28:12 +01:00
parent d0a3575c0c
commit 4b9ddc186a
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A
3 changed files with 4 additions and 4 deletions

View file

@ -184,7 +184,7 @@ class X3DReader(MeshReader):
got_center = (center.x != 0 or center.y != 0 or center.z != 0)
T = self.transform
if trans.x != 0 or trans.y != 0 or trans.z !=0:
if trans.x != 0 or trans.y != 0 or trans.z != 0:
T.translate(trans)
if got_center:
T.translate(center)