Unit1.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.GeomObjects.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include "GLS.VectorGeometry.hpp"
  18. #include "GLS.Polynomials.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TBevel *Bevel2;
  24. TBevel *Bevel1;
  25. TPaintBox *PaintBox1;
  26. TGLSceneViewer *GLSceneViewer1;
  27. TButton *BUCast;
  28. TPanel *Panel1;
  29. TLabel *Label1;
  30. TLabel *Label2;
  31. TLabel *Label3;
  32. TGLScene *GLScene1;
  33. TGLSphere *Sphere1;
  34. TGLDummyCube *DummyCube1;
  35. TGLTorus *Torus1;
  36. TGLPlane *Plane1;
  37. TGLCylinder *Cylinder1;
  38. TGLAnnulus *GLAnnulus1;
  39. TGLCube *GLCube1;
  40. TGLLightSource *GLLightSource1;
  41. TGLCamera *GLCamera1;
  42. TGLCadencer *GLCadencer1;
  43. void __fastcall BUCastClick(TObject *Sender);
  44. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  45. private: // User declarations
  46. public: // User declarations
  47. __fastcall TForm1(TComponent* Owner);
  48. };
  49. //---------------------------------------------------------------------------
  50. extern PACKAGE TForm1 *Form1;
  51. //---------------------------------------------------------------------------
  52. #endif