Package com.ardor3d.scenegraph

Examples of com.ardor3d.scenegraph.Mesh.updateModelBound()


            final VertMap map = GeometryTool.minimizeVerts(polyMesh, _optimizeSettings);
            _dataCache.setMeshVertMap(polyMesh, map);
        }

        // update bounds
        polyMesh.updateModelBound();

        // return
        return polyMesh;
    }
View Full Code Here


        if (_optimizeMeshes) {
            final VertMap map = GeometryTool.minimizeVerts(triMesh, _optimizeSettings);
            _dataCache.setMeshVertMap(triMesh, map);
        }

        triMesh.updateModelBound();

        return triMesh;
    }

    public Line buildMeshLines(final Element colladaGeometry, final Element lines) {
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.