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

◆ Dot()

static float System.Numerics.Plane.Dot ( Plane plane,
Vector4 value )
inlinestatic

Definition at line 59 of file Plane.cs.

60 {
61 return plane.Normal.X * value.X + plane.Normal.Y * value.Y + plane.Normal.Z * value.Z + plane.D * value.W;
62 }

References System.value.