fFeedbackC.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //---------------------------------------------------------------------------
  2. #ifndef fFeedbackCH
  3. #define fFeedbackCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.BaseClasses.hpp"
  10. #include "GLS.Coordinates.hpp"
  11. #include "GLS.Feedback.hpp"
  12. #include "GLS.Objects.hpp"
  13. #include "GLS.GeomObjects.hpp"
  14. #include "GLS.Scene.hpp"
  15. #include "GLS.VectorFileObjects.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include "GLS.Mesh.hpp"
  18. #include "GLS.Feedback.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TButton *Button1;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *GLDummyCube1;
  27. TGLCamera *GLCamera1;
  28. TGLLightSource *GLLightSource1;
  29. TGLFreeForm *GLFreeForm1;
  30. TGLFeedback *GLFeedback1;
  31. TGLDummyCube *MeshObject1;
  32. TGLCube *GLCube1;
  33. TGLDodecahedron *GLDodecahedron1;
  34. TGLDummyCube *MeshObject2;
  35. TGLSphere *GLSphere1;
  36. TGLMesh *GLMesh1;
  37. void __fastcall Button1Click(TObject *Sender);
  38. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  39. int X, int Y);
  40. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  41. int Y);
  42. private: // User declarations
  43. int mx, my;
  44. public: // User declarations
  45. __fastcall TForm1(TComponent* Owner);
  46. };
  47. //---------------------------------------------------------------------------
  48. extern PACKAGE TForm1 *Form1;
  49. //---------------------------------------------------------------------------
  50. #endif