mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-24 03:40:34 +05:00
fix occ identification propagation, use IsSame not ==
This commit is contained in:
parent
412fd372d0
commit
9b58ece673
@ -444,7 +444,7 @@ namespace netgen
|
||||
for(auto from_mapped : mod_map[from])
|
||||
for(auto to_mapped : mod_map[to])
|
||||
{
|
||||
if(from==from_mapped && to==to_mapped)
|
||||
if(from.IsSame(from_mapped) && to.IsSame(to_mapped))
|
||||
continue;
|
||||
|
||||
Transformation<3> trafo_mapped = ident.trafo;
|
||||
|
Loading…
Reference in New Issue
Block a user