File indexing completed on 2026-05-22 08:29:03
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _BRep_PointsOnSurface_HeaderFile
0018 #define _BRep_PointsOnSurface_HeaderFile
0019
0020 #include <Standard.hxx>
0021
0022 #include <BRep_PointRepresentation.hxx>
0023 #include <Standard_Real.hxx>
0024 class Geom_Surface;
0025 class TopLoc_Location;
0026
0027 class BRep_PointsOnSurface;
0028 DEFINE_STANDARD_HANDLE(BRep_PointsOnSurface, BRep_PointRepresentation)
0029
0030
0031 class BRep_PointsOnSurface : public BRep_PointRepresentation
0032 {
0033
0034 public:
0035 Standard_EXPORT virtual const Handle(Geom_Surface)& Surface() const Standard_OVERRIDE;
0036
0037 Standard_EXPORT virtual void Surface(const Handle(Geom_Surface)& S) Standard_OVERRIDE;
0038
0039
0040 Standard_EXPORT virtual void DumpJson(Standard_OStream& theOStream,
0041 Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0042
0043 DEFINE_STANDARD_RTTIEXT(BRep_PointsOnSurface, BRep_PointRepresentation)
0044
0045 protected:
0046 Standard_EXPORT BRep_PointsOnSurface(const Standard_Real P,
0047 const Handle(Geom_Surface)& S,
0048 const TopLoc_Location& L);
0049
0050 private:
0051 Handle(Geom_Surface) mySurface;
0052 };
0053
0054 #endif