Vector2Negate method

Vector2D Vector2Negate(
  1. Vector2D v
)

Implementation

Vector2D Vector2Negate(
  Vector2D v,
) => run(
  () => _debugLabels.Vector2Negate(v),
  () => v.negate(),
);