fix placement rotation (float modulo int was always returning 0??)
This commit is contained in:
parent
99283aaaf0
commit
55638fcde5
@ -1404,9 +1404,9 @@ class Placement(Record):
|
|||||||
r = self.repetition is not None
|
r = self.repetition is not None
|
||||||
f = self.flip
|
f = self.flip
|
||||||
|
|
||||||
if self.angle is not None and self.angle % 90 == 0 and \
|
if ((self.magnification is None or self.magnification == 1) and
|
||||||
self.magnification is None or self.magnification == 1:
|
((self.angle is None or abs(self.angle % 90.0) < 1e-14))):
|
||||||
aa = int((self.angle / 90) % 4) # type: ignore
|
aa = int((self.angle / 90) % 4.0) # type: ignore
|
||||||
bools = (c, n, x, y, r, aa & 0b10, aa & 0b01, f)
|
bools = (c, n, x, y, r, aa & 0b10, aa & 0b01, f)
|
||||||
m = False
|
m = False
|
||||||
a = False
|
a = False
|
||||||
|
Loading…
Reference in New Issue
Block a user