File indexing completed on 2025-01-18 10:03:53
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _HLRTest_Projector_HeaderFile
0018 #define _HLRTest_Projector_HeaderFile
0019
0020 #include <HLRAlgo_Projector.hxx>
0021 #include <Draw_Drawable3D.hxx>
0022 #include <Draw_Interpretor.hxx>
0023
0024 DEFINE_STANDARD_HANDLE(HLRTest_Projector, Draw_Drawable3D)
0025
0026
0027 class HLRTest_Projector : public Draw_Drawable3D
0028 {
0029 DEFINE_STANDARD_RTTIEXT(HLRTest_Projector, Draw_Drawable3D)
0030 Draw_Drawable3D_FACTORY
0031 public:
0032
0033 Standard_EXPORT HLRTest_Projector(const HLRAlgo_Projector& P);
0034
0035 const HLRAlgo_Projector& Projector() const { return myProjector; }
0036
0037
0038 Standard_EXPORT virtual void DrawOn (Draw_Display& dis) const Standard_OVERRIDE;
0039
0040
0041 Standard_EXPORT virtual Handle(Draw_Drawable3D) Copy() const Standard_OVERRIDE;
0042
0043
0044 Standard_EXPORT virtual void Dump (Standard_OStream& S) const Standard_OVERRIDE;
0045
0046
0047 Standard_EXPORT virtual void Save (Standard_OStream& theStream) const Standard_OVERRIDE;
0048
0049
0050
0051 Standard_EXPORT virtual void Whatis (Draw_Interpretor& I) const Standard_OVERRIDE;
0052
0053 private:
0054
0055 HLRAlgo_Projector myProjector;
0056
0057 };
0058
0059 #endif