Examples of meshes()


Examples of mri.v3ds.Scene3ds.meshes()

        logger.debug("");
      }


      ///////// Go through all MESHES //////////////////////////
      for( int i=0; i<scene.meshes(); i++ ) {
        Mesh3ds m = scene.mesh( i );
       
        if (debug){
          int texMapType = m.texMapType();
          logger.debug("Texture coordinates provided: " + m.texCoords());
View Full Code Here

Examples of mri.v3ds.Scene3ds.meshes()

        XYZTrack3ds sc       = m.scaleTrack();
        //FIXME .track and key(i) werden nicht zur verf�gung gestellt?!? aber in javadoc
        */
       
        if (debug){
          logger.debug("->Processing mesh: "   + i + " of " + scene.meshes() + " Name: \"" + m.name() + "\"");
          logger.debug("  Num Faces: "       + m.faces());
          logger.debug("  Num Vertices: "     + m.vertices());
          logger.debug("  Num TextureCoordinates: " + m.texCoords());
          logger.debug("");
        }
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.