1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
#include <Geom_Surface.hxx>
//=======================================================================
//function : Surface
//purpose :
//=======================================================================
inline const Handle(Geom_Surface)& ShapeAnalysis_Surface::Surface() const
{
return mySurf;
}
//=======================================================================
//function : TrueAdaptor3d
//purpose :
//=======================================================================
inline const Handle(GeomAdaptor_HSurface)& ShapeAnalysis_Surface::TrueAdaptor3d() const
{
return myAdSur;
}
//=======================================================================
//function : Gap
//purpose :
//=======================================================================
inline Standard_Real ShapeAnalysis_Surface::Gap() const
{
return myGap;
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline gp_Pnt ShapeAnalysis_Surface::Value (const Standard_Real u,
const Standard_Real v)
{
return mySurf->Value ( u, v );
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline gp_Pnt ShapeAnalysis_Surface::Value(const gp_Pnt2d& p2d)
{
return mySurf->Value ( p2d.X(), p2d.Y() );
}
//=======================================================================
//function : Bounds
//purpose :
//=======================================================================
inline void ShapeAnalysis_Surface::Bounds (Standard_Real& ufirst,
Standard_Real& ulast,
Standard_Real& vfirst,
Standard_Real& vlast) const
{
ufirst = myUF;
ulast = myUL;
vfirst = myVF;
vlast = myVL;
}
//=======================================================================
//function : UCloseVal
//purpose :
//=======================================================================
inline Standard_Real ShapeAnalysis_Surface::UCloseVal() const
{
return myUCloseVal;
}
//=======================================================================
//function : VCloseVal
//purpose :
//=======================================================================
inline Standard_Real ShapeAnalysis_Surface::VCloseVal() const
{
return myVCloseVal;
}