secp256k1GeSetXy static method

void secp256k1GeSetXy(
  1. Secp256k1Ge r,
  2. Secp256k1Fe x,
  3. Secp256k1Fe y
)

Implementation

static void secp256k1GeSetXy(Secp256k1Ge r, Secp256k1Fe x, Secp256k1Fe y) {
  r.infinity = 0;
  r.x = x.clone();
  r.y = y.clone();
}