12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "GLS.Cadencer.hpp"
- #include "GLS.GeomObjects.hpp"
- #include "GLS.Objects.hpp"
- #include "GLS.Scene.hpp"
- #include "GLS.SceneViewer.hpp"
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Coordinates.hpp"
- #include <Vcl.ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TGLScene *GLScene1;
- TGLLightSource *GLLightSource1;
- TGLDummyCube *BaseDummyCube;
- TGLSphere *OrbitingSphere1;
- TGLSphere *OrbitingSphere2;
- TGLDummyCube *DCCentral;
- TGLTorus *Torus1;
- TGLCone *Cone1;
- TGLSphere *CentralSphere;
- TGLCamera *GLCamera1;
- TGLCadencer *GLCadencer1;
- TPanel *Panel1;
- TLabel *Label1;
- TLabel *Label2;
- TRadioButton *RBSTC;
- TRadioButton *RBTSC;
- TRadioButton *RBTCS;
- TLabel *Label3;
- TCheckBox *CBAdditive;
- TCheckBox *CBSorting;
- void __fastcall RBSTCClick(TObject *Sender);
- void __fastcall RBTSCClick(TObject *Sender);
- void __fastcall RBTCSClick(TObject *Sender);
- void __fastcall CBAdditiveClick(TObject *Sender);
- void __fastcall CBSortingClick(TObject *Sender);
- void __fastcall GLCadencer1Progress(TObject *Sender,
- const double deltaTime, const double newTime);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|