OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextFace
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
StripInfo.java
174
FaceInfo
nextFace
= Stripifier.findOtherFace(edgeInfos, nv0, nv1, m_startInfo.m_startFace);
175
while (
nextFace
!= null && !isMarked(
nextFace
))
179
int testnv1 = Stripifier.getNextIndex(scratchIndices,
nextFace
);
181
FaceInfo nextNextFace = Stripifier.findOtherFace(edgeInfos, testnv0, testnv1,
nextFace
);
186
FaceInfo testNextFace = Stripifier.findOtherFace(edgeInfos, nv0, testnv1,
nextFace
);
207
forwardFaces.add(
nextFace
);
209
markTriangle(
nextFace
);
213
//nv1 = NvStripifier::GetNextIndex(scratchIndices,
nextFace
);
220
nextFace
= Stripifier.findOtherFace(edgeInfos, nv0, nv1, nextFace);
[
all
...]
Stripifier.java
945
FaceInfo
nextFace
= findGoodResetPoint(allFaceInfos,
947
if (
nextFace
== null) {
953
else if (resetPoints.contains(
nextFace
)) {
958
resetPoints.add(
nextFace
);
964
EdgeInfo edge01 = findEdgeInfo(allEdgeInfos,
nextFace
.m_v0,
965
nextFace
.m_v1);
966
StripInfo strip01 = new StripInfo(new StripStartInfo(
nextFace
,
971
EdgeInfo edge10 = findEdgeInfo(allEdgeInfos,
nextFace
.m_v0,
972
nextFace
.m_v1);
973
StripInfo strip10 = new StripInfo(new StripStartInfo(
nextFace
,
[
all
...]
Completed in 334 milliseconds