Skip to content

Commit

Permalink
Workaround for dotnet/runtime#100404
Browse files Browse the repository at this point in the history
  • Loading branch information
TechPizzaDev committed Mar 28, 2024
1 parent f330516 commit 5f77c11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SharpBlaze/Matrix.h.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,9 @@ public readonly partial double GetDeterminant()
public readonly partial FloatPoint Map(FloatPoint point)
{
return new FloatPoint(
m[0] * Vector128.Create(point.X) + m[1] * Vector128.Create(point.Y) + m[2]);
m[0] * Vector128.Create(point.X, point.X) +
m[1] * Vector128.Create(point.Y, point.Y) +
m[2]);
}


Expand Down

0 comments on commit 5f77c11

Please sign in to comment.