"Source: Text/Geometry/Crv.text";
"Line: 2654";
"Date: Thu May 12 11:26:16 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Crv.text, line: 2654
// Example: H121E16 ()
print "Example: H121E16";
ei := GetEchoInput();
SetEchoInput(true);
P<x,y,z> := ProjectiveSpace(Rationals(),2);
C := Curve(P,x^3 + y^3 + z^3);
p := C ! [1,-1,0];
IsFlex(C,p);
C1,phi := TranslationToInfinity(C,p);
phi(p);
C1;
SetEchoInput(ei);
