home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / misc / benchmarks / gc / CNoLfO / triangle.e < prev   
Encoding:
Text File  |  1999-06-05  |  160 b   |  17 lines

  1. class TRIANGLE
  2.  
  3. creation make
  4.  
  5. feature
  6.  
  7.    p1, p2, p3: POINT;
  8.  
  9.    make(vp1, vp2, vp3: POINT) is
  10.       do
  11.      p1 := vp1;
  12.      p2 := vp2;
  13.      p3 := vp3;
  14.       end;
  15.  
  16. end
  17.