View Source Tezex.Crypto.Point (tezex v3.0.1)
Holds point data. Is usually handled internally by the library and serves only as detailed information to the end-user.
Parameters:
:x
[non_neg_integer/0
]: first point coordinate;:y
[non_neg_integer/0
]: first point coordinate;:z
[non_neg_integer/0
]: first point coordinate (used only in Jacobian coordinates);
Summary
Types
@type t() :: %Tezex.Crypto.Point{ x: non_neg_integer(), y: non_neg_integer(), z: non_neg_integer() }