Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:03:05

0001 // Created on: 1993-07-06
0002 // Created by: Remi LEQUETTE
0003 // Copyright (c) 1993-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _BRep_CurveOn2Surfaces_HeaderFile
0018 #define _BRep_CurveOn2Surfaces_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 
0022 #include <BRep_CurveRepresentation.hxx>
0023 #include <Standard_Real.hxx>
0024 class Geom_Surface;
0025 class gp_Pnt;
0026 
0027 
0028 class BRep_CurveOn2Surfaces;
0029 DEFINE_STANDARD_HANDLE(BRep_CurveOn2Surfaces, BRep_CurveRepresentation)
0030 
0031 //! Defines a continuity between two surfaces.
0032 class BRep_CurveOn2Surfaces : public BRep_CurveRepresentation
0033 {
0034 
0035 public:
0036 
0037   
0038   Standard_EXPORT BRep_CurveOn2Surfaces(const Handle(Geom_Surface)& S1, const Handle(Geom_Surface)& S2, const TopLoc_Location& L1, const TopLoc_Location& L2, const GeomAbs_Shape C);
0039   
0040   //! Returns True.
0041   Standard_EXPORT virtual Standard_Boolean IsRegularity() const Standard_OVERRIDE;
0042   
0043   //! A curve on two surfaces (continuity).
0044   Standard_EXPORT virtual Standard_Boolean IsRegularity (const Handle(Geom_Surface)& S1, const Handle(Geom_Surface)& S2, const TopLoc_Location& L1, const TopLoc_Location& L2) const Standard_OVERRIDE;
0045   
0046   //! Raises an error.
0047   Standard_EXPORT void D0 (const Standard_Real U, gp_Pnt& P) const;
0048   
0049   Standard_EXPORT virtual const Handle(Geom_Surface)& Surface() const Standard_OVERRIDE;
0050   
0051   Standard_EXPORT virtual const Handle(Geom_Surface)& Surface2() const Standard_OVERRIDE;
0052   
0053   Standard_EXPORT virtual const TopLoc_Location& Location2() const Standard_OVERRIDE;
0054   
0055   Standard_EXPORT virtual const GeomAbs_Shape& Continuity() const Standard_OVERRIDE;
0056   
0057   Standard_EXPORT virtual void Continuity (const GeomAbs_Shape C) Standard_OVERRIDE;
0058   
0059   //! Return a copy of this representation.
0060   Standard_EXPORT Handle(BRep_CurveRepresentation) Copy() const Standard_OVERRIDE;
0061 
0062   //! Dumps the content of me into the stream
0063   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0064 
0065 
0066 
0067 
0068   DEFINE_STANDARD_RTTIEXT(BRep_CurveOn2Surfaces,BRep_CurveRepresentation)
0069 
0070 protected:
0071 
0072 
0073 
0074 
0075 private:
0076 
0077 
0078   Handle(Geom_Surface) mySurface;
0079   Handle(Geom_Surface) mySurface2;
0080   TopLoc_Location myLocation2;
0081   GeomAbs_Shape myContinuity;
0082 
0083 
0084 };
0085 
0086 
0087 
0088 
0089 
0090 
0091 
0092 #endif // _BRep_CurveOn2Surfaces_HeaderFile