menu
three_dart package
documentation
three3d/math/vector2.dart
Vector2
subVectors method
subVectors method
dark_mode
light_mode
subVectors
method
Vector2
subVectors
(
Vector2
a
,
Vector2
b
)
Implementation
Vector2 subVectors(Vector2 a, Vector2 b) { x = a.x - b.x; y = a.y - b.y; return this; }
three_dart package
documentation
three3d/math/vector2
Vector2
subVectors method
Vector2 class