blob: f313afe4917ac3d1861c5718c2974bf62a414d5d (
plain)
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
|
// File: BOPTools_SSIntersectionAttribute.lxx
// Created: Mon Mar 4 12:05:47 2002
// Author: Michael KLOKOV
// <mkk@kurox>
//=======================================================================
// function:Approximation
// purpose:
//=======================================================================
inline Standard_Boolean BOPTools_SSIntersectionAttribute::Approximation() const
{
return myApproximation;
}
//=======================================================================
// function:PCurveOnS1
// purpose:
//=======================================================================
inline Standard_Boolean BOPTools_SSIntersectionAttribute::PCurveOnS1() const
{
return myPCurve1;
}
//=======================================================================
// function:PCurveOnS2
// purpose:
//=======================================================================
inline Standard_Boolean BOPTools_SSIntersectionAttribute::PCurveOnS2() const
{
return myPCurve2;
}
|