Skip to content
Snippets Groups Projects
Commit 00d3b7f0 authored by podlesny's avatar podlesny
Browse files

3D case not implemented

parent 846a30c8
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ void TriangleGeometry<ctype>::addWeakeningPatch(const Dune::ParameterTree& parse ...@@ -46,7 +46,7 @@ void TriangleGeometry<ctype>::addWeakeningPatch(const Dune::ParameterTree& parse
WeakeningRegion weakPatch; WeakeningRegion weakPatch;
#if MY_DIM == 3 // TODO: Does not work yet #if MY_DIM == 3 // TODO: Does not work yet
if (vertex0 != vertex1) { /*if (vertex0 != vertex1) {
weakPatch.vertices.resize(4); weakPatch.vertices.resize(4);
weakPatch.vertices[0] = weakPatch.vertices[2] = vertex0; weakPatch.vertices[0] = weakPatch.vertices[2] = vertex0;
weakPatch.vertices[1] = weakPatch.vertices[3] = vertex1; weakPatch.vertices[1] = weakPatch.vertices[3] = vertex1;
...@@ -66,7 +66,7 @@ void TriangleGeometry<ctype>::addWeakeningPatch(const Dune::ParameterTree& parse ...@@ -66,7 +66,7 @@ void TriangleGeometry<ctype>::addWeakeningPatch(const Dune::ParameterTree& parse
assert(false); assert(false);
} }
addWeakeningRegion(weakPatch); addWeakeningRegion(weakPatch);
} } */
#else #else
if (vertex0 != vertex1) { if (vertex0 != vertex1) {
weakPatch.vertices.resize(2); weakPatch.vertices.resize(2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment