Unit1.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 "GLS.BaseClasses.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.Extrusion.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.VectorGeometry.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "GLS.Spline.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TCheckBox *CBSpline;
  25. TCheckBox *CBFat;
  26. TPanel *PanelFPS;
  27. TGLScene *GLScene1;
  28. TGLLightSource *GLLightSource1;
  29. TGLPipe *Pipe1;
  30. TGLDummyCube *DummyCube1;
  31. TGLCamera *GLCamera1;
  32. TGLCadencer *GLCadencer1;
  33. TTimer *Timer1;
  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 Timer1Timer(TObject *Sender);
  39. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  40. void __fastcall CBSplineClick(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