Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Min()
[1/2]
static void Microsoft.Xna.Framework.Vector2.Min
(
ref
Vector2
value1
,
ref
Vector2
value2
,
out
Vector2
result
)
inline
static
Definition at line
181
of file
Vector2.cs
.
182
{
183
result.X = ((value1.X < value2.X) ? value1.X : value2.
X
);
184
result.Y = ((value1.Y < value2.Y) ? value1.Y : value2.
Y
);
185
}
Microsoft.Xna.Framework.Vector2.X
float X
Definition
Vector2.cs:14
Microsoft.Xna.Framework.Vector2.Y
float Y
Definition
Vector2.cs:17
Microsoft
Xna
Framework
Vector2
Generated by
1.10.0