1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// File: GeomAPI_IntSS.lxx
// Created: Tue Mar 14 10:50:04 1995
// Author: Jacques GOUSSARD
// <jag@bravox>
//=======================================================================
//function : GeomAPI_IntSS
//purpose :
//=======================================================================
inline GeomAPI_IntSS::GeomAPI_IntSS () {}
//=======================================================================
//function : GeomAPI_IntSS
//purpose :
//=======================================================================
inline GeomAPI_IntSS::GeomAPI_IntSS (const Handle(Geom_Surface)& S1,
const Handle(Geom_Surface)& S2,
const Standard_Real Tol) :
myIntersec(S1,S2,Tol,Standard_True)
{}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
inline void GeomAPI_IntSS::Perform(const Handle(Geom_Surface)& S1,
const Handle(Geom_Surface)& S2,
const Standard_Real Tol)
{
myIntersec.Perform(S1,S2,Tol,Standard_True);
}
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean GeomAPI_IntSS::IsDone () const
{
return myIntersec.IsDone();
}
//=======================================================================
//function : NbLines
//purpose :
//=======================================================================
inline Standard_Integer GeomAPI_IntSS::NbLines () const
{
return myIntersec.NbLines();
}
//=======================================================================
//function : Line
//purpose :
//=======================================================================
inline const Handle(Geom_Curve)&
GeomAPI_IntSS::Line(const Standard_Integer I) const
{
return myIntersec.Line(I);
}
|