| 1234567891011121314151617181920212223 |
- (* GLSmoothNavigator Demo
- A demo that shows what all classes inside the GLSmoothNavigator.pas unit
- are capable of.
- Note: there are lines commented out. These were used to manually set mouse
- position (useful in some cases).
- Version history:
- 23/02/07 - DaStr - Initial version (contributed to GLScene)
- *)
- program SmoothNaviD;
- uses
- Forms,
- fSmoothNaviD in 'fSmoothNaviD.pas' {FormSmoothnavi};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TFormSmoothnavi, FormSmoothnavi);
- Application.Run;
- end.
|