menu
three_dart package
documentation
three3d/math/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_dart package
documentation
three3d/math/vector2
Vector2
max method
Vector2 class