We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f42d7b6 commit 18284d4Copy full SHA for 18284d4
source/DrawingCanvas.ixx
@@ -124,8 +124,8 @@ float GetDeterminant(_In_ DX_MATRIX_3X2F const& matrix)
124
D2D_POINT_2F TransformPoint(DX_MATRIX_3X2F const& matrix, D2D_POINT_2F point)
125
{
126
return {
127
- point.x * matrix.xx + point.x * matrix.yx + matrix.dx,
128
- point.y * matrix.yy + point.y * matrix.xy + matrix.dy
+ point.x * matrix.xx + point.y * matrix.yx + matrix.dx,
+ point.y * matrix.yy + point.x * matrix.xy + matrix.dy
129
};
130
}
131
0 commit comments