toCurve method

  1. @override
PallasPoint toCurve()
override

Implementation

@override
PallasPoint toCurve() {
  return PallasPoint(
    x: x,
    y: y,
    z: PallasFp.conditionalSelect(
      PallasFp.one(),
      PallasFp.zero(),
      isIdentity(),
    ),
  );
}