fMultiproxyC.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //---------------------------------------------------------------------------
  2. #ifndef fMultiproxyCH
  3. #define fMultiproxyCH
  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 "GLS.BaseClasses.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.MultiProxy.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Particles.hpp"
  16. #include "GLS.Scene.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "GLS.Texture.hpp"
  19. #include "GLS.VectorGeometry.hpp"
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TGLSceneViewer *GLSceneViewer1;
  25. TPanel *Panel1;
  26. TLabel *LabelFPS;
  27. TRadioButton *RBUseLODs;
  28. TRadioButton *RBHighRes;
  29. TCheckBox *CBColorize;
  30. TRadioButton *RBLowRes;
  31. TGLScene *GLScene;
  32. TGLDummyCube *DCTarget;
  33. TGLParticles *GLParticles;
  34. TGLMultiProxy *MPSphere;
  35. TGLDummyCube *DCReferences;
  36. TGLSphere *SPHighRes;
  37. TGLSphere *SPMedRes;
  38. TGLSphere *SPLowRes;
  39. TGLLightSource *GLLightSource1;
  40. TGLCamera *GLCamera;
  41. TGLCadencer *GLCadencer;
  42. TTimer *Timer1;
  43. void __fastcall FormCreate(TObject *Sender);
  44. void __fastcall Timer1Timer(TObject *Sender);
  45. void __fastcall RBUseLODsClick(TObject *Sender);
  46. void __fastcall MPSphereProgress(TObject *Sender, const double deltaTime, const double newTime);
  47. private: // User declarations
  48. public: // User declarations
  49. __fastcall TForm1(TComponent* Owner);
  50. };
  51. //---------------------------------------------------------------------------
  52. extern PACKAGE TForm1 *Form1;
  53. //---------------------------------------------------------------------------
  54. #endif