fcGLSViewer.cpp 999 B

1234567891011121314151617181920212223242526272829303132
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "fcGLSViewer.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma link "GLS.AsyncTimer"
  8. #pragma link "GLS.BaseClasses"
  9. #pragma link "GLS.Cadencer"
  10. #pragma link "GLS.Coordinates"
  11. #pragma link "GLS.Graph"
  12. #pragma link "GLS.Material"
  13. #pragma link "GLS.Objects"
  14. #pragma link "GLS.Scene"
  15. #pragma link "GLS.SceneViewer"
  16. #pragma link "GLS.SimpleNavigation"
  17. #pragma link "GLS.VectorFileObjects"
  18. #pragma resource "*.dfm"
  19. TFormViewer *FormViewer;
  20. //---------------------------------------------------------------------------
  21. __fastcall TFormViewer::TFormViewer(TComponent* Owner)
  22. : TForm(Owner)
  23. {
  24. }
  25. //---------------------------------------------------------------------------
  26. void __fastcall TFormViewer::tvSceneClick(TObject *Sender)
  27. {
  28. //
  29. }
  30. //---------------------------------------------------------------------------