Skip to content

Commit

Permalink
Merge pull request #44 from NicoKiaru/patch-1
Browse files Browse the repository at this point in the history
Fix RealViewsSimplifyUtils.java wrong argument order in ScaleAndTranslation constructor
  • Loading branch information
bogovicj authored Dec 8, 2023
2 parents f2a07b8 + 3bae9d8 commit a6466a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ else if ( isExclusiveScaleAndTranslation( affineGet ) )
s[ d ] = affineGet.get( d, d );
}

return new ScaleAndTranslation( t, s );
return new ScaleAndTranslation( s, t );

}
return ( AffineGet ) affineGet.copy();
Expand Down

0 comments on commit a6466a4

Please sign in to comment.