Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator/()
[1/2]
static
Vector4
Microsoft.Xna.Framework.Vector4.operator/
(
Vector4
value1
,
float
divider
)
inline
static
Definition at line
990
of file
Vector4.cs
.
991
{
992
float
num = 1f / divider;
993
Vector4
result =
default
(
Vector4
);
994
result.X = value1.X * num;
995
result.Y = value1.Y * num;
996
result.Z = value1.Z * num;
997
result.W = value1.W * num;
998
return
result;
999
}
Microsoft.Xna.Framework.Vector4.Vector4
Vector4(float x, float y, float z, float w)
Definition
Vector4.cs:49
Microsoft
Xna
Framework
Vector4
Generated by
1.10.0