blob: a01ca57dcbea4e689779422c3cba946dae3ca5d2 (
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
|
//-- File: IntPatch_HInterTool.lxx
//-- Created: Fri Jul 2 13:19:22 1995
//-- Author: Laurent BUCHARD
//---Copyright: OPEN CASCADE 1995
inline Standard_Boolean IntPatch_HInterTool::SingularOnUMin (const Handle(Adaptor3d_HSurface)& )
{
return Standard_False;
}
inline Standard_Boolean IntPatch_HInterTool::SingularOnUMax (const Handle(Adaptor3d_HSurface)& )
{
return Standard_False;
}
inline Standard_Boolean IntPatch_HInterTool::SingularOnVMin (const Handle(Adaptor3d_HSurface)& )
{
return Standard_False;
}
inline Standard_Boolean IntPatch_HInterTool::SingularOnVMax (const Handle(Adaptor3d_HSurface)& )
{
return Standard_False;
}
|