summaryrefslogtreecommitdiff
path: root/src/HLRBRep/HLRBRep_BiPnt2D.cxx
blob: 9a96ee963c80d09dbc4dc9799c00a1473e7b01be (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
// File:	HLRBRep_BiPnt2D.cxx
// Created:	Tue Aug 25 10:43:05 1992
// Author:	Christophe MARION
//		<cma@sdsun2>

#include <HLRBRep_BiPnt2D.ixx>

//=======================================================================
//function : HLRBRep_BiPnt2D
//purpose  : 
//=======================================================================

HLRBRep_BiPnt2D::HLRBRep_BiPnt2D ()
{
}

//=======================================================================
//function : HLRBRep_BiPnt2D
//purpose  : 
//=======================================================================

HLRBRep_BiPnt2D::HLRBRep_BiPnt2D (const Standard_Real x1,
				  const Standard_Real y1,
				  const Standard_Real x2,
				  const Standard_Real y2,
				  const TopoDS_Shape& S,
				  const Standard_Boolean reg1,
				  const Standard_Boolean regn,
				  const Standard_Boolean outl,
				  const Standard_Boolean intl) :
				  myP1(x1,y1),
				  myP2(x2,y2),
				  myShape(S),
				  myFlags(0)
{
  Rg1Line(reg1);
  RgNLine(regn);
  OutLine(outl);
  IntLine(intl);
}