You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
251 B
16 lines
251 B
2 years ago
|
function solve(){
|
||
|
cross();
|
||
|
|
||
|
cube = new Cube();
|
||
|
}
|
||
|
|
||
|
function cross(){
|
||
|
let whiteBricks = cube.bricks.filter(b => b.hasColor("#FFF"));
|
||
|
let main = whiteBricks.find(b => b.isFlat);
|
||
|
|
||
|
function doByColor(c){
|
||
|
|
||
|
}
|
||
|
|
||
|
doByColor("#00F");
|
||
|
}
|