"Source: Text/Geometry/Scheme.text";
"Line: 6660";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Scheme.text, line: 6660
// Example: H119E52 ()
print "Example: H119E52";
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);
