getAdd method

EVector2D getAdd(
  1. EVector2D vct
)

Implementation

EVector2D getAdd(EVector2D vct) {
  return EVector2D(x + vct.x, y + vct.y);
}