summaryrefslogtreecommitdiff
path: root/inc/ShapeUpgrade_EdgeDivide.lxx
blob: af376a20b1e5346829849757916c7fee93e7faf3 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// File:	ShapeUpgrade_EdgeDivide.lxx
// Created:	Wed May 24 17:35:49 2000
// Author:	data exchange team
//		<det@friendox>

//=======================================================================
//function : SetFace
//purpose  : 
//=======================================================================

inline void ShapeUpgrade_EdgeDivide::SetFace(const TopoDS_Face& F)
{
  myFace = F;
}

//=======================================================================
//function : HasCurve2d
//purpose  : 
//=======================================================================

inline Standard_Boolean ShapeUpgrade_EdgeDivide::HasCurve2d() const
{
  return myHasCurve2d;
}

//=======================================================================
//function : HasCurve3d
//purpose  : 
//=======================================================================

inline Standard_Boolean ShapeUpgrade_EdgeDivide::HasCurve3d() const
{
  return myHasCurve3d;
}

//=======================================================================
//function : Knots2d
//purpose  : 
//=======================================================================

inline Handle(TColStd_HSequenceOfReal) ShapeUpgrade_EdgeDivide::Knots2d() const
{
  return myKnots2d;
}

//=======================================================================
//function : Knots3d
//purpose  : 
//=======================================================================

inline Handle(TColStd_HSequenceOfReal) ShapeUpgrade_EdgeDivide::Knots3d() const
{
  return myKnots3d;
}