selectInto method

void selectInto(
  1. projCached dest,
  2. int x
)

Given odd x with 0 < x < 2^4, return x*Q (in variable time).

Implementation

void selectInto(projCached dest, int x) {
  dest.copyFrom(points[(x / 2).floor()]);
}