summaryrefslogtreecommitdiff
path: root/src/BOP/BOP_FaceInfo.cxx
blob: 3f6fac019b8a131ee7edd78b956fc70f99db7855 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// File:	BOP_EdgeInfo.cxx
// Created:	Mon Apr  9 10:29:58 2001
// Author:	Peter KURNEV
//		<pkv@irinox>


#include <BOP_FaceInfo.ixx>

//=======================================================================
// function: BOP_FaceInfo::BOP_FaceInfo
// purpose: 
//=======================================================================
  BOP_FaceInfo::BOP_FaceInfo() 
:
  myPassed(Standard_False),
  myAngle(0.)
{}

//=======================================================================
// function: SetFace
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetFace(const TopoDS_Face& aF)
{
  myFace=aF;
}
//=======================================================================
// function: Face
// purpose: 
//=======================================================================
  const TopoDS_Face& BOP_FaceInfo::Face()const
{
  return myFace;
}

//=======================================================================
// function: SetPassed
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetPassed(const Standard_Boolean aFlag)
{
  myPassed=aFlag;
}

//=======================================================================
// function: SetPOnEdge
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetPOnEdge(const gp_Pnt& aP)
{
  myPOnEdge=aP;
}

//=======================================================================
// function: SetAngle
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetAngle(const Standard_Real A)
{
  myAngle=A;
}
//=======================================================================
// function: Angle
// purpose: 
//=======================================================================
  Standard_Real BOP_FaceInfo::Angle()const
{
  return myAngle;
}

//=======================================================================
// function: POnEdge
// purpose: 
//=======================================================================
  const gp_Pnt& BOP_FaceInfo::POnEdge()const
{
  return myPOnEdge;
}
//=======================================================================
// function: SetPInFace
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetPInFace(const gp_Pnt& aP)
{
  myPInFace=aP;
}
//=======================================================================
// function: PInFace
// purpose: 
//=======================================================================
  const gp_Pnt& BOP_FaceInfo::PInFace()const
{
  return myPInFace;
}
//=======================================================================
// function: SetPInFace2D
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetPInFace2D(const gp_Pnt2d& aP)
{
  myPInFace2D=aP;
}
//=======================================================================
// function: PInFace2D
// purpose: 
//=======================================================================
  const gp_Pnt2d& BOP_FaceInfo::PInFace2D()const
{
  return myPInFace2D;
}

//=======================================================================
// function: SetNormal
// purpose: 
//=======================================================================
  void BOP_FaceInfo::SetNormal(const gp_Dir& aD)
{
  myNormal=aD;
}
//=======================================================================
// function: Normal
// purpose: 
//=======================================================================
  const gp_Dir& BOP_FaceInfo::Normal()const
{
  return myNormal;
}

//=======================================================================
// function: IsPassed
// purpose: 
//=======================================================================
  Standard_Boolean BOP_FaceInfo::IsPassed()const
{
  return myPassed;
}