Struct lambdaworks_math::elliptic_curve::point::ProjectivePoint
source · pub struct ProjectivePoint<E: IsEllipticCurve> {
pub value: [FieldElement<E::BaseField>; 3],
}
Expand description
Represents an elliptic curve point using the projective short Weierstrass form:
y^2 * z = x^3 + a * x * z^2 + b * z^3,
where x
, y
and z
variables are field elements.
Fields§
§value: [FieldElement<E::BaseField>; 3]
Implementations§
source§impl<E: IsEllipticCurve> ProjectivePoint<E>
impl<E: IsEllipticCurve> ProjectivePoint<E>
sourcepub const fn new(value: [FieldElement<E::BaseField>; 3]) -> Self
pub const fn new(value: [FieldElement<E::BaseField>; 3]) -> Self
Creates an elliptic curve point giving the projective [x: y: z] coordinates.
sourcepub fn x(&self) -> &FieldElement<E::BaseField>
pub fn x(&self) -> &FieldElement<E::BaseField>
Returns the x
coordinate of the point.
sourcepub fn y(&self) -> &FieldElement<E::BaseField>
pub fn y(&self) -> &FieldElement<E::BaseField>
Returns the y
coordinate of the point.
sourcepub fn z(&self) -> &FieldElement<E::BaseField>
pub fn z(&self) -> &FieldElement<E::BaseField>
Returns the z
coordinate of the point.
sourcepub fn coordinates(&self) -> &[FieldElement<E::BaseField>; 3]
pub fn coordinates(&self) -> &[FieldElement<E::BaseField>; 3]
Returns a tuple [x, y, z] with the coordinates of the point.
Trait Implementations§
source§impl<E: Clone + IsEllipticCurve> Clone for ProjectivePoint<E>
impl<E: Clone + IsEllipticCurve> Clone for ProjectivePoint<E>
source§fn clone(&self) -> ProjectivePoint<E>
fn clone(&self) -> ProjectivePoint<E>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<E: Debug + IsEllipticCurve> Debug for ProjectivePoint<E>
impl<E: Debug + IsEllipticCurve> Debug for ProjectivePoint<E>
source§impl<E: IsEllipticCurve> PartialEq for ProjectivePoint<E>
impl<E: IsEllipticCurve> PartialEq for ProjectivePoint<E>
impl<E: IsEllipticCurve> Eq for ProjectivePoint<E>
Auto Trait Implementations§
impl<E> Freeze for ProjectivePoint<E>
impl<E> RefUnwindSafe for ProjectivePoint<E>
impl<E> Send for ProjectivePoint<E>
impl<E> Sync for ProjectivePoint<E>
impl<E> Unpin for ProjectivePoint<E>
impl<E> UnwindSafe for ProjectivePoint<E>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more