menu
tremble package
documentation
vec2.dart
Vec2
min static method
min static method
dark_mode
light_mode
min
static method
Vec2
min
(
Vec2
a
,
Vec2
b
)
Implementation
static Vec2 min(Vec2 a, Vec2 b) { return Vec2( a.x < b.x ? a.x : b.x, a.y < b.y ? a.y : b.y, ); }
tremble package
documentation
vec2
Vec2
min static method
Vec2 class