/
stud_22-365
/
GLXEngine
Обзор
Документация
Войти
/
stud_22-365
/
GLXEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/Demos/rendering/multiproxy/fMultiproxyC.h
59 строк
2 KB
glscene
Updated v.2.5
15 окт 2024, 12:20
15 окт 2024, 12:20
fc371f2
Код
Авторство
О чём код?
//--------------------------------------------------------------------------- #ifndef fMultiproxyCH #define fMultiproxyCH //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <Vcl.Controls.hpp> #include <Vcl.StdCtrls.hpp> #include <Vcl.Forms.hpp> #include <Vcl.ExtCtrls.hpp> #include "GLS.BaseClasses.hpp" #include "GLS.Cadencer.hpp" #include "GLS.Coordinates.hpp" #include "GLS.MultiProxy.hpp" #include "GLS.Objects.hpp" #include "GLS.Particles.hpp" #include "GLS.Scene.hpp" #include "GLS.SceneViewer.hpp" #include "GLS.Texture.hpp" #include "Stage.VectorGeometry.hpp" //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TGLSceneViewer *GLSceneViewer1; TPanel *Panel1; TLabel *LabelFPS; TRadioButton *RBUseLODs; TRadioButton *RBHighRes; TCheckBox *CBColorize; TRadioButton *RBLowRes; TGLScene *GLScene; TGLDummyCube *DCTarget; TGLParticles *GLParticles; TGLMultiProxy *MPSphere; TGLDummyCube *DCReferences; TGLSphere *SPHighRes; TGLSphere *SPMedRes; TGLSphere *SPLowRes; TGLLightSource *GLLightSource1; TGLCamera *GLCamera; TGLCadencer *GLCadencer; TTimer *Timer1; void __fastcall FormCreate(TObject *Sender); void __fastcall Timer1Timer(TObject *Sender); void __fastcall RBUseLODsClick(TObject *Sender); void __fastcall MPSphereProgress(TObject *Sender, const double deltaTime, const double newTime); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif