Package org.xith3d.scenegraph

Examples of org.xith3d.scenegraph.TriangleArray


               
            }
           
        }
       
        TriangleArray geom = new TriangleArray(vertexCount);
       
        geom.setCoordinates(0, coords);
        geom.setTextureCoordinates(0, 0, texCoords);
        geom.calculateFaceNormals();
       
        geom.setOptimization(Optimization.USE_DISPLAY_LISTS);
       
        terrainShape.setGeometry(geom);
       
        Appearance app = new Appearance();
        app.setMaterial(new Material());
View Full Code Here

TOP

Related Classes of org.xith3d.scenegraph.TriangleArray

Copyright © 2018 www.massapicom. 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.