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