source: CGBLisp/examples/parallelogram.macsyma@ 1

Last change on this file since 1 was 1, checked in by Marek Rychlik, 15 years ago

First import of a version circa 1997.

File size: 370 bytes
Line 
1if get('geometry,'version)=false then load(geometry);
2ginit();
3
4gpoints(A,B,C,D,M1,M2,P,Q,R); /* Declare points */
5garbitrary(A,B,C); /* Declare arbitrary points */
6
7/* Geometrical hypotheses */
8parallel(A,B,C,D);
9parallel(A,C,B,D);
10midpoint(M1,A,C);
11midpoint(M2,B,D);
12ghypot();
13
14/* Geometrical conclusions */
15identical(M1,M2);
16gconcl();
17
18/* Generate ideal */
19gideal();
Note: See TracBrowser for help on using the repository browser.