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

◆ Dot() [2/2]

float Microsoft.Xna.Framework.Plane.Dot ( Vector4 value)
inline

Definition at line 235 of file Plane.cs.

236 {
237 return Normal.X * value.X + Normal.Y * value.Y + Normal.Z * value.Z + D * value.W;
238 }

References Microsoft.Xna.Framework.Plane.D, and System.value.