You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure why trait AffineCoordinates doesn't also have an fn y(&self) -> Self::FieldRepr similarly as for the x-coordinate. In particular given that's how it is stored in struct AffinePoint.
Would it be possible to also add such a method? Possibly as a provided method (and computed from x() and y_is_odd()). The AffinePoint implementation may explicitly implement it to avoid round-tripping.
The text was updated successfully, but these errors were encountered:
I'm not sure why
trait AffineCoordinates
doesn't also have anfn y(&self) -> Self::FieldRepr
similarly as for the x-coordinate. In particular given that's how it is stored instruct AffinePoint
.Would it be possible to also add such a method? Possibly as a provided method (and computed from
x()
andy_is_odd()
). TheAffinePoint
implementation may explicitly implement it to avoid round-tripping.The text was updated successfully, but these errors were encountered: