"Source: Text/Geometry/Scheme.text";
"Line: 6706";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/Scheme.text, line: 6706
// Example: H122E52 ()
print "Example: H122E52";
ei := GetEchoInput();
SetEchoInput(true);
A<u,v> := AffineSpace(Rationals(),2);
Translation(A,A![1,2]);
P<x,y,z> := ProjectiveSpace(Integers(),2);
p := P ! [3,2,1];
f := Translation(P,p);
f;
f(p);
p := P ! [0,1,0];
f := Translation(P,p);
f(p);
f;
SetEchoInput(ei);
