export many layers

- remark : wrong merge code ( dverged on two latptops .. ) possible loss
This commit is contained in:
philippe lhardy
2020-12-19 16:55:10 +01:00
parent b8cb7394cd
commit a70ead877a
6 changed files with 503 additions and 448 deletions

View File

@@ -13,6 +13,16 @@ extends Range
{
super();
}
/** sub layers **/
public LabyLayers(LabyLayers pLayers, Range pRange)
{
for ( int layer = pRange.getMin(); layer <= pRange.getMax(); layer ++)
{
addLabyModel(layer, pLayers.getLayer(layer));
}
}
public void addLabyModel(int z, LabyModel model)
{
updateBounds(z);