Home
last modified time | relevance | path

Searched refs:vertexInfo (Results 1 – 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/util/
DTangentBinormalGenerator.java408 VertexInfo vertexInfo = vertexMap.get(j); in linkVertices() local
409 if (approxEqual(vertexInfo.position, position) && in linkVertices()
410 approxEqual(vertexInfo.normal, normal)) in linkVertices()
412 vertexInfo.indices.add(i); in linkVertices()
419 VertexInfo vertexInfo = new VertexInfo(position.clone(), normal.clone()); in linkVertices() local
420 vertexInfo.indices.add(i); in linkVertices()
421 vertexMap.add(vertexInfo); in linkVertices()
449 VertexInfo vertexInfo = vertexMap.get(k); in processTriangleData() local
451 givenNormal.set(vertexInfo.normal); in processTriangleData()
454 TriangleData firstTriangle = vertices[vertexInfo.indices.get(0)].triangles.get(0); in processTriangleData()
[all …]