Package net.anzix.fsz.voxelworld.features.components

Examples of net.anzix.fsz.voxelworld.features.components.Noise


* @author csiga
*/
public class Cave extends BasicFeature {

    public Cave() {
        rockNoise = new Noise(3, 0.02, 1);
    }
View Full Code Here


* @author kovacsandras
*/
public class FlyingMountain extends BasicFeature {

    public FlyingMountain() {
        rockNoise = new Noise(3, 0.005, 2);
    }
View Full Code Here

public class HighTree extends BasicFeature {

    public HighTree(Vector3 center, double radius) {
        this.center = center;
        this.radius = radius;
        trunkNoise = new Noise(1, 0.5, 1);
    }
View Full Code Here

    }
    private Noise roughRockNoise;
    private Noise fineRockNoise;
   
    public LayerBasedTerrain() {
        fineRockNoise = new Noise(3, 0.1, 10);
        roughRockNoise = new Noise(3, 0.01, 1);
    }
View Full Code Here

            return true;
            //p.y == -1 || p.y == 0 || p.y == 1;
    }

    public RockyMountain() {
        rockNoise = new Noise(3, 0.01, 1);
        rockNoise2 = new Noise(3, 0.1, .5);
        rockFloor = new Floor(0,132);
        sandFloor = new Floor(-5,5);


        //testObject2 = new Sphere(new Vector3(120,30,120),30);
View Full Code Here

TOP

Related Classes of net.anzix.fsz.voxelworld.features.components.Noise

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.