menu
tremble package
documentation
vec2.dart
Vec2
max static method
max static method
dark_mode
light_mode
max
static method
Vec2
max
(
Vec2
a
,
Vec2
b
)
Implementation
static Vec2 max(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
max static method
Vec2 class