Unit1.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ExtCtrls.hpp>
  10. #include "GLBaseClasses.hpp"
  11. #include "GLCadencer.hpp"
  12. #include "GLCoordinates.hpp"
  13. #include "GLCrossPlatform.hpp"
  14. #include "GLMultiProxy.hpp"
  15. #include "GLObjects.hpp"
  16. #include "GLParticles.hpp"
  17. #include "GLScene.hpp"
  18. #include "GLWin32Viewer.hpp"
  19. #include "GLTexture.hpp"
  20. #include "GLVectorgeometry.hpp"
  21. //---------------------------------------------------------------------------
  22. class TForm1 : public TForm
  23. {
  24. __published: // IDE-managed Components
  25. TGLSceneViewer *GLSceneViewer1;
  26. TPanel *Panel1;
  27. TLabel *LabelFPS;
  28. TRadioButton *RBUseLODs;
  29. TRadioButton *RBHighRes;
  30. TCheckBox *CBColorize;
  31. TRadioButton *RBLowRes;
  32. TGLScene *GLScene;
  33. TGLDummyCube *DCTarget;
  34. TGLParticles *GLParticles;
  35. TGLMultiProxy *MPSphere;
  36. TGLDummyCube *DCReferences;
  37. TGLSphere *SPHighRes;
  38. TGLSphere *SPMedRes;
  39. TGLSphere *SPLowRes;
  40. TGLLightSource *GLLightSource1;
  41. TGLCamera *GLCamera;
  42. TGLCadencer *GLCadencer;
  43. TTimer *Timer1;
  44. void __fastcall FormCreate(TObject *Sender);
  45. void __fastcall Timer1Timer(TObject *Sender);
  46. void __fastcall RBUseLODsClick(TObject *Sender);
  47. void __fastcall MPSphereProgress(TObject *Sender, const double deltaTime, const double newTime);
  48. private: // User declarations
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TForm1 *Form1;
  54. //---------------------------------------------------------------------------
  55. #endif