fSplinesC.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //---------------------------------------------------------------------------
  2. #ifndef fSplinesCH
  3. #define fSplinesCH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "GLS.Scene.hpp"
  10. #include "GLS.SceneViewer.hpp"
  11. #include "GLS.Objects.hpp"
  12. #include "GLS.BaseClasses.hpp"
  13. #include "GLS.Coordinates.hpp"
  14. //---------------------------------------------------------------------------
  15. class TForm1:public TForm
  16. {
  17. __published: // IDE-managed Components
  18. TGLScene * GLScene1;
  19. TGLSceneViewer *GLSceneViewer1;
  20. TGLCamera *GLCamera1;
  21. TGLLines *GLLines1;
  22. TGLLightSource *GLLightSource1;
  23. void __fastcall GLSceneViewer1MouseDown(TObject * Sender, TMouseButton Button,
  24. TShiftState Shift, int X, int Y);
  25. void __fastcall GLSceneViewer1MouseMove(TObject * Sender, TShiftState Shift,
  26. int X, int Y);
  27. private: // User declarations
  28. public: // User declarations
  29. __fastcall TForm1(TComponent * Owner);
  30. void __fastcall MoveCenterNodeTo(int x, int y);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif