ScLERP: fix argument order

FC PR 2613
This commit is contained in:
DeepSOIC 2019-10-12 18:46:35 +03:00
parent 97d5400ed5
commit 9728b3787c

View File

@ -92,7 +92,7 @@ class LatticeScLERP(lattice2BaseFeature.LatticeFeature):
# prepare lists of input samples
def plmByVal(val):
return plm1.sclerp(val, plm2, host.Shorten)
return plm1.sclerp(plm2, val, host.Shorten)
output = [plmByVal(val) for val in values]