Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
62b39377
Commit
62b39377
authored
5 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MeL] Remove unused MeshRevision::collapseNodes().
parent
8bcc88c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MeshLib/MeshEditing/MeshRevision.cpp
+0
-9
0 additions, 9 deletions
MeshLib/MeshEditing/MeshRevision.cpp
MeshLib/MeshEditing/MeshRevision.h
+0
-8
0 additions, 8 deletions
MeshLib/MeshEditing/MeshRevision.h
with
0 additions
and
17 deletions
MeshLib/MeshEditing/MeshRevision.cpp
+
0
−
9
View file @
62b39377
...
@@ -34,15 +34,6 @@ MeshRevision::MeshRevision(MeshLib::Mesh &mesh) :
...
@@ -34,15 +34,6 @@ MeshRevision::MeshRevision(MeshLib::Mesh &mesh) :
_mesh
(
mesh
)
_mesh
(
mesh
)
{}
{}
MeshLib
::
Mesh
*
MeshRevision
::
collapseNodes
(
const
std
::
string
&
new_mesh_name
,
double
eps
)
{
std
::
vector
<
MeshLib
::
Node
*>
new_nodes
(
this
->
constructNewNodesArray
(
this
->
collapseNodeIndices
(
eps
)));
std
::
vector
<
MeshLib
::
Element
*>
new_elements
(
MeshLib
::
copyElementVector
(
_mesh
.
getElements
(),
new_nodes
));
this
->
resetNodeIDs
();
return
new
MeshLib
::
Mesh
(
new_mesh_name
,
new_nodes
,
new_elements
,
_mesh
.
getProperties
());
}
unsigned
MeshRevision
::
getNumberOfCollapsableNodes
(
double
eps
)
const
unsigned
MeshRevision
::
getNumberOfCollapsableNodes
(
double
eps
)
const
{
{
std
::
vector
<
std
::
size_t
>
id_map
(
this
->
collapseNodeIndices
(
eps
));
std
::
vector
<
std
::
size_t
>
id_map
(
this
->
collapseNodeIndices
(
eps
));
...
...
This diff is collapsed.
Click to expand it.
MeshLib/MeshEditing/MeshRevision.h
+
0
−
8
View file @
62b39377
...
@@ -43,14 +43,6 @@ public:
...
@@ -43,14 +43,6 @@ public:
virtual
~
MeshRevision
()
=
default
;
virtual
~
MeshRevision
()
=
default
;
/**
* Collapsed all nodes with distance < eps but ignores elements
* (i.e. elements with collapsed nodes may result)
* This is implicitely called when calling simplifyMesh(), so it does not need to be
* called separately when using simplifyMesh().
*/
MeshLib
::
Mesh
*
collapseNodes
(
const
std
::
string
&
new_mesh_name
,
double
eps
);
/// Returns the number of potentially collapsable nodes
/// Returns the number of potentially collapsable nodes
unsigned
getNumberOfCollapsableNodes
(
double
eps
=
std
::
numeric_limits
<
double
>::
epsilon
())
const
;
unsigned
getNumberOfCollapsableNodes
(
double
eps
=
std
::
numeric_limits
<
double
>::
epsilon
())
const
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment