@@ -1467,7 +1467,7 @@ private void cutByPlaneXY(Vector3d planePosition, double error) {
1467
1467
}
1468
1468
1469
1469
}
1470
- log .info ("[Tile][PhotoRealistic ][cut][cutByPlaneXY] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1470
+ log .info ("[Tile][Photogrammetry ][cut][cutByPlaneXY] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1471
1471
}
1472
1472
1473
1473
private void cutByPlaneXZ (Vector3d planePosition , double error ) {
@@ -1487,7 +1487,7 @@ private void cutByPlaneXZ(Vector3d planePosition, double error) {
1487
1487
hedgesCutCount ++;
1488
1488
}
1489
1489
}
1490
- log .info ("[Tile][PhotoRealistic ][cut][cutByPlaneXZ] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1490
+ log .info ("[Tile][Photogrammetry ][cut][cutByPlaneXZ] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1491
1491
}
1492
1492
1493
1493
private void cutByPlaneYZ (Vector3d planePosition , double error ) {
@@ -1507,7 +1507,7 @@ private void cutByPlaneYZ(Vector3d planePosition, double error) {
1507
1507
hedgesCutCount ++;
1508
1508
}
1509
1509
}
1510
- log .info ("[Tile][PhotoRealistic ][cut][cutByPlaneYZ] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1510
+ log .info ("[Tile][Photogrammetry ][cut][cutByPlaneYZ] hedgesCount = " + hedgesCount + " , hedgesCutCount = " + hedgesCutCount );
1511
1511
}
1512
1512
1513
1513
public boolean checkHalfEdgesFaces () {
@@ -2822,7 +2822,7 @@ public void scissorTextures_test(GaiaMaterial material) {
2822
2822
int imageType = existPngTextures ? BufferedImage .TYPE_INT_ARGB : BufferedImage .TYPE_INT_RGB ;
2823
2823
2824
2824
GaiaTexture textureAtlas = new GaiaTexture ();
2825
- log .info ("[Tile][PhotoRealistic ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
2825
+ log .info ("[Tile][Photogrammetry ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
2826
2826
textureAtlas .createImage (maxWidth , maxHeight , imageType );
2827
2827
// fill the textureAtlas with fuchia color
2828
2828
// Color fuchiaColor = new Color(255, 255, 0);
@@ -3217,7 +3217,7 @@ public void scissorTextures(GaiaMaterial material) {
3217
3217
int imageType = existPngTextures ? BufferedImage .TYPE_INT_ARGB : BufferedImage .TYPE_INT_RGB ;
3218
3218
3219
3219
GaiaTexture textureAtlas = new GaiaTexture ();
3220
- log .info ("[Tile][PhotoRealistic ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
3220
+ log .info ("[Tile][Photogrammetry ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
3221
3221
textureAtlas .createImage (maxWidth , maxHeight , imageType );
3222
3222
// fill the textureAtlas with fuchia color
3223
3223
// Color fuchiaColor = new Color(255, 255, 0);
@@ -3580,7 +3580,7 @@ public void scissorTexturesByMotherScene(GaiaMaterial material, GaiaMaterial mot
3580
3580
int imageType = existPngTextures ? BufferedImage .TYPE_INT_ARGB : BufferedImage .TYPE_INT_RGB ;
3581
3581
3582
3582
GaiaTexture textureAtlas = new GaiaTexture ();
3583
- log .info ("[Tile][PhotoRealistic ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
3583
+ log .info ("[Tile][Photogrammetry ][Atlas] Atlas maxWidth : " + maxWidth + " , maxHeight : " + maxHeight );
3584
3584
textureAtlas .createImage (maxWidth , maxHeight , imageType );
3585
3585
// fill the textureAtlas with fuchia color
3586
3586
//Color fuchiaColor = new Color(255, 255, 0);
@@ -3737,14 +3737,14 @@ private void doTextureAtlasProcess(List<GaiaTextureScissorData> textureScissorDa
3737
3737
// here calculates the batchedBoundaries of each textureScissorData
3738
3738
//*********************************************************************
3739
3739
int textureScissorDatasCount = textureScissorDates .size ();
3740
- log .info ("[Tile][PhotoRealistic ][Atlas] doTextureAtlasProcess() : textureScissorDatasCount = " + textureScissorDatasCount );
3740
+ log .info ("[Tile][Photogrammetry ][Atlas] doTextureAtlasProcess() : textureScissorDatasCount = " + textureScissorDatasCount );
3741
3741
3742
3742
GillotinePacker gillotinePacker = new GillotinePacker ();
3743
3743
3744
3744
for (int i = 0 ; i < textureScissorDatasCount ; i ++) {
3745
3745
GaiaTextureScissorData textureScissorData = textureScissorDates .get (i );
3746
3746
if (!gillotinePacker .insert (textureScissorData )) {
3747
- log .info ("[Tile][PhotoRealistic ][Atlas] doTextureAtlasProcess() : gillotinePacker.insert() failed." );
3747
+ log .info ("[Tile][Photogrammetry ][Atlas] doTextureAtlasProcess() : gillotinePacker.insert() failed." );
3748
3748
}
3749
3749
}
3750
3750
}
0 commit comments