menu
three_js_math package
documentation
vector/vector2.dart
Vector2
max method
max method
dark_mode
light_mode
max
method
Vector2
max
(
Vector2
v
)
Implementation
Vector2 max(Vector2 v) { x = math.max(x, v.x); y = math.max(y, v.y); return this; }
three_js_math package
documentation
vector/vector2
Vector2
max method
Vector2 class