Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Dot()

static float Microsoft.Xna.Framework.Gjk.Dot ( ref Vector3 a,
ref Vector3 b )
inlinestaticprivate

Definition at line 86 of file Gjk.cs.

87 {
88 return a.X * b.X + a.Y * b.Y + a.Z * b.Z;
89 }

Referenced by Microsoft.Xna.Framework.Gjk.UpdateDeterminant().