61 FaceFaceContactList & contact)
66 GK::TriangulationDataStructurePtr gkSurface1 = surface1->m_triangulation;
67 GK::TriangulationDataStructurePtr gkSurface2 = surface2->m_triangulation;
70 GK::TriangulationDataStructurePtr surfaceA = gkSurface1;
71 GK::TriangulationDataStructurePtr surfaceB = gkSurface2;
101#ifndef NO_USER_WARNING
102#warning "Work around strange UniqueArray<Real3> reduction"
105 __normals[0] = normals[0].x;
106 __normals[1] = normals[0].y;
107 __normals[2] = normals[0].z;
108 __normals[3] = normals[1].x;
109 __normals[4] = normals[1].y;
110 __normals[5] = normals[1].z;
112 normals[0].x = __normals[0];
113 normals[0].y = __normals[1];
114 normals[0].z = __normals[2];
115 normals[1].x = __normals[3];
116 normals[1].y = __normals[4];
117 normals[1].z = __normals[5];
123 if (surfaceA->numberOfFaces() == 0)
126 typedef GK::SurfaceCorefinement::IntersectionIterator Iter;
127 typedef GK::SurfaceCorefinement::IntersectionHandle Handle;
128 long requested_info = GK::SurfaceCorefinement::NORMAL | GK::SurfaceCorefinement::CENTRE;
129#ifndef NO_USER_WARNING
130#warning "global plane computation disabled"
132 GK::SurfaceCorefinement s(surfaceA, surfaceB,
134 requested_info, options()->areaEpsilon());
136 const Integer voidIndex = s.indexVoid();
146 for (
Integer indexA = s.beginA(); indexA < s.endA(); ) {
147 ARCANE_ASSERT((indexA != voidIndex),(
"indexA cannot be voidIndex by documentation"));
148 Face faceA = face_arrayA[indexA];
154 bool canContinue =
false;
155 for(
Integer iA=0;iA<split_sizeA;++iA) {
156 jB[iA] = s.beginB(indexA+iA);
157 endB[iA] = s.endB(indexA+iA);
158 canContinue |= (jB[iA] != endB[iA]);
161 while (canContinue) {
164 for(
Integer iA=0;iA<split_sizeA;++iA) {
166 if (jB[iA] != endB[iA]) indexB = jB[iA]->indexB();
167 if (indexB != voidIndex) {
168 if (minIndexB == voidIndex) minIndexB = indexB;
169 else minIndexB =
math::min(minIndexB,indexB);
175 ConvertFace(
const Array<Face> & face_array,
const Integer voidIndex) : m_face_array(face_array), m_void_index(voidIndex) { }
177 if (index == m_void_index)
return Face();
178 else return m_face_array[index];
183 } convertFace(face_arrayB,voidIndex);
186 Face faceB = convertFace(minIndexB);
189 FaceFaceContact c(faceA,faceB);
193 for(
Integer iA=0;iA<split_sizeA;++iA) {
194 while (jB[iA] != endB[iA] and convertFace(jB[iA]->indexB()) == faceB) {
195 const Handle & handle = *jB[iA];
199 if (face_reorientA[indexA+iA])
204 if (not faceB.
null()) {
208 if (face_reorientB[jB[iA]->indexB()])
215 canContinue |= (jB[iA] != endB[iA]);
218 if (not faceB.
null())
223 indexA += split_sizeA;
227 Iter jB = s.beginB(voidIndex);
228 Iter endB = s.endB(voidIndex);
230 ARCANE_ASSERT((jB->indexB() != voidIndex),(
"By construction indexB cannot be voidIndex when indexA is voidIndex"));
231 Face faceB = face_arrayB[jB->indexB()];
234 FaceFaceContact c(
Face(),faceB);
237 while (jB != endB and face_arrayB[jB->indexB()] == faceB) {
238 const Handle & handle = *jB;
242 if (face_reorientB[jB->indexB()])
254 info() <<
"Co-refinement"
255 <<
" : maxDeviation = " << s.maxDeviation()
256 <<
" ; meanDeviation = " << s.meanDeviation()
257 <<
" ; connections = " << count;