add method

void add(
  1. EVector2D vct
)

Implementation

void add(EVector2D vct) {
  x += vct.x;
  y += vct.y;
}