Vector2Add method

Vector2D Vector2Add(
  1. Vector2D v1,
  2. Vector2D v2
)

Implementation

Vector2D Vector2Add(
  Vector2D v1,
  Vector2D v2,
) => run(
  () => _debugLabels.Vector2Add(v1, v2),
  () => v1.add(v2),
);