EVector2D constructor

EVector2D(
  1. double x,
  2. double y
)

Implementation

EVector2D(double x, double y) {
  this.x = x;
  this.y = y;
}