fInvarianceC.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //---------------------------------------------------------------------------
  2. #ifndef fInvarianceCH
  3. #define fInvarianceCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.Imaging.jpeg.hpp>
  10. #include "GLS.BaseClasses.hpp"
  11. #include "GLS.Coordinates.hpp"
  12. #include "GLS.GeomObjects.hpp"
  13. #include "GLS.Material.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include "GLS.Utils.hpp"
  18. //---------------------------------------------------------------------------
  19. class TForm1 : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TGLSceneViewer *GLSceneViewer1;
  23. TGLScene *GLScene1;
  24. TGLDummyCube *DCCamera;
  25. TGLCamera *GLCamera;
  26. TGLPlane *PLGround;
  27. TGLCube *GLCube1;
  28. TGLLightSource *GLLightSource1;
  29. TGLDummyCube *DCPositionInvariant;
  30. TGLCylinder *GLCylinder1;
  31. TGLDummyCube *DCOrientationInvariant;
  32. TGLArrowLine *GLArrowLine1;
  33. TGLMaterialLibrary *GLMaterialLibrary;
  34. void __fastcall FormCreate(TObject *Sender);
  35. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  36. int Y);
  37. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  38. int X, int Y);
  39. private: // User declarations
  40. int mx, my;
  41. public: // User declarations
  42. __fastcall TForm1(TComponent* Owner);
  43. };
  44. //---------------------------------------------------------------------------
  45. extern PACKAGE TForm1 *Form1;
  46. //---------------------------------------------------------------------------
  47. #endif