summaryrefslogtreecommitdiff
path: root/src/IntTools/IntTools_PntOn2Faces.cxx
blob: 6822717b92605185b28675bd2cd34e5f8ce237a9 (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
// File:	IntTools_PntOn2Faces.cxx
// Created:	Thu Dec 13 14:26:44 2001
// Author:	Peter KURNEV
//		<pkv@irinox>

#include <IntTools_PntOn2Faces.ixx>

//=======================================================================
//function : IntTools_PntOn2Faces::IntTools_PntOn2Faces
//purpose  : 
//=======================================================================
  IntTools_PntOn2Faces::IntTools_PntOn2Faces()
:
  myIsValid(Standard_False)
{}
//=======================================================================
//function : IntTools_PntOn2Faces::IntTools_PntOn2Faces
//purpose  : 
//=======================================================================
  IntTools_PntOn2Faces::IntTools_PntOn2Faces(const IntTools_PntOnFace& aP1,
					     const IntTools_PntOnFace& aP2)
:
  myIsValid(Standard_False)
{
  myPnt1=aP1;
  myPnt2=aP2;
}
//=======================================================================
//function : SetP1
//purpose  : 
//=======================================================================
  void IntTools_PntOn2Faces::SetP1(const IntTools_PntOnFace& aP)
{
  myPnt1=aP;
}
//=======================================================================
//function : SetP2
//purpose  : 
//=======================================================================
  void IntTools_PntOn2Faces::SetP2(const IntTools_PntOnFace& aP)
{
  myPnt2=aP;
}
//=======================================================================
//function : P1
//purpose  : 
//=======================================================================
  const IntTools_PntOnFace& IntTools_PntOn2Faces::P1()const
{
  return myPnt1;
}
//=======================================================================
//function : P2
//purpose  : 
//=======================================================================
  const IntTools_PntOnFace& IntTools_PntOn2Faces::P2()const 
{
  return myPnt2;
}

//=======================================================================
//function : SetValid
//purpose  : 
//=======================================================================
  void IntTools_PntOn2Faces::SetValid(const Standard_Boolean bF)
{
  myIsValid=bF;
}
//=======================================================================
//function : IsValid
//purpose  : 
//=======================================================================
  Standard_Boolean IntTools_PntOn2Faces::IsValid()const
{
  return myIsValid;
}