Implement an alternative way of structuring nodes.

This commit is contained in:
2018-01-04 16:43:51 +01:00
parent 5fc392ae1d
commit aa79287c25
3 changed files with 33 additions and 8 deletions

View File

@@ -94,7 +94,7 @@ static void updateVisualisers()
LayerVisualisation* visualisation = nullptr;
switch (layer.shape().size()) {
case 2:
visualisation = new FlatLayerVisualisation(layer);
visualisation = new FlatLayerVisualisation(layer, FlatLayerVisualisation::Ordering::SQUARE);
break;
case 4: