Searched defs:faceList (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
H A DOBJLoader.java388 protected Geometry createGeometry(ArrayList<Face> faceList, String matName) throws IOException{ argument
389 if (faceList.isEmpty())
393 Mesh mesh = constructMesh(faceList);
422 protected Mesh constructMesh(ArrayList<Face> faceList){ argument
429 ArrayList<Face> newFaces = new ArrayList<Face>(faceList.size());
430 for (int i = 0; i < faceList.size(); i++){
431 Face f = faceList.get(i);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DStripifier.java726 // faceList is an out parameter which will contain all faces which were
730 FaceInfoVec faceList) {
731 faceList.clear();
737 //strip is too small, add faces to faceList
773 faceList.add(tempFaceList.at(bestIndex));
729 removeSmallStrips(StripInfoVec allStrips, StripInfoVec allBigStrips, FaceInfoVec faceList) argument

Completed in 72 milliseconds