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