Examples of faceIndexes()


Examples of mri.v3ds.FaceMat3ds.faceIndexes()

          //List face Materials  //TODO USE LOGGERS!!
          logger.debug("  Num Face-Materials: " + m.faceMats() );
          for( int n = 0; n < m.faceMats(); n++ ){
            FaceMat3ds fmat = m.faceMat( n );
            logger.debug("    FaceMat ID: "     + fmat.matIndex() );
            logger.debug("    FaceMat indices: "   + fmat.faceIndexes());
           
            int[] faceIndicesForMaterial = fmat.faceIndex();
            if (faceIndicesForMaterial.length <= 0){
              continue;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.