Searched refs:nextFace (Results 1 – 2 of 2) sorted by relevance
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/ |
D | StripInfo.java | 174 FaceInfo nextFace = Stripifier.findOtherFace(edgeInfos, nv0, nv1, m_startInfo.m_startFace); in build() local 175 while (nextFace != null && !isMarked(nextFace)) in build() 179 int testnv1 = Stripifier.getNextIndex(scratchIndices, nextFace); in build() 181 FaceInfo nextNextFace = Stripifier.findOtherFace(edgeInfos, testnv0, testnv1, nextFace); in build() 186 FaceInfo testNextFace = Stripifier.findOtherFace(edgeInfos, nv0, testnv1, nextFace); in build() 207 forwardFaces.add(nextFace); in build() 209 markTriangle(nextFace); in build() 220 nextFace = Stripifier.findOtherFace(edgeInfos, nv0, nv1, nextFace); in build() 239 nextFace = Stripifier.findOtherFace(edgeInfos, nv0, nv1, m_startInfo.m_startFace); in build() 240 while (nextFace != null && !isMarked(nextFace)) in build() [all …]
|
D | Stripifier.java | 945 FaceInfo nextFace = findGoodResetPoint(allFaceInfos, in findAllStrips() local 947 if (nextFace == null) { in findAllStrips() 953 else if (resetPoints.contains(nextFace)) { in findAllStrips() 958 resetPoints.add(nextFace); in findAllStrips() 964 EdgeInfo edge01 = findEdgeInfo(allEdgeInfos, nextFace.m_v0, in findAllStrips() 965 nextFace.m_v1); in findAllStrips() 966 StripInfo strip01 = new StripInfo(new StripStartInfo(nextFace, in findAllStrips() 971 EdgeInfo edge10 = findEdgeInfo(allEdgeInfos, nextFace.m_v0, in findAllStrips() 972 nextFace.m_v1); in findAllStrips() 973 StripInfo strip10 = new StripInfo(new StripStartInfo(nextFace, in findAllStrips() [all …]
|