Package toxi.geom.mesh

Examples of toxi.geom.mesh.SphereFunction


    public Mesh3D toMesh(int res) {
        return toMesh(null, res);
    }

    public Mesh3D toMesh(Mesh3D mesh, int res) {
        SurfaceMeshBuilder builder = new SurfaceMeshBuilder(new SphereFunction(
                this));
        return builder.createMesh(mesh, res, 1);
    }
View Full Code Here

TOP

Related Classes of toxi.geom.mesh.SphereFunction

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.