Skip to content
Snippets Groups Projects

[bugfix][python] Fix geometry.jacobianInverse() in python

Merged Carsten Gräser requested to merge bugfix/jacobianinverse-python into master
1 unresolved thread
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -303,7 +303,7 @@ namespace Dune
} );
cls.def( "jacobianInverse", [] ( const Geometry &self, const LocalCoordinate &x ) {
return static_cast< JacobianInverseTransposed >( self.jacobianInverseTransposed( x ) );
return static_cast< JacobianInverse >( self.jacobianInverse( x ) );
}, "x"_a,
R"doc(
obtain inverse Jacobian of this mapping in a local point
Loading