fPointsC.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //---------------------------------------------------------------------------
  2. #ifndef fPointsCH
  3. #define fPointsCH
  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.Objects.hpp"
  14. #include "GLS.Scene.hpp"
  15. #include "GLS.SceneViewer.hpp"
  16. //---------------------------------------------------------------------------
  17. class TForm1 : public TForm
  18. {
  19. __published: // IDE-managed Components
  20. TGLSceneViewer *GLSceneViewer1;
  21. TPanel *Panel1;
  22. TLabel *LabelFPS;
  23. TCheckBox *CBPointParams;
  24. TCheckBox *CBAnimate;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *DummyCube1;
  27. TGLPoints *GLPoints1;
  28. TGLPoints *GLPoints2;
  29. TGLCamera *GLCamera1;
  30. TGLCadencer *GLCadencer1;
  31. TTimer *Timer1;
  32. void __fastcall FormCreate(TObject *Sender);
  33. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  34. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  35. int X, int Y);
  36. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  37. int Y);
  38. void __fastcall CBAnimateClick(TObject *Sender);
  39. void __fastcall CBPointParamsClick(TObject *Sender);
  40. void __fastcall Timer1Timer(TObject *Sender);
  41. private: // User declarations
  42. int mx,my;
  43. public: // User declarations
  44. __fastcall TForm1(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern PACKAGE TForm1 *Form1;
  48. //---------------------------------------------------------------------------
  49. #endif