Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
f5fcc3ae
There was an error fetching the commit references. Please try again later.
Commit
f5fcc3ae
authored
7 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Cleaned up MeshStorageLayer
parent
caef48b3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/TNL/Meshes/MeshDetails/Mesh_impl.h
+0
-1
0 additions, 1 deletion
src/TNL/Meshes/MeshDetails/Mesh_impl.h
src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h
+0
-32
0 additions, 32 deletions
src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h
with
0 additions
and
33 deletions
src/TNL/Meshes/MeshDetails/Mesh_impl.h
+
0
−
1
View file @
f5fcc3ae
...
@@ -316,4 +316,3 @@ std::ostream& operator<<( std::ostream& str, const Mesh< MeshConfig, Device >& m
...
@@ -316,4 +316,3 @@ std::ostream& operator<<( std::ostream& str, const Mesh< MeshConfig, Device >& m
}
// namespace Meshes
}
// namespace Meshes
}
// namespace TNL
}
// namespace TNL
This diff is collapsed.
Click to expand it.
src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h
+
0
−
32
View file @
f5fcc3ae
...
@@ -400,38 +400,6 @@ public:
...
@@ -400,38 +400,6 @@ public:
}
}
GlobalIndexType
getVerticesCount
()
const
{
return
this
->
vertices
.
getSize
();
}
void
setVertex
(
const
GlobalIndexType
vertexIndex
,
const
VertexType
&
vertex
)
const
{
this
->
vertices
.
setElement
(
vertexIndex
,
vertex
);
}
VertexType
&
getVertex
(
const
GlobalIndexType
vertexIndex
)
{
return
this
->
vertices
[
vertexIndex
];
}
const
VertexType
&
getVertex
(
const
GlobalIndexType
vertexIndex
)
const
{
return
this
->
vertices
[
vertexIndex
];
}
void
setVertex
(
const
GlobalIndexType
vertexIndex
,
const
PointType
&
point
)
{
this
->
vertices
[
vertexIndex
].
setPoint
(
point
);
}
/****
* This is only for the completeness and compatibility
* with higher dimensions entities storage layers.
*/
void
setNumberOfEntities
(
DimensionTag
,
const
GlobalIndexType
&
entitiesCount
)
void
setNumberOfEntities
(
DimensionTag
,
const
GlobalIndexType
&
entitiesCount
)
{
{
this
->
vertices
.
setSize
(
entitiesCount
);
this
->
vertices
.
setSize
(
entitiesCount
);
...
...
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