/
MikeLight
/
Lab
Обзор
Документация
Войти
/
MikeLight
/
Lab
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
lab1/fBase.h
39 строк
1 KB
MikeLight
upload files
06 окт 2025, 14:06
06 окт 2025, 14:06
29d56bd
Код
Авторство
О чём код?
//--------------------------------------------------------------------------- #ifndef fBaseH #define fBaseH //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <Vcl.Controls.hpp> #include <Vcl.StdCtrls.hpp> #include <Vcl.Forms.hpp> #include "GLS.BaseClasses.hpp" #include "GLS.Scene.hpp" #include "GLS.SceneViewer.hpp" #include "GLS.Coordinates.hpp" #include "GLS.Objects.hpp" #include "GLS.GeomObjects.hpp" #include "GLS.Mirror.hpp" //--------------------------------------------------------------------------- class TFormBase : public TForm { __published: // IDE-managed Components TGLScene *GLScene1; TGLSceneViewer *GLSceneViewer1; TGLLightSource *GLLightSource1; TGLSuperellipsoid *GLSuperellipsoid1; TGLSphere *GLSphere1; TGLCamera *GLCamera1; TGLCone *GLCone1; TGLCube *GLCube1; TGLDisk *GLDisk1; TGLCylinder *GLCylinder1; TGLMirror *GLMirror1; private: // User declarations public: // User declarations __fastcall TFormBase(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TFormBase *FormBase; //--------------------------------------------------------------------------- #endif