//--------------------------------------------------------------------------- #ifndef fFeedbackCH #define fFeedbackCH //--------------------------------------------------------------------------- #include #include #include #include #include "GLS.BaseClasses.hpp" #include "GLS.Coordinates.hpp" #include "GLS.Feedback.hpp" #include "GLS.Objects.hpp" #include "GLS.GeomObjects.hpp" #include "GLS.Scene.hpp" #include "GLS.VectorFileObjects.hpp" #include "GLS.SceneViewer.hpp" #include "GLS.Mesh.hpp" #include "GLS.Feedback.hpp" //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TGLSceneViewer *GLSceneViewer1; TButton *Button1; TGLScene *GLScene1; TGLDummyCube *GLDummyCube1; TGLCamera *GLCamera1; TGLLightSource *GLLightSource1; TGLFreeForm *GLFreeForm1; TGLFeedback *GLFeedback1; TGLDummyCube *MeshObject1; TGLCube *GLCube1; TGLDodecahedron *GLDodecahedron1; TGLDummyCube *MeshObject2; TGLSphere *GLSphere1; TGLMesh *GLMesh1; void __fastcall Button1Click(TObject *Sender); void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y); void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X, int Y); private: // User declarations int mx, my; public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif