fix mapping (gamma/factor were reversed)
Stefan Schuermans

Stefan Schuermans commited on 2017-05-26 17:56:46
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -15,7 +15,7 @@ class Mapping(object):
15 15
         self._factor = 1.0
16 16
         self._precompute()
17 17
 
18
-    def set_params(self, base, gamma, factor):
18
+    def set_params(self, base, factor, gamma):
19 19
         """set mapping parameters"""
20 20
         self._base = base
21 21
         self._gamma = gamma
22 22