Ejemplo n.º 1
0
void BaseOT::printepoint(epoint *point)
{
	Big x, y;
	epoint_getxyz(point,x.getbig(),y.getbig(),NULL);
	cerr << "(" << x << ", " << y << ")" << endl;
}
Ejemplo n.º 2
0
void printepoint(epoint point)
{
	Big x, y;
	epoint_getxyz(&point,x.getbig(),y.getbig(),NULL);
	cout << "(" << x << ", " << y << ")" << endl;
}
Ejemplo n.º 3
0
void ECn::getxy(Big &x,Big &y) const
        {epoint_getxyz(p,x.getbig(),y.getbig(),NULL);}
Ejemplo n.º 4
0
void ECn::getxyz(Big &x,Big &y, Big &z) const
        {epoint_getxyz(p,x.getbig(),y.getbig(),z.getbig());}
Ejemplo n.º 5
0
void ECn::getx(Big &x) const
        {epoint_getxyz(p,x.getbig(),NULL,NULL);}