Skip to content
Snippets Groups Projects
Commit 654feeea authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

formatting

parent 3beb46a2
Branches
Tags
No related merge requests found
...@@ -61,7 +61,7 @@ public class CatmaidImageLoader implements ViewerImgLoader< ARGBType, VolatileAR ...@@ -61,7 +61,7 @@ public class CatmaidImageLoader implements ViewerImgLoader< ARGBType, VolatileAR
resZ = Double.parseDouble( elem.getChildText( "resZ" ) ); resZ = Double.parseDouble( elem.getChildText( "resZ" ) );
urlFormat = elem.getChildText( "urlFormat" ); urlFormat = elem.getChildText( "urlFormat" );
tileWidth = Integer.parseInt( elem.getChildText( "tileWidth" ) ); tileWidth = Integer.parseInt( elem.getChildText( "tileWidth" ) );
tileHeight = Integer.parseInt( elem.getChildText( "tileHeight" ) ); tileHeight = Integer.parseInt( elem.getChildText( "tileHeight" ) );
...@@ -76,7 +76,6 @@ public class CatmaidImageLoader implements ViewerImgLoader< ARGBType, VolatileAR ...@@ -76,7 +76,6 @@ public class CatmaidImageLoader implements ViewerImgLoader< ARGBType, VolatileAR
blockDimensions = new int[ numScales ][]; blockDimensions = new int[ numScales ][];
for ( int l = 0; l < numScales; ++l ) for ( int l = 0; l < numScales; ++l )
{ {
mipmapResolutions[ l ] = new double[] { 1 << l, 1 << l, 1 }; mipmapResolutions[ l ] = new double[] { 1 << l, 1 << l, 1 };
imageDimensions[ l ] = new long[] { width >> l, height >> l, depth }; imageDimensions[ l ] = new long[] { width >> l, height >> l, depth };
blockDimensions[ l ] = new int[] { tileWidth, tileHeight, 1 }; blockDimensions[ l ] = new int[] { tileWidth, tileHeight, 1 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment