Fix incorrect call to transposed_inverse

This commit is contained in:
Giles Bathgate 2021-05-19 21:39:19 +01:00
parent 22475e6f30
commit 4f62135274
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ public:
}
void transform(const Aff_transformation_3& t) {
transform(t, t.is_even(), t.transposed_inverse());
transform(t, t.is_even(), t.transpose().inverse());
}
void add_facet(Halffacet_handle f, int depth) {