home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / olympus / ik32_15t / delphi2.shr / MATRIX.DPR < prev    next >
Encoding:
Text File  |  1996-08-01  |  950 b   |  40 lines

  1. {  Project Matrix.DPR Delphi 2.0 Demos
  2.  
  3.    Description:- Matrix.Dpr Project:-
  4.  
  5.    Demonstrates the use of:
  6.  
  7.    1) 'Soften'
  8.    2) 'Sharpen'
  9.    3) 'ExtractEdges'
  10.    4) 'Blur'
  11.    5) 'MatrixFilter'
  12.  
  13.    Date of Origin: 17/04/96
  14.    Original Author: Andrew Hutchison
  15.    Modification History:
  16.  
  17.    Date        Person                            Change
  18.    ----------------------------------------------------
  19.    17/04/96    A Hutchison                       Created
  20.  
  21.    (c) Copyright Media Architects Inc. 1996.
  22.    All rights reserved.   No part of this program may be
  23.    photocopied, reproduced, translated to another programming
  24.    language or transported to any computer system without the
  25.    prior written consent of Media Architects Inc.}
  26.  
  27. program Matrix;
  28.  
  29. uses
  30.   Forms,
  31.   UMatrix in 'UMatrix.pas' {Form1};
  32.  
  33. {$R *.RES}
  34.  
  35. begin
  36.   Application.Initialize;
  37.   Application.CreateForm(TForm1, Form1);
  38.   Application.Run;
  39. end.
  40.