Back to project page wannabe.
The source code is released under:
MIT License
If you think the Android project wannabe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2013 Patrick Forhan. package wannabe; //from ww w.jav a 2 s .co m public class Voxel { public final Position position; public int color; public Voxel(int x, int y, int z, int color) { position = new Position(x, y, z); this.color = color; } }