Package displayNoise

Examples of displayNoise.NoiseDisplay3D.display()


//        display2D(voronoiRidged);
    }

    public static void display3D(NoiseContainer values) {
        NoiseDisplay3D display = new NoiseDisplay3D(values);
        display.display();
    }

    public static void display2D(NoiseContainer values) {
        NoiseDisplay2D display = new NoiseDisplay2D(values);
        display.display();
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.