diff --git a/auto/Wrap/libBornAgainBase.py b/auto/Wrap/libBornAgainBase.py
index 63c3743288635d0a3ba7565c6ac113fb5e84b3ac..82e8fc768d3721413beb113d3d51df1ee9ccd6ac 100644
--- a/auto/Wrap/libBornAgainBase.py
+++ b/auto/Wrap/libBornAgainBase.py
@@ -1928,15 +1928,9 @@ class RotMatrix(object):
         """
         return _libBornAgainBase.RotMatrix_zxzEulerAngles(self)
 
-    def getInverse(self):
-        r"""
-        getInverse(RotMatrix self) -> RotMatrix
-        RotMatrix RotMatrix::getInverse() const
-
-        Returns the inverse transformation. 
-
-        """
-        return _libBornAgainBase.RotMatrix_getInverse(self)
+    def Inverse(self):
+        r"""Inverse(RotMatrix self) -> RotMatrix"""
+        return _libBornAgainBase.RotMatrix_Inverse(self)
 
     def __mul__(self, arg2):
         r"""__mul__(RotMatrix self, RotMatrix arg2) -> RotMatrix"""
diff --git a/auto/Wrap/libBornAgainBase_wrap.cpp b/auto/Wrap/libBornAgainBase_wrap.cpp
index 6c1f5ad175cce28eb0905cfb65bff114a76f0c0b..7ad86da405a535106ad26757b129db155327b87f 100644
--- a/auto/Wrap/libBornAgainBase_wrap.cpp
+++ b/auto/Wrap/libBornAgainBase_wrap.cpp
@@ -24774,7 +24774,7 @@ fail:
 }
 
 
-SWIGINTERN PyObject *_wrap_RotMatrix_getInverse(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+SWIGINTERN PyObject *_wrap_RotMatrix_Inverse(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
   PyObject *resultobj = 0;
   RotMatrix *arg1 = (RotMatrix *) 0 ;
   void *argp1 = 0 ;
@@ -24786,10 +24786,10 @@ SWIGINTERN PyObject *_wrap_RotMatrix_getInverse(PyObject *SWIGUNUSEDPARM(self),
   swig_obj[0] = args;
   res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_RotMatrix, 0 |  0 );
   if (!SWIG_IsOK(res1)) {
-    SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RotMatrix_getInverse" "', argument " "1"" of type '" "RotMatrix const *""'"); 
+    SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RotMatrix_Inverse" "', argument " "1"" of type '" "RotMatrix const *""'"); 
   }
   arg1 = reinterpret_cast< RotMatrix * >(argp1);
-  result = ((RotMatrix const *)arg1)->getInverse();
+  result = ((RotMatrix const *)arg1)->Inverse();
   resultobj = SWIG_NewPointerObj((new RotMatrix(static_cast< const RotMatrix& >(result))), SWIGTYPE_p_RotMatrix, SWIG_POINTER_OWN |  0 );
   return resultobj;
 fail:
@@ -30027,13 +30027,7 @@ static PyMethodDef SwigMethods[] = {
 		"Calculates the Euler angles corresponding to the rotation. \n"
 		"\n"
 		""},
-	 { "RotMatrix_getInverse", _wrap_RotMatrix_getInverse, METH_O, "\n"
-		"RotMatrix_getInverse(RotMatrix self) -> RotMatrix\n"
-		"RotMatrix RotMatrix::getInverse() const\n"
-		"\n"
-		"Returns the inverse transformation. \n"
-		"\n"
-		""},
+	 { "RotMatrix_Inverse", _wrap_RotMatrix_Inverse, METH_O, "RotMatrix_Inverse(RotMatrix self) -> RotMatrix"},
 	 { "RotMatrix___mul__", _wrap_RotMatrix___mul__, METH_VARARGS, "RotMatrix___mul__(RotMatrix self, RotMatrix arg2) -> RotMatrix"},
 	 { "RotMatrix___eq__", _wrap_RotMatrix___eq__, METH_VARARGS, "RotMatrix___eq__(RotMatrix self, RotMatrix arg2) -> bool"},
 	 { "RotMatrix_isIdentity", _wrap_RotMatrix_isIdentity, METH_O, "\n"