Package rakama.worldtools.util

Examples of rakama.worldtools.util.CircularBuffer


        this.span = span;
        width = span * Chunk.width;
        length = span * Chunk.length;
        height = Chunk.height;

        queue = new CircularBuffer(width * length * height);
        cache = new LightCache(span, span);
        tempChunk = new TempChunk[span * span];

        for(int z = 0; z < span; z++)
            for(int x = 0; x < span; x++)
View Full Code Here

TOP

Related Classes of rakama.worldtools.util.CircularBuffer

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.