Examples of SphereFunction


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
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.