Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Min()
[1/2]
static void Microsoft.Xna.Framework.Vector3.Min
(
ref
Vector3
value1
,
ref
Vector3
value2
,
out
Vector3
result
)
inline
static
Definition at line
250
of file
Vector3.cs
.
251
{
252
result.X = ((value1.X < value2.X) ? value1.X : value2.
X
);
253
result.Y = ((value1.Y < value2.Y) ? value1.Y : value2.
Y
);
254
result.Z = ((value1.Z < value2.Z) ? value1.Z : value2.
Z
);
255
}
Microsoft.Xna.Framework.Vector3.Y
float Y
Definition
Vector3.cs:17
Microsoft.Xna.Framework.Vector3.Z
float Z
Definition
Vector3.cs:20
Microsoft.Xna.Framework.Vector3.X
float X
Definition
Vector3.cs:14
Microsoft
Xna
Framework
Vector3
Generated by
1.10.0