filter sphere

This commit is contained in:
Jesse Boyd
2019-06-29 00:16:12 +10:00
parent de4dcc0dd5
commit 2b0a310e0e
13 changed files with 148 additions and 216 deletions

View File

@ -7,6 +7,11 @@ public class CharBlocks implements IBlocks {
public final char[][] blocks;
public final Section[] sections;
public CharBlocks(CharBlocks other) {
this.blocks = other.blocks;
this.sections = other.sections;
}
public CharBlocks() {
blocks = new char[16][];
sections = new Section[16];