-
-
Notifications
You must be signed in to change notification settings - Fork 15
fix(Mesh): add helpers to remove elements having same vertices #1182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Conversation
DEBUG( "Mobius strip detected" ); | ||
DEBUG( cur_polygon ); | ||
DEBUG( e ); | ||
SDEBUG( adj.value() ); | ||
SDEBUG( mesh_.polygon_barycenter( cur_polygon ) ); | ||
SDEBUG( | ||
mesh_.polygon_barycenter( adj->polygon_id ) ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logger::debug ?
template < typename Mesh, typename Builder > | ||
void remove_element_duplication( const Mesh& mesh, Builder& builder ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
template < typename Mesh, typename Builder > | |
void remove_element_duplication( const Mesh& mesh, Builder& builder ) | |
template < typename Mesh > | |
void remove_element_duplication( const Mesh& mesh, typename Mesh::Builder& builder ) |
} | ||
const auto element_vertices = | ||
accessor.element_vertices( element_id ); | ||
std::vector< geode::index_t > common_elements = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std::vector< geode::index_t > common_elements = | |
auto common_elements = |
} | ||
} | ||
} | ||
delete_elements( to_delete, builder ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Return the mapping between input mesh and output mesh ?
No description provided.