Skip to content

Commit

Permalink
Fix small bug in ShadingCorrectionTileClient
Browse files Browse the repository at this point in the history
  • Loading branch information
minnerbe committed Jan 19, 2025
1 parent 8c6f107 commit 7294451
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private void addShadingCorrectionToTileSpec(

// scale coordinates to [-1, 1] to evaluate the global model
layerModel.applyInPlace(transformedPoint);
matches.add(new PointMatch(new Point(tilePointNormalized), new Point(transformedPoint)));
matches.add(new PointMatch(new Point(tilePointNormalized), new Point(transformedPoint.clone())));
}

try {
Expand Down

0 comments on commit 7294451

Please sign in to comment.