menu
three_js_math package
documentation
vector/vector2.dart
Vector2
add2 method
add2 method
dark_mode
light_mode
add2
method
Vector2
add2
(
Vector
a
,
Vector
b
)
Implementation
Vector2 add2(Vector a, Vector b) { x = a.x + b.x; y = a.y + b.y; return this; }
three_js_math package
documentation
vector/vector2
Vector2
add2 method
Vector2 class