Skip to content
Snippets Groups Projects
Commit 0b6bcb1d authored by moon2's avatar moon2 :speech_balloon:
Browse files

bl00mbox: fix distortion curve setter

parent 70b0c8f4
No related branches found
No related tags found
1 merge request!637bl00mbox: fix distortion curve setter
Pipeline #9531 passed
......@@ -478,13 +478,11 @@ class _Distortion(_Plugin):
return
table = [0] * 129
for x, num in enumerate(table):
position = x * points_size / 129
position = x * (points_size - 1) / 129
lower = int(position)
lerp = position - lower
if position < points_size - 1:
table[x] = int(
(1 - lerp) * points[position] + lerp * points[position + 1]
)
table[x] = int((1 - lerp) * points[lower] + lerp * points[lower + 1])
else:
table[x] = int(points[points_size - 1])
self.table = table
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment