Examples of faceMat()


Examples of mri.v3ds.Mesh3ds.faceMat()

       
        if (m.faceMats() > 0){
          //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){
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.