Unit1.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "GLS.Cadencer.hpp"
  10. #include "GLS.GeomObjects.hpp"
  11. #include "GLS.Objects.hpp"
  12. #include "GLS.Scene.hpp"
  13. #include "GLS.SceneViewer.hpp"
  14. #include "GLS.BaseClasses.hpp"
  15. #include "GLS.Coordinates.hpp"
  16. #include <Vcl.ExtCtrls.hpp>
  17. //---------------------------------------------------------------------------
  18. class TForm1 : public TForm
  19. {
  20. __published: // IDE-managed Components
  21. TGLSceneViewer *GLSceneViewer1;
  22. TGLScene *GLScene1;
  23. TGLLightSource *GLLightSource1;
  24. TGLDummyCube *BaseDummyCube;
  25. TGLSphere *OrbitingSphere1;
  26. TGLSphere *OrbitingSphere2;
  27. TGLDummyCube *DCCentral;
  28. TGLTorus *Torus1;
  29. TGLCone *Cone1;
  30. TGLSphere *CentralSphere;
  31. TGLCamera *GLCamera1;
  32. TGLCadencer *GLCadencer1;
  33. TPanel *Panel1;
  34. TLabel *Label1;
  35. TLabel *Label2;
  36. TRadioButton *RBSTC;
  37. TRadioButton *RBTSC;
  38. TRadioButton *RBTCS;
  39. TLabel *Label3;
  40. TCheckBox *CBAdditive;
  41. TCheckBox *CBSorting;
  42. void __fastcall RBSTCClick(TObject *Sender);
  43. void __fastcall RBTSCClick(TObject *Sender);
  44. void __fastcall RBTCSClick(TObject *Sender);
  45. void __fastcall CBAdditiveClick(TObject *Sender);
  46. void __fastcall CBSortingClick(TObject *Sender);
  47. void __fastcall GLCadencer1Progress(TObject *Sender,
  48. const double deltaTime, const double newTime);
  49. private: // User declarations
  50. public: // User declarations
  51. __fastcall TForm1(TComponent* Owner);
  52. };
  53. //---------------------------------------------------------------------------
  54. extern PACKAGE TForm1 *Form1;
  55. //---------------------------------------------------------------------------
  56. #endif